diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-08-11 20:57:54 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-08-11 20:57:54 +0000 |
commit | d0edb478964cb5bf7446c34d5ac1e9d34dc5ca63 (patch) | |
tree | 3586035627505068f2653da29b66d1201d3d5a8e /docs/examples | |
parent | b238e0b1b4e8f3e5c4e9c0d7d8c565e3776b0999 (diff) |
Patrick Monnerat modified the LDAP code and approach in curl. Starting now,
the configure script checks for openldap and friends and we link with those
libs just like we link all other third party libraries, and we no longer
dlopen() those libraries. Our private header file lib/ldap.h was renamed to
lib/curl_ldap.h due to this. I set a tag in CVS (curl-7_17_0-preldapfix)
just before this commit, just in case.
Diffstat (limited to 'docs/examples')
-rw-r--r-- | docs/examples/Makefile.example | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/examples/Makefile.example b/docs/examples/Makefile.example index 0852c0f3c..7afe04cf6 100644 --- a/docs/examples/Makefile.example +++ b/docs/examples/Makefile.example @@ -29,9 +29,8 @@ LDFLAGS = -L/home/dast/lib -L/usr/local/ssl/lib # We need -lcurl for the curl stuff # We need -lsocket and -lnsl when on Solaris # We need -lssl and -lcrypto when using libcurl with SSL support -# We need -ldl for dlopen() if that is in libdl # We need -lpthread for the pthread example -LIBS = -lcurl -lsocket -lnsl -lssl -lcrypto -dl +LIBS = -lcurl -lsocket -lnsl -lssl -lcrypto # Link the target with all objects and libraries $(TARGET) : $(OBJS) |