1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-04-17 15:44:34 +02:00

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

* NEWS: Note Mister/Zuccherato CFB countermeasures.
This commit is contained in:
David Shaw 2005-02-11 17:46:15 +00:00
parent a3ea962679
commit 8ba44ec180
3 changed files with 25 additions and 7 deletions

View File

@ -1,3 +1,10 @@
2005-02-11 David Shaw <dshaw@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@g10code.com> 2005-02-04 Werner Koch <wk@g10code.com>
* configure.ac (GNUPG_CHECK_GNUMAKE): Removed. Not needed for * configure.ac (GNUPG_CHECK_GNUMAKE): Removed. Not needed for

9
NEWS
View File

@ -5,7 +5,7 @@ Noteworthy changes in version 1.4.1
signatures. This is in response to some problems seen with signatures. This is in response to some problems seen with
certain PGP/MIME mail clients and GnuPG version 1.4.0. More certain PGP/MIME mail clients and GnuPG version 1.4.0. More
details about this are available at 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 * New "import-unusable-sigs" and "export-unusable-sigs" tags for
--import-options and --export-options. These are off by --import-options and --export-options. These are off by
@ -23,9 +23,12 @@ Noteworthy changes in version 1.4.1
available, missing secret key stubs will be created on the fly. available, missing secret key stubs will be created on the fly.
Details of the key are listed too. 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. 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: * [W32] The algorithm for the default home directory changed:
First we look at the environment variable GNUPGHOME, if this one First we look at the environment variable GNUPGHOME, if this one
is not set, we check whether the registry entry is not set, we check whether the registry entry
@ -38,7 +41,7 @@ Noteworthy changes in version 1.4.1
* [W32] The locale selection under Windows changed. You need to * [W32] The locale selection under Windows changed. You need to
enter the locale in the registry at HKCU\Software\GNU\GnuPG:Lang. 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 back to HKLM. The languages files "*.mo" are expected in a
directory named "gnupg.nls" below the installation directory; directory named "gnupg.nls" below the installation directory;
that directory must be stored in the registry at the same key as that directory must be stored in the registry at the same key as

View File

@ -645,11 +645,19 @@ AC_SUBST(GPGKEYS_LDAP)
AC_SUBST(LDAPLIBS) AC_SUBST(LDAPLIBS)
AM_CONDITIONAL(GPGKEYS_LDAP, test "$GPGKEYS_LDAP" != "") AM_CONDITIONAL(GPGKEYS_LDAP, test "$GPGKEYS_LDAP" != "")
AC_ARG_ENABLE(fake-curl,
AC_HELP_STRING([--enable-fake-curl],[enable EXPERIMENTAL no-curl HTTP code]),fake_curl=$enableval,fake_curl=no)
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 # If we have neither FTP or HTTP defined, then don't bother to check
# for curl. # for curl.
if test x"$try_ftp" = xyes || test x"$try_http" = xyes ; then
if test "$try_ftp" = yes || test "$try_http" = yes ; then LIBCURL_CHECK_CONFIG([no])
LIBCURL_CHECK_CONFIG([no],,[have_libcurl=yes]) fi
fi fi
# Are we doing HTTP? # Are we doing HTTP?