summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2006-02-02 18:44:04 +1100
committerDarren Tucker <dtucker@zip.com.au>2006-02-02 18:44:04 +1100
commita983b762cd5b717f30d011823cfb47540d5320c0 (patch)
tree7a82355f1aa7fe925679389c9dc20cbfe185b868
parent94adad6303bec6aa9042d85d0ac47c23fe4b3b01 (diff)
- (dtucker) [configure.ac] Bug #1148: Fix "crippled AES" test so that it
works with picky compilers. Patch from alex.kiernan at thus.net.
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac4
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index b55b7692..164b6595 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20060202
+ - (dtucker) [configure.ac] Bug #1148: Fix "crippled AES" test so that it
+ works with picky compilers. Patch from alex.kiernan at thus.net.
+
20060201
- (djm) [regress/test-exec.sh] Try 'logname' as well as 'whoami' to
determine the user's login name - needed for regress tests on Solaris
@@ -3818,4 +3822,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
-$Id: ChangeLog,v 1.4117.2.1 2006/02/01 11:33:14 djm Exp $
+$Id: ChangeLog,v 1.4117.2.2 2006/02/02 07:44:04 dtucker Exp $
diff --git a/configure.ac b/configure.ac
index 70e26dee..8e1ea976 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-# $Id: configure.ac,v 1.322 2006/01/29 13:22:39 dtucker Exp $
+# $Id: configure.ac,v 1.322.2.1 2006/02/02 07:44:05 dtucker Exp $
#
# Copyright (c) 1999-2004 Damien Miller
#
@@ -1832,7 +1832,7 @@ AC_COMPILE_IFELSE(
[AC_LANG_SOURCE([[
#include <string.h>
#include <openssl/evp.h>
-int main(void) { exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL)}
+int main(void) { exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL);}
]])],
[
AC_MSG_RESULT(no)