diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-11-09 12:58:07 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-11-09 13:11:00 +0000 |
commit | f0d860d35fbb5137d49dbeddd40712b158e255dd (patch) | |
tree | 653e2488b0596c577bc4f9e85e6d58fe015f9dbf /configure.ac | |
parent | 520dc643699e563d63ef23a29ed5beaffda23ff8 (diff) | |
download | curl-f0d860d35fbb5137d49dbeddd40712b158e255dd.tar.gz |
configure: Fixed NTLM missing from features when CURL_DISABLE_HTTP defined
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index bde0011c5..d37fd92fb 100644 --- a/configure.ac +++ b/configure.ac @@ -3373,17 +3373,19 @@ if test "x$CURL_DISABLE_CRYPTO_AUTH" != "x1" -a \ SUPPORT_FEATURES="$SUPPORT_FEATURES krb5" fi -if test "x$CURL_DISABLE_HTTP" != "x1" -a \ - "x$CURL_DISABLE_CRYPTO_AUTH" != "x1"; then +if test "x$CURL_DISABLE_CRYPTO_AUTH" != "x1"; then if test "x$USE_SSLEAY" = "x1" -o "x$USE_WINDOWS_SSPI" = "x1" \ -o "x$GNUTLS_ENABLED" = "x1" -o "x$NSS_ENABLED" = "x1" \ -o "x$DARWINSSL_ENABLED" = "x1"; then SUPPORT_FEATURES="$SUPPORT_FEATURES NTLM" - if test "x$NTLM_WB_ENABLED" = "x1"; then + + if test "x$CURL_DISABLE_HTTP" != "x1" -a \ + "x$NTLM_WB_ENABLED" = "x1"; then SUPPORT_FEATURES="$SUPPORT_FEATURES NTLM_WB" fi fi fi + if test "x$USE_TLS_SRP" = "x1"; then SUPPORT_FEATURES="$SUPPORT_FEATURES TLS-SRP" fi |