diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-11-12 09:18:14 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-11-12 09:18:14 +0000 |
commit | 94043b11508b9a4bf1fbee9ea17ef658c6413d9d (patch) | |
tree | 48d11ab65947de4a993afa6d4de38327cc3a6f34 /lib/http_digest.c | |
parent | 1b02ad5e8a35ccd682429e387ccb63022ca2339a (diff) | |
download | curl-94043b11508b9a4bf1fbee9ea17ef658c6413d9d.tar.gz |
Dan Fandrich added the --disable-crypto-auth option to configure to allow
libcurl to build without Digest support. (I figure it should also explicitly
disable Negotiate and NTLM.)
Diffstat (limited to 'lib/http_digest.c')
-rw-r--r-- | lib/http_digest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http_digest.c b/lib/http_digest.c index 20f5dc47b..5baccfe58 100644 --- a/lib/http_digest.c +++ b/lib/http_digest.c @@ -22,7 +22,7 @@ ***************************************************************************/ #include "setup.h" -#ifndef CURL_DISABLE_HTTP +#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_CRYPTO_AUTH) /* -- WIN32 approved -- */ #include <stdio.h> #include <string.h> |