diff options
author | Howard Chu <hyc@highlandsun.com> | 2010-05-25 00:44:42 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-05-25 00:44:42 +0200 |
commit | 2e056353b00d0944bdb2f8e948cc40a4dc0f3dfb (patch) | |
tree | 65c8ce54b7aa6887a518b1faa9027c66cd3daade /lib/curl_ldap.h | |
parent | 606b933a4fc59128c913aa943252f4a1a821aa5b (diff) | |
download | curl-2e056353b00d0944bdb2f8e948cc40a4dc0f3dfb.tar.gz |
LDAP: properly implemented as a curl_handler
makes the LDAP code much cleaner, nicer and in general being a
better libcurl citizen. If a new enough OpenLDAP version is
detect, the new and shiny lib/openldap.c code is then used
instead of the old cruft
Code by Howard, minor cleanups by Daniel.
Diffstat (limited to 'lib/curl_ldap.h')
-rw-r--r-- | lib/curl_ldap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/curl_ldap.h b/lib/curl_ldap.h index 1f28afee0..a2b167fa0 100644 --- a/lib/curl_ldap.h +++ b/lib/curl_ldap.h @@ -22,10 +22,10 @@ * KIND, either express or implied. * ***************************************************************************/ -#ifndef CURL_DISABLE_LDAP +#if !defined(CURL_DISABLE_LDAP) || defined(USE_OPENLDAP) extern const struct Curl_handler Curl_handler_ldap; -#ifdef HAVE_LDAP_SSL +#if defined(HAVE_LDAP_SSL) || defined(USE_OPENLDAP) extern const struct Curl_handler Curl_handler_ldaps; #endif |