diff options
author | escoffon <escoffon> | 1998-07-24 13:31:41 (GMT) |
---|---|---|
committer | escoffon <escoffon> | 1998-07-24 13:31:41 (GMT) |
commit | 44f5b8f6cc437cc6c95f745cca7c575db76384af (patch) | |
tree | 0e8e06795f2b0736f7031eccfc9ec64838246f5e | |
parent | e7833c22029a12d6ce78fd0575a04765d0fa8e5b (diff) | |
download | tk-44f5b8f6cc437cc6c95f745cca7c575db76384af.zip tk-44f5b8f6cc437cc6c95f745cca7c575db76384af.tar.gz tk-44f5b8f6cc437cc6c95f745cca7c575db76384af.tar.bz2 |
the flag that caused all the X libs warnings was -Wimplicit-int, so turn that
off
-rw-r--r-- | unix/configure.in | 4 |
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 |