mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
As always, CVS leaves out the local directory?
This commit is contained in:
parent
95b8456f34
commit
06c5da8d61
@ -1,3 +1,8 @@
|
|||||||
|
2004-12-21 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* configure.ac: Add check for --enable-ftp. It is disabled by
|
||||||
|
default for now.
|
||||||
|
|
||||||
2004-12-18 David Shaw <dshaw@jabberwocky.com>
|
2004-12-18 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* configure.ac: Call the new GNUPG_CHECK_READLINE macro for
|
* configure.ac: Call the new GNUPG_CHECK_READLINE macro for
|
||||||
|
15
configure.ac
15
configure.ac
@ -323,6 +323,13 @@ dnl LDAP is defined only after we confirm the library is available later
|
|||||||
try_finger=$enableval, try_finger=yes)
|
try_finger=$enableval, try_finger=yes)
|
||||||
AC_MSG_RESULT($try_finger)
|
AC_MSG_RESULT($try_finger)
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([whether ftp key fetching support is requested])
|
||||||
|
AC_ARG_ENABLE(ftp,
|
||||||
|
AC_HELP_STRING([--enable-ftp],
|
||||||
|
[enable ftp key fetching interface only]),
|
||||||
|
try_ftp=$enableval, try_ftp=no)
|
||||||
|
AC_MSG_RESULT($try_ftp)
|
||||||
|
|
||||||
AC_MSG_CHECKING([whether email keyserver support is requested])
|
AC_MSG_CHECKING([whether email keyserver support is requested])
|
||||||
AC_ARG_ENABLE(mailto,
|
AC_ARG_ENABLE(mailto,
|
||||||
AC_HELP_STRING([--disable-mailto],
|
AC_HELP_STRING([--disable-mailto],
|
||||||
@ -641,6 +648,14 @@ AC_SUBST(GPGKEYS_LDAP)
|
|||||||
AC_SUBST(LDAPLIBS)
|
AC_SUBST(LDAPLIBS)
|
||||||
AM_CONDITIONAL(GPGKEYS_LDAP, test "$GPGKEYS_LDAP" != "")
|
AM_CONDITIONAL(GPGKEYS_LDAP, test "$GPGKEYS_LDAP" != "")
|
||||||
|
|
||||||
|
if test "$try_ftp" = yes ; then
|
||||||
|
GNUPG_CHECK_LIBCURL
|
||||||
|
|
||||||
|
if test x"$have_libcurl" = xyes ; then
|
||||||
|
AC_SUBST(GPGKEYS_FTP,"gpgkeys_ftp$EXEEXT")
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
dnl This isn't necessarily sendmail itself, but anything that gives a
|
dnl This isn't necessarily sendmail itself, but anything that gives a
|
||||||
dnl sendmail-ish interface to the outside world. That includes qmail,
|
dnl sendmail-ish interface to the outside world. That includes qmail,
|
||||||
dnl postfix, etc. Basically, anything that can handle "sendmail -t".
|
dnl postfix, etc. Basically, anything that can handle "sendmail -t".
|
||||||
|
Loading…
x
Reference in New Issue
Block a user