summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorescoffon <escoffon@noemail.net>1998-07-24 11:14:44 (GMT)
committerescoffon <escoffon@noemail.net>1998-07-24 11:14:44 (GMT)
commit2cc9c29b4da7006831e48091dd35a788db067de1 (patch)
tree0e4d48bf0d9bfc30af153af6044fede63af39d4c /unix
parent683fb14785eb5e493a70b9ae40f713745da65eca (diff)
downloadtk-2cc9c29b4da7006831e48091dd35a788db067de1.zip
tk-2cc9c29b4da7006831e48091dd35a788db067de1.tar.gz
tk-2cc9c29b4da7006831e48091dd35a788db067de1.tar.bz2
leave -Wconversion out, the X libs generate so many of these warnings
that they obscure everything else. FossilOrigin-Name: 636dea915508312398a7e506d1a63d65d0453c5c
Diffstat (limited to 'unix')
-rw-r--r--unix/configure.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/unix/configure.in b/unix/configure.in
index 5579147..62412f6 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -1,3 +1,4 @@
+#! /bin/bash -norc
dnl This file is an input file used by the GNU "autoconf" program to
dnl generate the file "configure", which is run during Tk installation
dnl to configure the system for the local environment.
@@ -32,7 +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
- CFLAGS_WARNING="-Wall -Wconversion"
+ # leave -Wconversion out, the X libs generate so many of these warnings
+ # that they obscure everything else.
+
+ CFLAGS_WARNING="-Wall"
else
CFLAGS_WARNING=""
fi