diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2014-02-17 09:40:49 +0100 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2014-02-17 09:50:46 +0100 |
commit | 184c3e2d3767ed06c3d2f995a4b98e4ce2c7548f (patch) | |
tree | a8186736b0db77fda0e8af62bc60cbef80843298 /lib/curl_setup.h | |
parent | b04c158adfe535aca5ac19bae288dca80be6dbb4 (diff) | |
download | curl-184c3e2d3767ed06c3d2f995a4b98e4ce2c7548f.tar.gz |
configure: Fix the --disable-crypto-auth option
It now disables NTLM and GSS authentication methods, and produces
compilable code when SSL is enabled.
Diffstat (limited to 'lib/curl_setup.h')
-rw-r--r-- | lib/curl_setup.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/curl_setup.h b/lib/curl_setup.h index 62ea92199..4e18d670b 100644 --- a/lib/curl_setup.h +++ b/lib/curl_setup.h @@ -601,12 +601,14 @@ int netware_init(void); #define USE_SSL /* SSL support has been enabled */ #endif -#if defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI) +#if !defined(CURL_DISABLE_CRYPTO_AUTH) && \ + (defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI)) #define USE_HTTP_NEGOTIATE #endif /* Single point where USE_NTLM definition might be done */ -#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_NTLM) +#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_NTLM) && \ + !defined(CURL_DISABLE_CRYPTO_AUTH) #if defined(USE_SSLEAY) || defined(USE_WINDOWS_SSPI) || \ defined(USE_GNUTLS) || defined(USE_NSS) || defined(USE_DARWINSSL) #define USE_NTLM |