diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-03-05 02:40:58 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-03-05 02:40:58 +0000 |
commit | 52713788b4dfafd7c07733f037e64bf2fec14ea1 (patch) | |
tree | ce508592312f80d17c759974d680e319c19ee60b /configure.in | |
parent | 92f62b36846e3c82f5521fa17f7a4f5afde827af (diff) | |
download | tor-52713788b4dfafd7c07733f037e64bf2fec14ea1.tar.gz tor-52713788b4dfafd7c07733f037e64bf2fec14ea1.zip |
r12080@catbus: nickm | 2007-03-04 21:40:55 -0500
Remove dnsworkers and related code. there goes another 550 lines of code.
svn:r9736
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/configure.in b/configure.in index 81ed1a9a47..473098680c 100644 --- a/configure.in +++ b/configure.in @@ -19,18 +19,6 @@ AC_ARG_ENABLE(debug, CFLAGS="$CFLAGS -g" fi]) -AC_ARG_ENABLE(eventdns, - AS_HELP_STRING(--enable-eventdns, enable asynchronous dns module), - [case "${enableval}" in - yes) eventdns=true ;; - no) eventdns=false ;; - *) AC_MSG_ERROR(bad value for --enable-eventdns) ;; - esac], [eventdns=true]) -AM_CONDITIONAL(EVENTDNS, test x$eventdns = xtrue) -if test x$eventdns = xtrue; then - AC_DEFINE([USE_EVENTDNS], 1, "Define to 1 if we'll be using eventdns.c") -fi - AC_ARG_ENABLE(transparent, AS_HELP_STRING(--disable-transparent, disable transparent proxy support), [case "${enableval}" in @@ -44,14 +32,6 @@ AC_ARG_ENABLE(threads, if test x$enable_threads = x; then case $host in - *-*-netbsd* | *-*-openbsd* ) - # Don't try multithreading on netbsd -- there is no threadsafe DNS - # lookup function there. - if test x$eventdns != xtrue; then - AC_MSG_NOTICE([You are running OpenBSD or NetBSD; I am assuming that -getaddrinfo is not threadsafe here, so I will disable threads.]) - enable_threads="no" - fi ;; *-*-solaris* ) # Don't try multithreading on solaris -- cpuworkers seem to lock. AC_MSG_NOTICE([You are running Solaris; Sometimes threading makes |