gnupg (ChangeLog NEWS configure.ac)

cvs user dshaw cvs at cvs.gnupg.org
Fri Feb 11 18:36:08 CET 2005


    Date: Friday, February 11, 2005 @ 18:46:15
  Author: dshaw
    Path: /cvs/gnupg/gnupg

Modified: ChangeLog NEWS configure.ac

* configure.ac: Add --enable-fake-curl option to help test no-curl HTTP.

* NEWS: Note Mister/Zuccherato CFB countermeasures.


--------------+
 ChangeLog    |    7 +++++++
 NEWS         |    9 ++++++---
 configure.ac |   18 +++++++++++++-----
 3 files changed, 26 insertions(+), 8 deletions(-)


Index: gnupg/ChangeLog
diff -u gnupg/ChangeLog:1.240 gnupg/ChangeLog:1.241
--- gnupg/ChangeLog:1.240	Fri Feb  4 11:18:46 2005
+++ gnupg/ChangeLog	Fri Feb 11 18:46:15 2005
@@ -1,3 +1,10 @@
+2005-02-11  David Shaw  <dshaw at jabberwocky.com>
+
+	* configure.ac: Add --enable-fake-curl option to help test no-curl
+	HTTP.
+
+	* NEWS: Note Mister/Zuccherato CFB countermeasures.
+
 2005-02-04  Werner Koch  <wk at g10code.com>
 
 	* configure.ac (GNUPG_CHECK_GNUMAKE):  Removed. Not needed for
Index: gnupg/NEWS
diff -u gnupg/NEWS:1.232 gnupg/NEWS:1.233
--- gnupg/NEWS:1.232	Thu Feb  3 22:42:10 2005
+++ gnupg/NEWS	Fri Feb 11 18:46:15 2005
@@ -5,7 +5,7 @@
       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>
+      <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 off by
@@ -23,9 +23,12 @@
       available, missing secret key stubs will be created on the fly.
       Details of the key are listed too.
 
-    * The implicit packet dumping in double verbose mode is now send
+    * The implicit packet dumping in double verbose mode is now sent
       to stderr and not to stdout.
 
+    * Added countermeasures against the Mister/Zuccherato CFB attack
+      <http://eprint.iacr.org/2005/033>.
+
     * [W32] The algorithm for the default home directory changed:
       First we look at the environment variable GNUPGHOME, if this one
       is not set, we check whether the registry entry
@@ -38,7 +41,7 @@
 
     * [W32] The locale selection under Windows changed. You need to
       enter the locale in the registry at HKCU\Software\GNU\GnuPG:Lang. 
-      For German you would use "de".  If it is not set, GnupG falls
+      For German you would use "de".  If it is not set, GnuPG falls
       back to HKLM.  The languages files "*.mo" are expected in a
       directory named "gnupg.nls" below the installation directory;
       that directory must be stored in the registry at the same key as
Index: gnupg/configure.ac
diff -u gnupg/configure.ac:1.131 gnupg/configure.ac:1.132
--- gnupg/configure.ac:1.131	Fri Feb  4 11:18:46 2005
+++ gnupg/configure.ac	Fri Feb 11 18:46:15 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.131 $)dnl
+dnlAC_REVISION($Revision: 1.132 $)dnl
 
 AC_PREREQ(2.59)
 min_automake_version="1.9.3"
@@ -645,11 +645,19 @@
 AC_SUBST(LDAPLIBS)
 AM_CONDITIONAL(GPGKEYS_LDAP, test "$GPGKEYS_LDAP" != "")
 
-# If we have neither FTP or HTTP defined, then don't bother to check
-# for curl.
+AC_ARG_ENABLE(fake-curl,
+   AC_HELP_STRING([--enable-fake-curl],[enable EXPERIMENTAL no-curl HTTP code]),fake_curl=$enableval,fake_curl=no)
 
-if test "$try_ftp" = yes || test "$try_http" = yes ; then
-   LIBCURL_CHECK_CONFIG([no],,[have_libcurl=yes])
+AM_CONDITIONAL(FAKE_CURL,test x"$fake_curl" = xyes)
+
+if test x"$fake_curl" = xyes ; then
+   libcurl_protocol_HTTP=yes
+else
+   # If we have neither FTP or HTTP defined, then don't bother to check
+   # for curl.
+   if test x"$try_ftp" = xyes || test x"$try_http" = xyes ; then
+      LIBCURL_CHECK_CONFIG([no])
+   fi
 fi
 
 # Are we doing HTTP?




More information about the Gnupg-commits mailing list