summaryrefslogtreecommitdiff
path: root/configure.ac
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 /configure.ac
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.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 70e26deea..8e1ea9764 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.322 2006/01/29 13:22:39 dtucker Exp $ 1# $Id: configure.ac,v 1.322.2.1 2006/02/02 07:44:05 dtucker Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -1832,7 +1832,7 @@ AC_COMPILE_IFELSE(
1832 [AC_LANG_SOURCE([[ 1832 [AC_LANG_SOURCE([[
1833#include <string.h> 1833#include <string.h>
1834#include <openssl/evp.h> 1834#include <openssl/evp.h>
1835int main(void) { exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL)} 1835int main(void) { exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL);}
1836 ]])], 1836 ]])],
1837 [ 1837 [
1838 AC_MSG_RESULT(no) 1838 AC_MSG_RESULT(no)