diff options
author | Roger Dingledine <arma@torproject.org> | 2004-11-10 02:50:02 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-11-10 02:50:02 +0000 |
commit | e5229a214ce2bf41577ed8bc3e9f613c8b952ecf (patch) | |
tree | a28c8359965f1b6bc1b818fed6c1a391ad6b9f0a /configure.in | |
parent | 4cdddcc13dcc0041f0e23b4d71be1686c907e26b (diff) | |
download | tor-e5229a214ce2bf41577ed8bc3e9f613c8b952ecf.tar tor-e5229a214ce2bf41577ed8bc3e9f613c8b952ecf.tar.gz |
ship the tarball with a minimal cflags, since gcc's vary so much
svn:r2770
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 3c337375a..6cc6bd3c2 100644 --- a/configure.in +++ b/configure.in @@ -232,9 +232,10 @@ 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 -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -g -O2" +CFLAGS="$CFLAGS -Wall -g -O2" # Add some more warnings which we use in the cvs version but not in the # released versions. +#CFLAGS="$CFLAGS -W -Wno-unused-parameter -Wfloat-equal -Wundef -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes" #CFLAGS="$CFLAGS -Wwrite-strings -Wredundant-decls" # Add these in when you feel like fun. |