summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstwo <stwo>2009-04-14 18:50:22 (GMT)
committerstwo <stwo>2009-04-14 18:50:22 (GMT)
commit4eb0b174fc36990292c361e64c470963fcb0d75b (patch)
tree4ccc1e1c74ff3969e4d82d7789748c4940f43555
parent56d606da4f2c662cd78633e61ac518bd99f52c57 (diff)
downloadtcl-4eb0b174fc36990292c361e64c470963fcb0d75b.zip
tcl-4eb0b174fc36990292c361e64c470963fcb0d75b.tar.gz
tcl-4eb0b174fc36990292c361e64c470963fcb0d75b.tar.bz2
Removed -Wno-implicit-int from CFLAGS_WARNING.
-rw-r--r--ChangeLog4
-rw-r--r--unix/tcl.m42
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4deb40b..23eb910 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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-08 Don Porter <dgp@users.sourceforge.net>
* library/tcltest/tcltest.tcl: Fixed unsafe [eval]s in the tcltest
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