mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-03 12:11:33 +01:00
Fixd a W32 problems with ldaps.
This commit is contained in:
parent
6e8bb4de07
commit
f717f9661a
@ -1,3 +1,7 @@
|
|||||||
|
2007-12-17 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
* configure.ac: Ass special treatment for HAVE_LDAP_START_TLS_SA.
|
||||||
|
|
||||||
2007-12-14 Werner Koch <wk@g10code.com>
|
2007-12-14 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
Released 1.4.8rc1.
|
Released 1.4.8rc1.
|
||||||
|
7
NEWS
7
NEWS
@ -1,6 +1,11 @@
|
|||||||
Noteworthy changes in version 1.4.8 (unreleased)
|
Noteworthy changes in version 1.4.8 (unreleased)
|
||||||
------------------------------------------------
|
------------------------------------------------
|
||||||
|
|
||||||
|
*******************************************
|
||||||
|
* A decade of GnuPG: g10-0.0.0.tar.gz was *
|
||||||
|
* released exactly 10 years ago. *
|
||||||
|
*******************************************
|
||||||
|
|
||||||
* Changed the license to GPLv3.
|
* Changed the license to GPLv3.
|
||||||
|
|
||||||
* Improved detection of keyrings specified multiple times.
|
* Improved detection of keyrings specified multiple times.
|
||||||
@ -1971,7 +1976,7 @@ Noteworthy changes in version 0.2.3
|
|||||||
|
|
||||||
|
|
||||||
Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
||||||
2005, 2006 Free Software Foundation, Inc.
|
2005, 2006, 2007 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is free software; as a special exception the author gives
|
This file is free software; as a special exception the author gives
|
||||||
unlimited permission to copy and/or distribute it, with or without
|
unlimited permission to copy and/or distribute it, with or without
|
||||||
|
15
configure.ac
15
configure.ac
@ -24,9 +24,9 @@ min_automake_version="1.9.3"
|
|||||||
|
|
||||||
# Remember to change the version number immediately *after* a release.
|
# Remember to change the version number immediately *after* a release.
|
||||||
# Set my_issvn to "yes" for non-released code. Remember to run an
|
# Set my_issvn to "yes" for non-released code. Remember to run an
|
||||||
# "svn up" and "autogen.sh" right before creating a distribution.
|
# "svn up" and "autogen.sh --force" right before creating a distribution.
|
||||||
m4_define([my_version], [1.4.8rc2])
|
m4_define([my_version], [1.4.8])
|
||||||
m4_define([my_issvn], [no])
|
m4_define([my_issvn], [yes])
|
||||||
|
|
||||||
m4_define([svn_revision], m4_esyscmd([echo -n $((svn info 2>/dev/null \
|
m4_define([svn_revision], m4_esyscmd([echo -n $((svn info 2>/dev/null \
|
||||||
|| echo 'Revision: 0')|sed -n '/^Revision:/ s/[^0-9]//gp'|head -1)]))
|
|| echo 'Revision: 0')|sed -n '/^Revision:/ s/[^0-9]//gp'|head -1)]))
|
||||||
@ -481,6 +481,15 @@ is intended for making fat binary builds on OS X. */
|
|||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Hack used for W32: ldap.m4 also tests for the ASCII version of
|
||||||
|
ldap_start_tls_s because that is the actual symbol used in the
|
||||||
|
library. winldap.h redefines it to our commonly used value,
|
||||||
|
thus we define our usual macro here. */
|
||||||
|
#ifdef HAVE_LDAP_START_TLS_SA
|
||||||
|
# ifndef HAVE_LDAP_START_TLS_S
|
||||||
|
# define HAVE_LDAP_START_TLS_S 1
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
/* This is the major version number of GnuPG so that
|
/* This is the major version number of GnuPG so that
|
||||||
source included files can test for this. */
|
source included files can test for this. */
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2007-12-17 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
* ldap.m4: Test for ldap_start_tls_sA.
|
||||||
|
|
||||||
2007-10-23 gettextize <bug-gnu-gettext@gnu.org>
|
2007-10-23 gettextize <bug-gnu-gettext@gnu.org>
|
||||||
|
|
||||||
* gettext.m4: Upgrade to gettext-0.16.1.
|
* gettext.m4: Upgrade to gettext-0.16.1.
|
||||||
|
@ -67,7 +67,10 @@ if test x$_ldap_with != xno ; then
|
|||||||
LDAPLIBS="$LDAP_LDFLAGS $MY_LDAPLIBS"
|
LDAPLIBS="$LDAP_LDFLAGS $MY_LDAPLIBS"
|
||||||
GPGKEYS_LDAP="gpgkeys_ldap$EXEEXT"
|
GPGKEYS_LDAP="gpgkeys_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
|
if test "$ac_cv_func_ldap_get_option" != yes ; then
|
||||||
AC_MSG_CHECKING([whether LDAP supports ld_errno])
|
AC_MSG_CHECKING([whether LDAP supports ld_errno])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user