diff options
Diffstat (limited to '')
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2006-03-01 David Shaw <[email protected]> + + * configure.ac: Fix accidental enabling of SHA-384/512. Noted by + Nelson H. F. Beebe. + 2006-02-18 David Shaw <[email protected]> * configure.ac: Try linking the UINT64_C test program (rather than diff --git a/configure.ac b/configure.ac index d1e4aee48..2182c497d 100644 --- a/configure.ac +++ b/configure.ac @@ -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 |