diff options
author | Roger Dingledine <arma@torproject.org> | 2004-11-03 07:29:44 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-11-03 07:29:44 +0000 |
commit | 5253405dfc6e0f5fd7d042bee55a3a96256ce141 (patch) | |
tree | 0f7439b5f92197e82a5c8cc373699d4fd17df463 /configure.in | |
parent | e761cc97509ee712c1ace5bf878756f5d418eaaa (diff) | |
download | tor-5253405dfc6e0f5fd7d042bee55a3a96256ce141.tar.gz tor-5253405dfc6e0f5fd7d042bee55a3a96256ce141.zip |
my gcc has never heard of -Wendif-labels
feel free to add it back in if you can make it only used by gcc's
that know about it
svn:r2654
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 2b63da3d99..020e90e4d7 100644 --- a/configure.in +++ b/configure.in @@ -232,7 +232,7 @@ AC_SUBST(LOCALSTATEDIR) # Set CFLAGS _after_ all the above checks, since our warnings are stricter # than autoconf's macros like. -CFLAGS="$CFLAGS -Wall -W -Wno-unused-parameter -Wfloat-equal -Wundef -Wendif-labels -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wredundant-decls -g -O2" +CFLAGS="$CFLAGS -Wall -W -Wno-unused-parameter -Wfloat-equal -Wundef -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wredundant-decls -g -O2" # Add these in when you feel like fun. # -Wbad-function-cast -Werror -Wdeclaration-after-statement |