summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2022-11-05 13:42:06 +0100
committerDaniel Stenberg <daniel@haxx.se>2022-11-06 00:04:47 +0100
commit592107fa16781db47e61618e503bac2e2ea68c9e (patch)
tree69481824558eac5642ba97a6acfa86f1c77007db /m4
parent2d4533996c0ad47fa783c1202ea9997e7d45c920 (diff)
downloadcurl-592107fa16781db47e61618e503bac2e2ea68c9e.tar.gz
configure: require fork for NTLM-WB
Reported-by: ウさん Fixes #9847 Closes #9856
Diffstat (limited to 'm4')
-rw-r--r--m4/curl-confopts.m43
1 files changed, 3 insertions, 0 deletions
diff --git a/m4/curl-confopts.m4 b/m4/curl-confopts.m4
index 301e2d460..f5d2d2cce 100644
--- a/m4/curl-confopts.m4
+++ b/m4/curl-confopts.m4
@@ -618,6 +618,9 @@ AC_DEFUN([CURL_CHECK_NTLM_WB], [
test "x$SSL_ENABLED" = "x"; then
want_ntlm_wb_file=""
want_ntlm_wb="no"
+ elif test "x$ac_cv_func_fork" != "xyes"; then
+ dnl ntlm_wb requires fork
+ want_ntlm_wb="no"
fi
AC_MSG_RESULT([$want_ntlm_wb])
if test "$want_ntlm_wb" = "yes"; then