1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-19 00:52:46 +02:00

* configure.ac: Fix accidental enabling of SHA-384/512. Noted by Nelson

H. F. Beebe.
This commit is contained in:
David Shaw 2006-03-01 17:05:38 +00:00
parent 4b67ecabcf
commit 2385935afa
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-03-01 David Shaw <dshaw@jabberwocky.com>
* configure.ac: Fix accidental enabling of SHA-384/512. Noted by
Nelson H. F. Beebe.
2006-02-18 David Shaw <dshaw@jabberwocky.com>
* configure.ac: Try linking the UINT64_C test program (rather than

View File

@ -842,7 +842,7 @@ if test x"$use_sha512" = xyes \
use_sha512=no
fi
if test x"$use_sha512" ; then
if test x"$use_sha512" = xyes ; then
AC_DEFINE(USE_SHA512,1,[Define to include the SHA-384 and SHA-512 digests])
fi