Mercurial > noffle
comparison configure.in @ 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 | 1cafe0f3f0ec |
children | 1fdde6512033 |
comparison
equal
deleted
inserted
replaced
271:3477050e8d10 | 272:f3b44be9e4ab |
---|---|
131 enable_debug=no) | 131 enable_debug=no) |
132 | 132 |
133 if test "x$enable_debug" = "xyes"; then | 133 if test "x$enable_debug" = "xyes"; then |
134 if test "x$GCC" = "xyes"; then | 134 if test "x$GCC" = "xyes"; then |
135 CFLAGS="$CFLAGS \ | 135 CFLAGS="$CFLAGS \ |
136 -Wall -pedantic -ansi -W -Wtraditional -Wshadow -Wpointer-arith \ | 136 -Wall -pedantic -W -Wshadow -Wpointer-arith \ |
137 -Wcast-align -Wwrite-strings \ | 137 -Wcast-align -Wwrite-strings \ |
138 -Wstrict-prototypes -Wmissing-prototypes \ | 138 -Wstrict-prototypes -Wmissing-prototypes \ |
139 -Wmissing-declarations -Wnested-externs -Winline \ | 139 -Wmissing-declarations -Wnested-externs -Winline \ |
140 -D__USE_BSD -D__USE_XOPEN_EXTENDED -D__USE_POSIX -DDEBUG" | 140 -D__USE_BSD -D__USE_XOPEN_EXTENDED -D__USE_POSIX -DDEBUG" |
141 else | 141 else |