diff options
author | Werner Koch <[email protected]> | 2002-10-24 15:15:38 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2002-10-24 15:15:38 +0000 |
commit | 1a36831ed9f6a61bc167ab9ba1eaba4c9463730f (patch) | |
tree | d822928ae7aea5972964a1c037ada4cf18d4a5ad | |
parent | * gpg.sgml: Document --refresh-keys. (diff) | |
download | gnupg-1a36831ed9f6a61bc167ab9ba1eaba4c9463730f.tar.gz gnupg-1a36831ed9f6a61bc167ab9ba1eaba4c9463730f.zip |
* configure.ac (GPGKEYS_LDAP,GPGKEYS_HKP): Add $EXEEXT.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,7 @@ +2002-10-24 Werner Koch <[email protected]> + + * configure.ac (GPGKEYS_LDAP,GPGKEYS_HKP): Add $EXEEXT. + 2002-10-21 Werner Koch <[email protected]> * configure.ac (try_gettext): Remove special case for cygwin. diff --git a/configure.ac b/configure.ac index 398c813b1..174b98d92 100644 --- a/configure.ac +++ b/configure.ac @@ -213,7 +213,7 @@ if test "$use_exec" = yes ; then AC_MSG_RESULT($try_hkp) if test "$try_hkp" = yes ; then - GPGKEYS_HKP="gpgkeys_hkp" + GPGKEYS_HKP="gpgkeys_hkp$EXEEXT" AC_DEFINE(USE_EXTERNAL_HKP,1,[define to use the experimental external HKP keyserver interface]) fi @@ -397,7 +397,7 @@ if test "$try_ldap" = yes ; then if test "$gnupg_cv_func_ldap_init" = yes || \ test "$gnupg_cv_func_ldaplber_init" = yes ; then - GPGKEYS_LDAP="gpgkeys_ldap" + GPGKEYS_LDAP="gpgkeys_ldap$EXEEXT" LDAPLIBS=$MY_LDAPLIBS fi @@ -438,7 +438,7 @@ case "${target}" in PRINTABLE_OS_NAME="MingW32" ;; *-*-cygwin*) - PRINTABLE_OS_NAME="Cygwin32" + PRINTABLE_OS_NAME="Cygwin" ;; i?86-emx-os2 | i?86-*-os2*emx ) PRINTABLE_OS_NAME="OS/2" |