1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

Fixed a W32 ldaps problem.

This commit is contained in:
Werner Koch 2007-12-17 10:49:58 +00:00
parent a6549ca548
commit 5967e1a187
31 changed files with 106 additions and 84 deletions

View file

@ -1,3 +1,7 @@
2007-12-17 Werner Koch <wk@g10code.com>
* ldap.m4: Test for ldap_start_tls_sA.
2007-06-15 Marcus Brinkmann <marcus@g10code.de>
* Makefile.am (EXTRA_DIST): Remove inttypes-h.m4, longlong.m4 and

View file

@ -67,7 +67,10 @@ if test x$_ldap_with != xno ; then
LDAPLIBS="$LDAP_LDFLAGS $MY_LDAPLIBS"
GPGKEYS_LDAP="gpg2keys_ldap$EXEEXT"
AC_CHECK_FUNCS(ldap_get_option ldap_set_option ldap_start_tls_s)
AC_CHECK_FUNCS(ldap_get_option ldap_set_option)
# The extra test for ldap_start_tls_sA is for W32 because
# that is the actual function in the library.
AC_CHECK_FUNCS(ldap_start_tls_s ldap_start_tls_sA)
if test "$ac_cv_func_ldap_get_option" != yes ; then
AC_MSG_CHECKING([whether LDAP supports ld_errno])