mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-18 14:17:03 +01:00
* NEWS: Note SHA-224 and DSA2.
* configure.ac: Remove --enable-old-keyserver-helpers. Comment out --enable-m-guard for now.
This commit is contained in:
parent
bc81ce601f
commit
76d69cd56a
@ -1,3 +1,10 @@
|
|||||||
|
2006-04-27 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* NEWS: Note SHA-224 and DSA2.
|
||||||
|
|
||||||
|
* configure.ac: Remove --enable-old-keyserver-helpers. Comment
|
||||||
|
out --enable-m-guard for now.
|
||||||
|
|
||||||
2006-04-12 Werner Koch <wk@g10code.com>
|
2006-04-12 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
* configure.ac: Print version at end of run.
|
* configure.ac: Print version at end of run.
|
||||||
|
10
NEWS
10
NEWS
@ -1,6 +1,16 @@
|
|||||||
Noteworthy changes in version 1.4.4
|
Noteworthy changes in version 1.4.4
|
||||||
------------------------------------------------
|
------------------------------------------------
|
||||||
|
|
||||||
|
* Added support for the SHA-224 hash. Like the SHA-384 hash, it
|
||||||
|
is mainly useful when DSS (the US Digital Signature Standard)
|
||||||
|
compatibility is desired.
|
||||||
|
|
||||||
|
* Added support for the latest update to DSA keys and signatures.
|
||||||
|
This allows for larger keys than 1024 bits and hashes other than
|
||||||
|
SHA-1 and RIPEMD/160. Note that not all OpenPGP implementations
|
||||||
|
can handle these new keys and signatures yet. See
|
||||||
|
"--enable-dsa2" in the manual for more information.
|
||||||
|
|
||||||
|
|
||||||
Noteworthy changes in version 1.4.3 (2006-04-03)
|
Noteworthy changes in version 1.4.3 (2006-04-03)
|
||||||
------------------------------------------------
|
------------------------------------------------
|
||||||
|
47
configure.ac
47
configure.ac
@ -100,14 +100,14 @@ AC_ARG_ENABLE(asm,
|
|||||||
try_asm_modules=$enableval, try_asm_modules=yes)
|
try_asm_modules=$enableval, try_asm_modules=yes)
|
||||||
AC_MSG_RESULT($try_asm_modules)
|
AC_MSG_RESULT($try_asm_modules)
|
||||||
|
|
||||||
AC_MSG_CHECKING([whether memory guard is requested])
|
dnl AC_MSG_CHECKING([whether memory guard is requested])
|
||||||
AC_ARG_ENABLE(m-guard,
|
dnl AC_ARG_ENABLE(m-guard,
|
||||||
[ --enable-m-guard enable memory guard facility],
|
dnl [ --enable-m-guard enable memory guard facility],
|
||||||
use_m_guard=$enableval, use_m_guard=no)
|
dnl use_m_guard=$enableval, use_m_guard=no)
|
||||||
AC_MSG_RESULT($use_m_guard)
|
dnl AC_MSG_RESULT($use_m_guard)
|
||||||
if test "$use_m_guard" = yes ; then
|
dnl if test "$use_m_guard" = yes ; then
|
||||||
AC_DEFINE(M_GUARD,1,[Define to use the (obsolete) malloc guarding feature])
|
dnl AC_DEFINE(M_GUARD,1,[Define to use the (obsolete) malloc guarding feature])
|
||||||
fi
|
dnl fi
|
||||||
|
|
||||||
# We don't have a test to check whether as(1) knows about the
|
# We don't have a test to check whether as(1) knows about the
|
||||||
# non executable stack option. Thus we provide an option to enable
|
# non executable stack option. Thus we provide an option to enable
|
||||||
@ -262,11 +262,11 @@ fi
|
|||||||
|
|
||||||
AC_MSG_CHECKING([whether to enable the SHA-256 digest])
|
AC_MSG_CHECKING([whether to enable the SHA-256 digest])
|
||||||
AC_ARG_ENABLE(sha256,
|
AC_ARG_ENABLE(sha256,
|
||||||
AC_HELP_STRING([--disable-sha256],[disable the SHA-256 digest]),
|
AC_HELP_STRING([--disable-sha256],[disable the SHA-224 and SHA-256 digests]),
|
||||||
use_sha256=$enableval)
|
use_sha256=$enableval)
|
||||||
AC_MSG_RESULT($use_sha256)
|
AC_MSG_RESULT($use_sha256)
|
||||||
if test x"$use_sha256" = xyes ; then
|
if test x"$use_sha256" = xyes ; then
|
||||||
AC_DEFINE(USE_SHA256,1,[Define to include the SHA-256 digest])
|
AC_DEFINE(USE_SHA256,1,[Define to include the SHA-224 and SHA-256 digests])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl SHA512 is defined only after we confirm 64-bit support later
|
dnl SHA512 is defined only after we confirm 64-bit support later
|
||||||
@ -346,6 +346,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 generic object key fetching support is requested])
|
||||||
|
AC_ARG_ENABLE(generic,
|
||||||
|
AC_HELP_STRING([--disable-generic],
|
||||||
|
[disable generic object key fetching interface only]),
|
||||||
|
try_generic=$enableval, try_generic=yes)
|
||||||
|
AC_MSG_RESULT($try_generic)
|
||||||
|
|
||||||
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([--enable-mailto],
|
AC_HELP_STRING([--enable-mailto],
|
||||||
@ -671,23 +678,15 @@ if test "$try_ldap" = yes ; then
|
|||||||
GNUPG_CHECK_LDAP($NETLIBS)
|
GNUPG_CHECK_LDAP($NETLIBS)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Which keyserver helpers are we building?
|
# Check for curl. We fake the curl API if libcurl isn't installed.
|
||||||
|
|
||||||
AC_ARG_ENABLE(old-keyserver-helpers,
|
|
||||||
AC_HELP_STRING([--enable-old-keyserver-helpers],[enable old keyserver helpers]),old_ks=$enableval,old_ks=no)
|
|
||||||
|
|
||||||
if test "$old_ks" = yes ; then
|
|
||||||
AC_SUBST(GPGKEYS_HTTP,"gpgkeys_http$EXEEXT")
|
|
||||||
else
|
|
||||||
LIBCURL_CHECK_CONFIG([yes],,[with_curl=yes],[fake_curl=yes])
|
|
||||||
AC_SUBST(GPGKEYS_CURL,"gpgkeys_curl$EXEEXT")
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
LIBCURL_CHECK_CONFIG([yes],,,[fake_curl=yes])
|
||||||
AM_CONDITIONAL(FAKE_CURL,test x"$fake_curl" = xyes)
|
AM_CONDITIONAL(FAKE_CURL,test x"$fake_curl" = xyes)
|
||||||
AM_CONDITIONAL(WITH_CURL,test x"$with_curl" = xyes || test x"$fake_curl" = xyes)
|
|
||||||
|
|
||||||
if test x"$fake_curl" = xyes ; then
|
# Generic, for us, means curl
|
||||||
AC_DEFINE(FAKE_CURL,1,[define to fake the libcurl API internally])
|
|
||||||
|
if test x"$try_generic" = xyes ; then
|
||||||
|
AC_SUBST(GPGKEYS_CURL,"gpgkeys_curl$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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user