mirror of
https://github.com/curl/curl.git
synced 2026-08-25 01:33:31 +03:00
config: fix SSPI enabling NTLM if crypto auth is disabled
Avoid enabling NTLM feature based upon Windows SSPI being enabled in case that crypto auth is disabled. Reported-by: Marcel Raad Follow-up to #6277 Fixes #6803 Closes #6808
This commit is contained in:
parent
ce2d5fb7fa
commit
d6fba0ca06
2 changed files with 19 additions and 15 deletions
|
|
@ -1377,9 +1377,11 @@ _add_if("Kerberos" NOT CURL_DISABLE_CRYPTO_AUTH AND
|
|||
(HAVE_GSSAPI OR USE_WINDOWS_SSPI))
|
||||
# NTLM support requires crypto function adaptions from various SSL libs
|
||||
# TODO alternative SSL libs tests for SSP1, GNUTLS, NSS
|
||||
_add_if("NTLM" (use_curl_ntlm_core OR USE_WINDOWS_SSPI))
|
||||
_add_if("NTLM" NOT CURL_DISABLE_CRYPTO_AUTH AND
|
||||
(use_curl_ntlm_core OR USE_WINDOWS_SSPI))
|
||||
# TODO missing option (autoconf: --enable-ntlm-wb)
|
||||
_add_if("NTLM_WB" (use_curl_ntlm_core OR USE_WINDOWS_SSPI) AND
|
||||
_add_if("NTLM_WB" NOT CURL_DISABLE_CRYPTO_AUTH AND
|
||||
(use_curl_ntlm_core OR USE_WINDOWS_SSPI) AND
|
||||
NOT CURL_DISABLE_HTTP AND NTLM_WB_ENABLED)
|
||||
# TODO missing option (--enable-tls-srp), depends on GNUTLS_SRP/OPENSSL_SRP
|
||||
_add_if("TLS-SRP" USE_TLS_SRP)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue