summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--unix/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/configure.in b/unix/configure.in
index 62412f6..95a4d38 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -33,10 +33,10 @@ AC_HAVE_HEADERS(unistd.h limits.h)
# set the warning flags depending on whether or not we are using gcc
if test "${GCC}" = "yes" ; then
- # leave -Wconversion out, the X libs generate so many of these warnings
+ # leave -Wimplicit-int out, the X libs generate so many of these warnings
# that they obscure everything else.
- CFLAGS_WARNING="-Wall"
+ CFLAGS_WARNING="-Wall -Wconversion -Wno-implicit-int"
else
CFLAGS_WARNING=""
fi