diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-08-10 15:07:40 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-08-10 15:07:43 +0200 |
commit | d86e9182e41050be508a5dfbaa3f7070b817a685 (patch) | |
tree | cdd0163fc2b517b1176a9ec7329088c88b69691b /configure.ac | |
parent | ac8af8452706aa0d5244adb34efcec072d389070 (diff) | |
download | curl-d86e9182e41050be508a5dfbaa3f7070b817a685.tar.gz |
configure: use the threaded resolver backend by default if possible
Closes #1647
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index edcb3931f..edebfc77b 100644 --- a/configure.ac +++ b/configure.ac @@ -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 ************************************************************ |