summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-08-10 15:07:40 +0200
committerng0 <ng0@infotropique.org>2017-08-22 15:29:52 +0000
commit981b4441846987f271bf69aba49d5828947cbafa (patch)
treee0239c94faa775be715eedd6ec1935cdadc9ce2e
parent33e4e1f75a01970518006905b55163f885c36ea0 (diff)
downloadgnurl-981b4441846987f271bf69aba49d5828947cbafa.tar.gz
gnurl-981b4441846987f271bf69aba49d5828947cbafa.tar.bz2
gnurl-981b4441846987f271bf69aba49d5828947cbafa.zip
configure: use the threaded resolver backend by default if possible
Closes #1647
-rw-r--r--configure.ac7
-rw-r--r--m4/curl-confopts.m410
2 files changed, 7 insertions, 10 deletions
diff --git a/configure.ac b/configure.ac
index e5449b642..cd3c3ad08 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3395,11 +3395,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 ************************************************************
diff --git a/m4/curl-confopts.m4 b/m4/curl-confopts.m4
index 42f2a965a..d77a884d5 100644
--- a/m4/curl-confopts.m4
+++ b/m4/curl-confopts.m4
@@ -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