1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-14 21:47:19 +02:00

* NEWS: Note --rfc2440-text import/export-unusable-sigs and

gpgkeys_curl.

* configure.ac: gpgkeys_mailto is disabled by default.  Define HTTPS
flag if we're using curl, and HTTPS is available.
This commit is contained in:
David Shaw 2005-01-19 03:56:25 +00:00
parent 115ebcfcf8
commit b2d67e8039
3 changed files with 31 additions and 3 deletions

View file

@ -332,9 +332,9 @@ dnl LDAP is defined only after we confirm the library is available later
AC_MSG_CHECKING([whether email keyserver support is requested])
AC_ARG_ENABLE(mailto,
AC_HELP_STRING([--disable-mailto],
[disable email keyserver interface only]),
try_mailto=$enableval, try_mailto=yes)
AC_HELP_STRING([--enable-mailto],
[enable email keyserver interface only]),
try_mailto=$enableval, try_mailto=no)
AC_MSG_RESULT($try_mailto)
fi
@ -656,6 +656,9 @@ if test x"$try_http" = xyes ; then
if test x$libcurl_protocol_HTTP = xyes ; then
AC_SUBST(GPGKEYS_CURL,"gpgkeys_curl$EXEEXT")
AC_DEFINE(HTTP_VIA_LIBCURL,1,[Define if HTTP is handled via libcurl])
if test x$libcurl_protocol_HTTPS = xyes ; then
AC_DEFINE(HTTPS_VIA_LIBCURL,1,[Define if HTTPS is handled via libcurl])
fi
else
AC_SUBST(GPGKEYS_HTTP,"gpgkeys_http$EXEEXT")
fi