diff options
author | stwo <stwo@noemail.net> | 2009-04-14 20:43:41 (GMT) |
---|---|---|
committer | stwo <stwo@noemail.net> | 2009-04-14 20:43:41 (GMT) |
commit | 60d95bb0fcc7ebc8dd0dcb99697bf6eda552e7ad (patch) | |
tree | c192543d58a444c036155438e17145a5b7e649f2 | |
parent | 79a6e69934cead3499e967a2bf270a565584adb7 (diff) | |
download | tcl-60d95bb0fcc7ebc8dd0dcb99697bf6eda552e7ad.zip tcl-60d95bb0fcc7ebc8dd0dcb99697bf6eda552e7ad.tar.gz tcl-60d95bb0fcc7ebc8dd0dcb99697bf6eda552e7ad.tar.bz2 |
Removed -Wno-implicit-int from CFLAGS_WARNING.
Regen unix/configure.
FossilOrigin-Name: bf3c8c55602d44bce2b012181e89cc9a60459746
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | unix/configure | 2 | ||||
-rw-r--r-- | unix/tcl.m4 | 2 |
3 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2009-04-14 Stuart Cassoff <stwo@users.sourceforge.net> + + * unix/tcl.m4: Removed -Wno-implicit-int from CFLAGS_WARNING. + 2008-04-14 Kevin B. Kenny <kennykb@acm.org> * library/tzdata/Asia/Karachi: Updated rules for Pakistan Summer diff --git a/unix/configure b/unix/configure index 4f1a3f4..230f188 100755 --- a/unix/configure +++ b/unix/configure @@ -6645,7 +6645,7 @@ fi CFLAGS_OPTIMIZE=-O if test "$GCC" = yes; then - CFLAGS_WARNING="-Wall -Wno-implicit-int" + CFLAGS_WARNING="-Wall" else CFLAGS_WARNING="" diff --git a/unix/tcl.m4 b/unix/tcl.m4 index c7f26ca..9d653b1 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1142,7 +1142,7 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ CFLAGS_DEBUG=-g CFLAGS_OPTIMIZE=-O AS_IF([test "$GCC" = yes], [ - CFLAGS_WARNING="-Wall -Wno-implicit-int" + CFLAGS_WARNING="-Wall" ], [CFLAGS_WARNING=""]) TCL_NEEDS_EXP_FILE=0 TCL_BUILD_EXP_FILE="" |