[or-cvs] r8214: Enable eventdns by default on platforms where we autoconf. T (tor/trunk)

nickm at seul.org nickm at seul.org
Tue Aug 22 06:10:53 UTC 2006


Author: nickm
Date: 2006-08-22 02:10:53 -0400 (Tue, 22 Aug 2006)
New Revision: 8214

Modified:
   tor/trunk/
   tor/trunk/configure.in
Log:
 r8556 at Kushana:  nickm | 2006-08-22 01:22:46 -0400
 Enable eventdns by default on platforms where we autoconf.  This should be everything but windows.



Property changes on: tor/trunk
___________________________________________________________________
Name: svk:merge
   - 17f730b7-d419-0410-b50f-85ee4b70197a:/local/or/tor/trunk:8290
1f724f9b-111a-0410-b636-93f1a77c1813:/local/or/tor/trunk:8207
96637b51-b116-0410-a10e-9941ebb49b64:/tor/branches/spec:7005
c95137ef-5f19-0410-b913-86e773d04f59:/tor/branches/eventdns:7405
c95137ef-5f19-0410-b913-86e773d04f59:/tor/branches/mmap:7030
c95137ef-5f19-0410-b913-86e773d04f59:/tor/branches/oo-connections:6950
c95137ef-5f19-0410-b913-86e773d04f59:/tor/branches/trans-ap:7315
c95137ef-5f19-0410-b913-86e773d04f59:/tor/trunk:7411
   + 17f730b7-d419-0410-b50f-85ee4b70197a:/local/or/tor/trunk:8290
1f724f9b-111a-0410-b636-93f1a77c1813:/local/or/tor/trunk:8207
96637b51-b116-0410-a10e-9941ebb49b64:/tor/branches/spec:7005
c95137ef-5f19-0410-b913-86e773d04f59:/tor/branches/eventdns:8556
c95137ef-5f19-0410-b913-86e773d04f59:/tor/branches/mmap:7030
c95137ef-5f19-0410-b913-86e773d04f59:/tor/branches/oo-connections:6950
c95137ef-5f19-0410-b913-86e773d04f59:/tor/branches/trans-ap:7315
c95137ef-5f19-0410-b913-86e773d04f59:/tor/trunk:7411

Modified: tor/trunk/configure.in
===================================================================
--- tor/trunk/configure.in	2006-08-21 23:49:47 UTC (rev 8213)
+++ tor/trunk/configure.in	2006-08-22 06:10:53 UTC (rev 8214)
@@ -46,11 +46,11 @@
 
 AC_ARG_ENABLE(eventdns,
      AC_HELP_STRING(--enable-eventdns, enable asynchronous dns module),
-     [case "${enableval}" in 
+     [case "${enableval}" in
         yes) eventdns=true ;;
         no)  eventdns=false ;;
         *) AC_MSG_ERROR(bad value for --enable-eventdns) ;;
-      esac], [eventdns=false])
+      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")



More information about the tor-commits mailing list