]> granicus.if.org Git - curl/commitdiff
configure: use the threaded resolver backend by default if possible
authorDaniel Stenberg <daniel@haxx.se>
Thu, 10 Aug 2017 13:07:40 +0000 (15:07 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 10 Aug 2017 13:07:43 +0000 (15:07 +0200)
Closes #1647

configure.ac
m4/curl-confopts.m4

index edcb3931f5b574a8d7a50d8f3e97bbebbbac407b..edebfc77b2e88f8ea6b66234db5fe9812158df5f 100644 (file)
@@ -3402,11 +3402,8 @@ else
 fi
 AM_CONDITIONAL(BUILD_LIBHOSTNAME, test x$build_libhostname = xyes)
 
-CURL_CHECK_OPTION_THREADED_RESOLVER
-
-if test "x$want_thres" = xyes && test "x$want_ares" = xyes; then
-  AC_MSG_ERROR(
-[Options --enable-threaded-resolver and --enable-ares are mutually exclusive])
+if test "x$want_ares" != xyes; then
+  CURL_CHECK_OPTION_THREADED_RESOLVER
 fi
 
 dnl ************************************************************
index 42f2a965a974b4162722eacf3f067783ff38ac8b..d77a884d58bd494a2b6e2b22243c47e0ee30cce2 100644 (file)
@@ -5,7 +5,7 @@
 #                            | (__| |_| |  _ <| |___
 #                             \___|\___/|_| \_\_____|
 #
-# Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
+# Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
@@ -37,12 +37,12 @@ AC_HELP_STRING([--enable-threaded-resolver],[Enable threaded resolver])
 AC_HELP_STRING([--disable-threaded-resolver],[Disable threaded resolver]),
   OPT_THRES=$enableval)
   case "$OPT_THRES" in
-    yes)
-      dnl --enable-threaded-resolver option used
-      want_thres="yes"
-      ;;
     *)
       dnl configure option not specified
+      want_thres="yes"
+      ;;
+    no)
+      dnl --disable-threaded-resolver option used
       want_thres="no"
       ;;
   esac