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/Makefile.inc | |
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/Makefile.inc')
-rw-r--r-- | lib/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile.inc b/lib/Makefile.inc index 76247a2d2..63117803d 100644 --- a/lib/Makefile.inc +++ b/lib/Makefile.inc @@ -13,7 +13,7 @@ CSOURCES = file.c timeval.c base64.c hostip.c progress.c formdata.c \ strdup.c socks.c ssh.c nss.c qssl.c rawstr.c curl_addrinfo.c \ socks_gssapi.c socks_sspi.c curl_sspi.c slist.c nonblock.c \ curl_memrchr.c imap.c pop3.c smtp.c pingpong.c rtsp.c curl_threads.c \ - warnless.c hmac.c polarssl.c curl_rtmp.c + warnless.c hmac.c polarssl.c curl_rtmp.c openldap.c HHEADERS = arpa_telnet.h netrc.h file.h timeval.h qssl.h hostip.h \ progress.h formdata.h cookie.h http.h sendf.h ftp.h url.h dict.h \ |