aboutsummaryrefslogtreecommitdiff
path: root/lib/curl_setup.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2015-01-22 23:04:10 +0100
committerDaniel Stenberg <daniel@haxx.se>2015-01-22 23:04:10 +0100
commite888e30476c9bbb0f6fd0a79737197156dc0a99c (patch)
tree314679ff070b321ad4f86569f8e893049dd83c10 /lib/curl_setup.h
parent3d5648f9ee08cdbd6297978c8e67d02b90ba0151 (diff)
BoringSSL: fix build for non-configure builds
HAVE_BORINGSSL gets defined now by configure and should be defined by other build systems in case a BoringSSL build is desired.
Diffstat (limited to 'lib/curl_setup.h')
-rw-r--r--lib/curl_setup.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/curl_setup.h b/lib/curl_setup.h
index 103938cc1..93ffad034 100644
--- a/lib/curl_setup.h
+++ b/lib/curl_setup.h
@@ -626,8 +626,8 @@ int netware_init(void);
defined(USE_GNUTLS) || defined(USE_NSS) || defined(USE_DARWINSSL) || \
defined(USE_OS400CRYPTO) || defined(USE_WIN32_CRYPTO)
-#if defined(USE_SSLEAY) && !defined(HAVE_DES_SET_ODD_PARITY)
-/* BoringSSL, not NTLM capable */
+#ifdef HAVE_BORINGSSL /* BoringSSL is not NTLM capable */
+#undef USE_NTLM
#else
#define USE_NTLM
#endif