mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-14 21:47:19 +02:00
* configure.ac: New option --disable-finger.
* keyserver.c (keyserver_spawn): Print an empty string in log_info if the host is not set (e.g. finger). * gpgkeys_finger.c: New.
This commit is contained in:
parent
f3687f6b6c
commit
5bdb171026
10 changed files with 398 additions and 31 deletions
11
configure.ac
11
configure.ac
|
@ -303,6 +303,13 @@ if test "$use_exec" = yes ; then
|
|||
try_http=$enableval, try_http=yes)
|
||||
AC_MSG_RESULT($try_http)
|
||||
|
||||
AC_MSG_CHECKING([whether Finger key fetching support is requested])
|
||||
AC_ARG_ENABLE(http,
|
||||
AC_HELP_STRING([--disable-finger],
|
||||
[disable Finger key fetching interface]),
|
||||
try_finger=$enableval, try_finger=yes)
|
||||
AC_MSG_RESULT($try_finger)
|
||||
|
||||
AC_MSG_CHECKING([whether email keyserver support is requested])
|
||||
AC_ARG_ENABLE(mailto,
|
||||
[ --disable-mailto disable email keyserver interface],
|
||||
|
@ -492,6 +499,10 @@ if test x"$try_http" = xyes ; then
|
|||
AC_SUBST(GPGKEYS_HTTP,"gpgkeys_http$EXEEXT")
|
||||
fi
|
||||
|
||||
if test x"$try_finger" = xyes ; then
|
||||
AC_SUBST(GPGKEYS_FINGER,"gpgkeys_finger$EXEEXT")
|
||||
fi
|
||||
|
||||
dnl Must check for network library requirements before doing link tests
|
||||
dnl for ldap, for example. If ldap libs are static (or dynamic and without
|
||||
dnl ELF runtime link paths), then link will fail and LDAP support won't
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue