From e744117d4da1f7cd938480fd9a1541e7377a5204 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Sun, 27 Aug 2006 07:26:00 +0000 Subject: turn eventdns off by default until we can get some more useful log messages into it. no use learning that it's broken without being able to learn what is broken too. svn:r8245 --- ChangeLog | 4 ++-- configure.in | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 97d982ca28..19f77261d6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,8 @@ Changes in version 0.1.2.1-alpha - 2006-08-27 o Major features: - Add "eventdns" async dns library from Adam Langley, tweaked to - build on OSX and Windows. It's enabled by default on all platforms - but Windows. + build on OSX and Windows. Only enabled if you pass the + --enable-eventdns argument to configure. - Allow servers with no hostname or IP address to learn their IP address by asking the directory authorities. This code only kicks in when you would normally have exited with a "no address" 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") -- cgit v1.2.3-54-g00ecf