diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-22 22:36:36 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-22 22:36:36 +0000 |
commit | bd7ba3bde62eaf3cbe98de44fde33b76d4f039d7 (patch) | |
tree | 8bd6f68dc392310f94ef972034bea08ece25ade8 /ares | |
parent | 0ffec4272ad7da91ca6b3e97d60c82ba517c4614 (diff) |
this code uses no long long, so we can have warnings about them
Diffstat (limited to 'ares')
-rw-r--r-- | ares/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ares/configure.ac b/ares/configure.ac index f4c235f80..5080cf262 100644 --- a/ares/configure.ac +++ b/ares/configure.ac @@ -37,7 +37,7 @@ AC_HELP_STRING([--disable-debug],[Disable debug options]), CFLAGS="$CFLAGS -g" if test "$GCC" = "yes"; then dnl these work for gcc 2.95 - CFLAGS="$CFLAGS -W -Wall -Wwrite-strings -pedantic -Wno-long-long -Wundef -Wpointer-arith -Wnested-externs -Wcast-align -Winline -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wshadow -Wsign-compare" + CFLAGS="$CFLAGS -W -Wall -Wwrite-strings -pedantic -Wundef -Wpointer-arith -Wnested-externs -Wcast-align -Winline -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wshadow -Wsign-compare" dnl 2.96 or higher: -Wfloat-equal -Wunreachable-code fi dnl strip off optimizer flags |