diff options
author | David Shaw <[email protected]> | 2002-06-06 00:17:27 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2002-06-06 00:17:27 +0000 |
commit | 5b27bb8361babc628f2820ca284651066f2fcdd4 (patch) | |
tree | d833d9cdc24b6c9597c2e40b71302a9009275391 | |
parent | 2002-06-05 Timo Schulz <[email protected]> (diff) | |
download | gnupg-5b27bb8361babc628f2820ca284651066f2fcdd4.tar.gz gnupg-5b27bb8361babc628f2820ca284651066f2fcdd4.zip |
* configure.ac: Add a switch for the experimental external HKP keyserver
interface.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.ac | 13 |
2 files changed, 18 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2002-06-05 David Shaw <[email protected]> + + * configure.ac: Add a switch for the experimental external HKP + keyserver interface. + 2002-05-22 Werner Koch <[email protected]> * configure.ac: Check for strcasecmp and strncasecmp. Removed diff --git a/configure.ac b/configure.ac index 7c17fa40a..371b5d609 100644 --- a/configure.ac +++ b/configure.ac @@ -133,6 +133,17 @@ if test "$use_exec" = yes ; then try_ldap=$enableval, try_ldap=yes) AC_MSG_RESULT($try_ldap) + AC_MSG_CHECKING([whether experimental external hkp keyserver support is requested]) + AC_ARG_ENABLE(external-hkp, + [ --enable-external-hkp enable experimental external HKP keyserver interface], + try_hkp=$enableval, try_hkp=no) + AC_MSG_RESULT($try_hkp) + + if test "$try_hkp" = yes ; then + GPGKEYS_HKP="gpgkeys_hkp" + AC_DEFINE(USE_EXTERNAL_HKP,1,[define to use the experimental external HKP keyserver interface]) + fi + AC_MSG_CHECKING([whether email keyserver support is requested]) AC_ARG_ENABLE(mailto, [ --disable-mailto disable email keyserver interface], @@ -329,6 +340,8 @@ if test "$try_mailto" = yes ; then fi AC_SUBST(GPGKEYS_MAILTO) +AC_SUBST(GPGKEYS_HKP) + case "${target}" in *-*-mingw32*) PRINTABLE_OS_NAME="MingW32" |