From 7aa95afadd39867dd95fd4f3df316f7e7decac7a Mon Sep 17 00:00:00 2001 From: Nick Zitzmann Date: Wed, 27 Jun 2012 11:57:31 +0200 Subject: DarwinSSL: allow using NTLM authentication Allow NTLM authentication when building using SecureTransport (Darwin) for SSL. This uses CommonCrypto, a cryptography library that ships with all versions of iOS and Mac OS X. It's like OpenSSL's libcrypto, except that it's missing a few less-common cyphers and doesn't have a big number data structure. --- lib/setup.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/setup.h') diff --git a/lib/setup.h b/lib/setup.h index a2d0b2845..42a0a813a 100644 --- a/lib/setup.h +++ b/lib/setup.h @@ -593,7 +593,7 @@ int netware_init(void); /* Single point where USE_NTLM definition might be done */ #if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_NTLM) #if defined(USE_SSLEAY) || defined(USE_WINDOWS_SSPI) || \ - defined(USE_GNUTLS) || defined(USE_NSS) + defined(USE_GNUTLS) || defined(USE_NSS) || defined(USE_DARWINSSL) #define USE_NTLM #endif #endif -- cgit v1.2.3