aboutsummaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorJakub Zakrzewski <slither.jz@gmail.com>2017-08-15 13:21:33 -0400
committerJay Satiro <raysatiro@yahoo.com>2017-08-15 13:24:03 -0400
commit3cb4bb6b5fb8a936cb69e2e9ea6a4e692122abb9 (patch)
tree131eaa1e8101f2fc61edde5a18061de066c810e2 /m4
parent43d036e72488b4be5f48aaec9278a55dc22cb556 (diff)
curl-confopts.m4: fix --disable-threaded-resolver
Closes https://github.com/curl/curl/issues/1784
Diffstat (limited to 'm4')
-rw-r--r--m4/curl-confopts.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/m4/curl-confopts.m4 b/m4/curl-confopts.m4
index d77a884d5..6dcd0f1a6 100644
--- a/m4/curl-confopts.m4
+++ b/m4/curl-confopts.m4
@@ -37,14 +37,14 @@ 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
- *)
- dnl configure option not specified
- want_thres="yes"
- ;;
no)
dnl --disable-threaded-resolver option used
want_thres="no"
;;
+ *)
+ dnl configure option not specified
+ want_thres="yes"
+ ;;
esac
AC_MSG_RESULT([$want_thres])
])