Browse Source

r8556@Kushana: nickm | 2006-08-22 01:22:46 -0400
Enable eventdns by default on platforms where we autoconf. This should be everything but windows.


svn:r8214

Nick Mathewson 18 years ago
parent
commit
3ba39a768a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      configure.in

+ 2 - 2
configure.in

@@ -46,11 +46,11 @@ fi
 
 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")