diff options
author | David Shaw <[email protected]> | 2002-09-18 20:37:05 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2002-09-18 20:37:05 +0000 |
commit | fb332938d23e31ab756e6bef3f373d7c841c7424 (patch) | |
tree | 9c2afd7faa5fa29b42e74e1c1e9eb9040745b171 /configure.ac | |
parent | * rndw32.c (SIZEOF_DISK_PERFORMANCE_STRUCT): Increased to 256. (diff) | |
download | gnupg-fb332938d23e31ab756e6bef3f373d7c841c7424.tar.gz gnupg-fb332938d23e31ab756e6bef3f373d7c841c7424.zip |
From stable branch
2002-09-14 David Shaw <[email protected]>
* configure.ac: Try linking LDAP without -lresolv first, just in
case the platform has libresolv, but doesn't actually need it to
use LDAP.
2002-09-12 David Shaw <[email protected]>
* NEWS: Note that the old IDEA plugin won't work with post-1.1.90
gpg.
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 506bae511..bdb785452 100644 --- a/configure.ac +++ b/configure.ac @@ -359,7 +359,7 @@ AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt, # is for Mozilla LDAP. if test "$try_ldap" = yes ; then - for LDAPLIBS in "-lldap -llber -lresolv" "-lldap -llber" "-lldapssl41"; do + for LDAPLIBS in "-lldap -llber" "-lldap -llber -lresolv" "-lldapssl41"; do _ldap_save_libs=$LIBS LIBS="$LDAPLIBS $NETLIBS $LIBS" |