summaryrefslogtreecommitdiffstats
path: root/unix/tcl.m4
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-03-22 09:05:10 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-03-22 09:05:10 (GMT)
commit740454d17abd5e8a134601126ac05d0988dbc13f (patch)
tree097c4f17dd9552e1885621bf55d74a3f61a8ace8 /unix/tcl.m4
parenta2827884a964758c13230c45ba18fa131cabbb8d (diff)
downloadtcl-740454d17abd5e8a134601126ac05d0988dbc13f.zip
tcl-740454d17abd5e8a134601126ac05d0988dbc13f.tar.gz
tcl-740454d17abd5e8a134601126ac05d0988dbc13f.tar.bz2
Fix signed-unsigned-compare warning (reported by François Vogel on Windows, but gcc can trigger it as well)
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r--unix/tcl.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index 57d8ff0..f5aa84e 100644
--- a/unix/tcl.m4
+++ b/unix/tcl.m4
@@ -1096,7 +1096,7 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [
CFLAGS_DEBUG=-g
AS_IF([test "$GCC" = yes], [
CFLAGS_OPTIMIZE=-O2
- CFLAGS_WARNING="-Wall"
+ CFLAGS_WARNING="-Wall -Wsign-compare -Wdeclaration-after-statement"
], [
CFLAGS_OPTIMIZE=-O
CFLAGS_WARNING=""