summaryrefslogtreecommitdiff
path: root/lib/curl_setup.h
diff options
context:
space:
mode:
authorBill Nagel <wnagel@tycoint.com>2016-07-07 08:40:45 -0700
committerSteve Holme <steve_holme@hotmail.com>2016-08-03 19:33:59 +0100
commit497e7c9d3460566712b3cd81b272cde7826f264c (patch)
tree9ccab8e336585dc020870fb8b79bd62f562032d1 /lib/curl_setup.h
parentdb3887632c735f90592daddf2b1e86664b4facb7 (diff)
downloadcurl-497e7c9d3460566712b3cd81b272cde7826f264c.tar.gz
mbedtls: Added support for NTLM
Diffstat (limited to 'lib/curl_setup.h')
-rw-r--r--lib/curl_setup.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/curl_setup.h b/lib/curl_setup.h
index 7dcc4c4cd..e585ea6a5 100644
--- a/lib/curl_setup.h
+++ b/lib/curl_setup.h
@@ -634,8 +634,9 @@ int netware_init(void);
/* Single point where USE_NTLM definition might be defined */
#if !defined(CURL_DISABLE_NTLM) && !defined(CURL_DISABLE_CRYPTO_AUTH)
#if defined(USE_OPENSSL) || defined(USE_WINDOWS_SSPI) || \
- defined(USE_GNUTLS) || defined(USE_NSS) || defined(USE_DARWINSSL) || \
- defined(USE_OS400CRYPTO) || defined(USE_WIN32_CRYPTO)
+ defined(USE_GNUTLS) || defined(USE_MBEDTLS) || defined(USE_NSS) || \
+ defined(USE_DARWINSSL) || defined(USE_OS400CRYPTO) || \
+ defined(USE_WIN32_CRYPTO)
#define USE_NTLM
#endif