diff options
author | stwo@users.sourceforge.net <stwo> | 2009-04-14 18:54:25 (GMT) |
---|---|---|
committer | stwo@users.sourceforge.net <stwo> | 2009-04-14 18:54:25 (GMT) |
commit | 8782b626d452258d3143cf51ed0ed59d2e5052cc (patch) | |
tree | 8491eb720cd91382997055a332cef1f0bf92d646 | |
parent | aef7a5c773714365be3aac7f19c70376f5831a9c (diff) | |
download | tk-8782b626d452258d3143cf51ed0ed59d2e5052cc.zip tk-8782b626d452258d3143cf51ed0ed59d2e5052cc.tar.gz tk-8782b626d452258d3143cf51ed0ed59d2e5052cc.tar.bz2 |
Removed -Wno-implicit-int from CFLAGS_WARNING.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | unix/tcl.m4 | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2009-04-14 Stuart Cassoff <stwo@users.sourceforge.net> + + * unix/tcl.m4: Removed -Wno-implicit-int from CFLAGS_WARNING. + 2009-04-09 Don Porter <dgp@users.sourceforge.net> * generic/tk.h: Restore _TCL guards around tcl.h inclusion to restore diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 2231cd7..f104704 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1042,7 +1042,7 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ CFLAGS_DEBUG=-g CFLAGS_OPTIMIZE=-O if test "$GCC" = "yes" ; then - CFLAGS_WARNING="-Wall -Wno-implicit-int -fno-strict-aliasing" + CFLAGS_WARNING="-Wall -fno-strict-aliasing" else CFLAGS_WARNING="" fi |