diff options
author | dgp <dgp@users.sourceforge.net> | 2004-03-26 20:35:49 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-03-26 20:35:49 (GMT) |
commit | 71d77002995b03c970b348fc731a45ca779988df (patch) | |
tree | fa244148df87ba5acf6440df72ec79b7cfbebac6 /unix/tcl.m4 | |
parent | c93c83ba08054d4b36395e72bbd125b69d872698 (diff) | |
download | tk-71d77002995b03c970b348fc731a45ca779988df.zip tk-71d77002995b03c970b348fc731a45ca779988df.tar.gz tk-71d77002995b03c970b348fc731a45ca779988df.tar.bz2 |
* unix/tcl.m4: Replaced -Wno-strict-alias with more portable
-fno-strict-alias alternative.
* unix/configure: autoconf-2.57
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index df90ce9..50c52b8 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -809,7 +809,7 @@ AC_DEFUN(SC_CONFIG_CFLAGS, [ CFLAGS_DEBUG=-g CFLAGS_OPTIMIZE=-O if test "$GCC" = "yes" ; then - CFLAGS_WARNING="-Wall -Wconversion -Wno-implicit-int -Wno-strict-aliasing" + CFLAGS_WARNING="-Wall -Wconversion -Wno-implicit-int -fno-strict-aliasing" else CFLAGS_WARNING="" fi |