diff options
author | David Shaw <[email protected]> | 2002-09-19 16:39:16 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2002-09-19 16:39:16 +0000 |
commit | 2761544fb4b3ef6a2865f3682657adc4ad83f326 (patch) | |
tree | a96972009512971a4106a22d960a36a59bcbc837 | |
parent | * certcheck.c (gpgsm_check_cert_sig): Add cert hash debugging. (diff) | |
download | gnupg-2761544fb4b3ef6a2865f3682657adc4ad83f326.tar.gz gnupg-2761544fb4b3ef6a2865f3682657adc4ad83f326.zip |
From stable branch
* configure.ac: Try linking LDAP as just -lldap as it seems very recent
OpenLDAPs (>=2.0.23) support that.
Diffstat (limited to '')
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2002-09-19 David Shaw <[email protected]> + + * configure.ac: Try linking LDAP as just -lldap as it seems very + recent OpenLDAPs (>=2.0.23) support that. + 2002-09-14 David Shaw <[email protected]> * configure.ac: Try linking LDAP without -lresolv first, just in diff --git a/configure.ac b/configure.ac index bdb785452..26e5250a8 100644 --- a/configure.ac +++ b/configure.ac @@ -355,11 +355,11 @@ AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt, [NETLIBS="-lsocket $NETLIBS"])) # Try and link a LDAP test program to weed out unusable LDAP -# libraries. -lldap -llber [-lresolv] is for OpenLDAP. -lldapssl41 +# libraries. -lldap [-llber [-lresolv]] is for OpenLDAP. -lldapssl41 # is for Mozilla LDAP. if test "$try_ldap" = yes ; then - for LDAPLIBS in "-lldap -llber" "-lldap -llber -lresolv" "-lldapssl41"; do + for LDAPLIBS in "-lldap" "-lldap -llber" "-lldap -llber -lresolv" "-lldapssl41"; do _ldap_save_libs=$LIBS LIBS="$LDAPLIBS $NETLIBS $LIBS" |