comparison ChangeLog @ 272:f3b44be9e4ab noffle

[svn] * configure.in: Remove '-ansi' and '-Wtraditional'. We use functions that aren't strict ANSI, and I'm not interested in warnings about usage differences between ANSI and K&R. * Makefile.in,aclocal.m4,config.h.in,configure,src/Makefile.in: Regenerate after configure.in change. With all the above in, we now compile cleanly on Cygwin with GCC 3.2, except for a warning about printing a time_t with a %ld format. This will serve as a reminder that we assume time_t is the same size as a long.
author bears
date Sun, 10 Nov 2002 11:44:18 +0000
parents b3a2f710fe2c
children 18d6c61ed4e7
comparison
equal deleted inserted replaced
271:3477050e8d10 272:f3b44be9e4ab
1 Sun Nov 10 2002 Jim Hague <jim.hague@acm.org>
2
3 * src/client.c,src/fetch.c,src/lock.c.src/protocol.c,src/util.h,src/util.c:
4 Define our own SignalHandler type rather than use the rather
5 Linux-specific (and potentially glibc version specific) sig_t.
6 * src/client.c,src/database.h,src/database.c,src/over.h,src/over.c,
7 src/pseudo.c,src/server.c: Ensure format string specifiers and passed
8 data types match. As part of this, change some uses of size_t as a
9 general data type to an appropriate base C type. Database status changes
10 from int to unsigned.
11 * src/noffle.c: Rearrange initialisation so that a requested usage
12 message will be output before Noffle can fail due to misconfiguration.
13 Introduce routine (currently stub) for checking file ownership and
14 permissions on startup - I suspect a lot of reported errors are due
15 to ownership problems.
16 * configure.in: Remove '-ansi' and '-Wtraditional'. We use functions
17 that aren't strict ANSI, and I'm not interested in warnings about
18 usage differences between ANSI and K&R.
19 * Makefile.in,aclocal.m4,config.h.in,configure,src/Makefile.in:
20 Regenerate after configure.in change. With all the above in, we now
21 compile cleanly on Cygwin with GCC 3.2, except for a warning about
22 printing a time_t with a %ld format. This will serve as a reminder that
23 we assume time_t is the same size as a long.
24
1 Tue Oct 25 2002 Jim Hague <jim.hague@acm.org> 25 Tue Oct 25 2002 Jim Hague <jim.hague@acm.org>
2 26
3 * src/server.c: Fix post 1.0 bug where the article cursor was lost if the 27 * src/server.c: Fix post 1.0 bug where the article cursor was lost if the
4 server yielded the lock to another server. 28 server yielded the lock to another server.
5 29