aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-08-27 07:26:00 +0000
committerRoger Dingledine <arma@torproject.org>2006-08-27 07:26:00 +0000
commite744117d4da1f7cd938480fd9a1541e7377a5204 (patch)
treef3c912d95cd480584b6eb33157e34c08f3cae19e /configure.in
parent389b7999c6a196626641f0cb3e30c6d93b635b75 (diff)
downloadtor-e744117d4da1f7cd938480fd9a1541e7377a5204.tar.gz
tor-e744117d4da1f7cd938480fd9a1541e7377a5204.zip
turn eventdns off by default until we can get some more usefultor-0.1.2.1-alpha
log messages into it. no use learning that it's broken without being able to learn what is broken too. svn:r8245
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 1023064731..523af0aae6 100644
--- a/configure.in
+++ b/configure.in
@@ -50,7 +50,7 @@ AC_ARG_ENABLE(eventdns,
yes) eventdns=true ;;
no) eventdns=false ;;
*) AC_MSG_ERROR(bad value for --enable-eventdns) ;;
- esac], [eventdns=true])
+ esac], [eventdns=false])
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")