diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 7404ae375..12bc382cc 100644 --- a/configure.ac +++ b/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 |