From: Gunter Knauf Date: Mon, 20 Aug 2007 16:34:04 +0000 (+0000) Subject: compile with ldaps by default since it seems to work fine so far. X-Git-Tag: curl-7_17_0~67 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d4c4fd62723da486dd12151d7d92895eada35e3f;p=thirdparty%2Fcurl.git compile with ldaps by default since it seems to work fine so far. --- diff --git a/lib/Makefile.netware b/lib/Makefile.netware index c30a1e0f55..8ebaa148ce 100644 --- a/lib/Makefile.netware +++ b/lib/Makefile.netware @@ -457,6 +457,9 @@ ifdef DISABLE_LDAP @echo $(DL)#define CURL_DISABLE_LDAP 1$(DL) >> $@ else @echo $(DL)#define CURL_HAS_NOVELL_LDAPSDK 1$(DL) >> $@ +ifndef DISABLE_LDAPS + @echo $(DL)#define HAVE_LDAP_SSL 1$(DL) >> $@ +endif @echo $(DL)#define HAVE_LDAP_SSL_H 1$(DL) >> $@ @echo $(DL)#define HAVE_LDAP_URL_PARSE 1$(DL) >> $@ endif diff --git a/src/Makefile.netware b/src/Makefile.netware index 9515c23c9e..66a190baf6 100644 --- a/src/Makefile.netware +++ b/src/Makefile.netware @@ -434,6 +434,9 @@ ifdef DISABLE_LDAP @echo $(DL)#define CURL_DISABLE_LDAP 1$(DL) >> $@ else @echo $(DL)#define CURL_HAS_NOVELL_LDAPSDK 1$(DL) >> $@ +ifndef DISABLE_LDAPS + @echo $(DL)#define HAVE_LDAP_SSL 1$(DL) >> $@ +endif @echo $(DL)#define HAVE_LDAP_SSL_H 1$(DL) >> $@ @echo $(DL)#define HAVE_LDAP_URL_PARSE 1$(DL) >> $@ endif