[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[or-cvs] r8245: turn eventdns off by default until we can get some more usef (tor/trunk)



Author: arma
Date: 2006-08-27 03:26:00 -0400 (Sun, 27 Aug 2006)
New Revision: 8245

Modified:
   tor/trunk/ChangeLog
   tor/trunk/configure.in
Log:
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.


Modified: tor/trunk/ChangeLog
===================================================================
--- tor/trunk/ChangeLog	2006-08-27 07:03:17 UTC (rev 8244)
+++ tor/trunk/ChangeLog	2006-08-27 07:26:00 UTC (rev 8245)
@@ -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"

Modified: tor/trunk/configure.in
===================================================================
--- tor/trunk/configure.in	2006-08-27 07:03:17 UTC (rev 8244)
+++ tor/trunk/configure.in	2006-08-27 07:26:00 UTC (rev 8245)
@@ -50,7 +50,7 @@
         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")