diff options
author | Roger Dingledine <arma@torproject.org> | 2002-09-22 11:09:07 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2002-09-22 11:09:07 +0000 |
commit | 155c9b80cadc18715697dc24164dbdfc47b3cf77 (patch) | |
tree | cc2364cc0664ab237168781e97018720b89a0859 /configure.in | |
parent | 8d1aa27c462848b5111b874a51469761ca659f0d (diff) | |
download | tor-155c9b80cadc18715697dc24164dbdfc47b3cf77.tar.gz tor-155c9b80cadc18715697dc24164dbdfc47b3cf77.zip |
onion proxy now speaks socks4a
httpap is obsolete; we support privoxy directly now!
smtpap is obsolete; need to find a good socks4a-enabled smtp proxy/client
I dub thee 0.0.1.
svn:r107
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 2a5b375a7c..a414015768 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ AC_INIT -AM_INIT_AUTOMAKE(tor, 0.0.0) +AM_INIT_AUTOMAKE(tor, 0.0.1) AM_CONFIG_HEADER(orconfig.h) CFLAGS="-Wall -O2" @@ -143,5 +143,5 @@ dnl The warning message here is no longer strictly accurate. AC_CHECK_HEADERS(unistd.h string.h signal.h netdb.h ctype.h poll.h sys/poll.h sys/types.h sys/fcntl.h sys/ioctl.h sys/socket.h sys/time.h netinet/in.h arpa/inet.h errno.h assert.h stdint.h, , AC_MSG_WARN(some headers were not found, compilation may fail)) -AC_OUTPUT(Makefile src/Makefile src/common/Makefile src/smtpap/Makefile src/orkeygen/Makefile src/httpap/Makefile src/or/Makefile) +AC_OUTPUT(Makefile src/Makefile src/common/Makefile src/orkeygen/Makefile src/or/Makefile) |