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 /m4 | |
parent | ac8af8452706aa0d5244adb34efcec072d389070 (diff) | |
download | curl-d86e9182e41050be508a5dfbaa3f7070b817a685.tar.gz |
configure: use the threaded resolver backend by default if possible
Closes #1647
Diffstat (limited to 'm4')
-rw-r--r-- | m4/curl-confopts.m4 | 10 |
1 files changed, 5 insertions, 5 deletions
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 |