diff options
author | nijtmans <nijtmans> | 2010-09-21 20:22:51 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-09-21 20:22:51 (GMT) |
commit | 88fbbfe8f3b7b4523c1af2c879ddc4b0be6c6c3b (patch) | |
tree | 2fbbbc375c74f250bdda260566ecf6cdfc636408 /win/configure | |
parent | d24e3a2febe9142596afe7c394f7bbc27b193eb6 (diff) | |
download | tcl-88fbbfe8f3b7b4523c1af2c879ddc4b0be6c6c3b.zip tcl-88fbbfe8f3b7b4523c1af2c879ddc4b0be6c6c3b.tar.gz tcl-88fbbfe8f3b7b4523c1af2c879ddc4b0be6c6c3b.tar.bz2 |
Fix declaration after statement.
Add -Wdeclaration-after-statement, so
this mistake cannot happen again.
Diffstat (limited to 'win/configure')
-rwxr-xr-x | win/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/configure b/win/configure index 6715c57..fefa99b 100755 --- a/win/configure +++ b/win/configure @@ -3985,7 +3985,7 @@ echo "$as_me: error: ${CC} does not support the -shared option. CFLAGS_DEBUG=-g CFLAGS_OPTIMIZE="-O2 -fomit-frame-pointer" - CFLAGS_WARNING="-Wall" + CFLAGS_WARNING="-Wall -Wdeclaration-after-statement" LDFLAGS_DEBUG= LDFLAGS_OPTIMIZE= |