diff options
author | David Shaw <[email protected]> | 2006-03-01 17:05:38 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2006-03-01 17:05:38 +0000 |
commit | 2385935afa78c9e8de4753468847ca5d526e72d8 (patch) | |
tree | 66bc03c54047e8ae055d87090e483aec4a7f407d | |
parent | * options.skel: Document auto-key-locate and give a pointer to Simon (diff) | |
download | gnupg-2385935afa78c9e8de4753468847ca5d526e72d8.tar.gz gnupg-2385935afa78c9e8de4753468847ca5d526e72d8.zip |
* configure.ac: Fix accidental enabling of SHA-384/512. Noted by Nelson
H. F. Beebe.
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 |