aboutsummaryrefslogtreecommitdiff
path: root/lib/curl_ldap.h
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2011-03-07 17:45:33 -0800
committerDan Fandrich <dan@coneharvesters.com>2011-03-07 17:45:33 -0800
commit29f0898525bf48292606f098bee33ce8f1f58781 (patch)
treea50787b8720e53d8e745805535c31a5f277d1644 /lib/curl_ldap.h
parent0e74e1d8d83d50ba1d411903ae2dbba13a71bdeb (diff)
Fixed libcurl to honour the --disable-ldaps configure option
Diffstat (limited to 'lib/curl_ldap.h')
-rw-r--r--lib/curl_ldap.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/curl_ldap.h b/lib/curl_ldap.h
index 3cce4bf7b..4cd13cfd2 100644
--- a/lib/curl_ldap.h
+++ b/lib/curl_ldap.h
@@ -25,8 +25,9 @@
#ifndef CURL_DISABLE_LDAP
extern const struct Curl_handler Curl_handler_ldap;
-#if (defined(USE_OPENLDAP) && defined(USE_SSL)) || \
- (!defined(USE_OPENLDAP) && defined(HAVE_LDAP_SSL))
+#if !defined(CURL_DISABLE_LDAPS) && \
+ ((defined(USE_OPENLDAP) && defined(USE_SSL)) || \
+ (!defined(USE_OPENLDAP) && defined(HAVE_LDAP_SSL)))
extern const struct Curl_handler Curl_handler_ldaps;
#endif