gnupg (ChangeLog NEWS configure.ac)

cvs user dshaw cvs at cvs.gnupg.org
Wed Jan 19 04:48:38 CET 2005


    Date: Wednesday, January 19, 2005 @ 04:56:25
  Author: dshaw
    Path: /cvs/gnupg/gnupg

Modified: ChangeLog NEWS configure.ac

* 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.


--------------+
 ChangeLog    |    8 ++++++++
 NEWS         |   17 +++++++++++++++++
 configure.ac |   11 +++++++----
 3 files changed, 32 insertions(+), 4 deletions(-)


Index: gnupg/ChangeLog
diff -u gnupg/ChangeLog:1.234 gnupg/ChangeLog:1.235
--- gnupg/ChangeLog:1.234	Mon Jan 17 11:19:57 2005
+++ gnupg/ChangeLog	Wed Jan 19 04:56:25 2005
@@ -1,3 +1,11 @@
+2005-01-18  David Shaw  <dshaw at grover.jabberwocky.com>
+
+	* 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.
+
 2005-01-17  Werner Koch  <wk at g10code.com>
 
 	* configure.ac: Make --without-included-zlib work as
Index: gnupg/NEWS
diff -u gnupg/NEWS:1.226 gnupg/NEWS:1.227
--- gnupg/NEWS:1.226	Thu Dec 16 11:53:25 2004
+++ gnupg/NEWS	Wed Jan 19 04:56:25 2005
@@ -1,6 +1,23 @@
 Noteworthy changes in version 1.4.1
 -------------------------------------------------
 
+    * New --rfc2440-text option which controls how text is handled in
+      signatures.  This is in response to some problems seen with
+      certain PGP/MIME mail clients and GnuPG version 1.4.0.  More
+      details about this are available at
+      <http://lists.gnupg.org/pipermail/gnupg-users/2005-January/024408.html>
+
+    * New "import-unusable-sigs" and "export-unusable-sigs" tags for
+      --import-options and --export-options.  These are on by
+      default, and cause GnuPG to not import or export key signatures
+      that are not usable (e.g. expired signatures).
+
+    * New experimental HTTP, HTTPS, and FTP keyserver helper that uses
+      the cURL library (http://curl.haxx.se) to retrieve keys.  This
+      is disabled by default, but may be enabled with the configure
+      option --with-libcurl.  Without this option, the existing HTTP
+      code is used for HTTP, and HTTPS and FTP are not supported.
+
 
 Noteworthy changes in version 1.4.0 (2004-12-16)
 -------------------------------------------------
Index: gnupg/configure.ac
diff -u gnupg/configure.ac:1.126 gnupg/configure.ac:1.127
--- gnupg/configure.ac:1.126	Mon Jan 17 11:19:57 2005
+++ gnupg/configure.ac	Wed Jan 19 04:56:25 2005
@@ -19,7 +19,7 @@
 dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 dnl
 dnl (Process this file with autoconf to produce a configure script.)
-dnlAC_REVISION($Revision: 1.126 $)dnl
+dnlAC_REVISION($Revision: 1.127 $)dnl
 
 AC_PREREQ(2.59)
 min_automake_version="1.9.3"
@@ -332,9 +332,9 @@
 
     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$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




More information about the Gnupg-commits mailing list