diff options
author | Roger Dingledine <arma@torproject.org> | 2004-11-10 00:13:02 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-11-10 00:13:02 +0000 |
commit | cb30d054a82e1cc6c2f60c079cce85eb8f8362d7 (patch) | |
tree | 626c258bab31a051459f0ed44b5f66ec5840660e | |
parent | 7528e8b86a2ea0b28b0ac86a396cfc135e427bfd (diff) | |
download | tor-cb30d054a82e1cc6c2f60c079cce85eb8f8362d7.tar tor-cb30d054a82e1cc6c2f60c079cce85eb8f8362d7.tar.gz |
separate out the cflags that cause spurious warnings, so
we don't ship those in the tarball
also, bump us to 0.0.9pre5
svn:r2760
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 646de789b..d94b3efd8 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ AC_INIT -AM_INIT_AUTOMAKE(tor, 0.0.9pre5-cvs) +AM_INIT_AUTOMAKE(tor, 0.0.9pre5) AM_CONFIG_HEADER(orconfig.h) AC_CANONICAL_HOST @@ -235,7 +235,7 @@ AC_SUBST(LOCALSTATEDIR) CFLAGS="$CFLAGS -Wall -W -Wno-unused-parameter -Wfloat-equal -Wundef -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -g -O2" # Add some more warnings which we use in the cvs version but not in the # released versions. -CFLAGS="$CFLAGS -Wwrite-strings -Wredundant-decls" +#CFLAGS="$CFLAGS -Wwrite-strings -Wredundant-decls" # Add these in when you feel like fun. # -Wbad-function-cast -Werror -Wdeclaration-after-statement |