From ef3dc028ef35c894c1c4146af660dfd433c2c20b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Sat, 22 Sep 2001 01:40:47 +0000 Subject: [PATCH] The 'no-rijndael' option must define OPENSSL_NO_AES because that is what we look for in crypto/evp. --- Configure | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Configure b/Configure index 7cca064f3f..e4c23bd699 100755 --- a/Configure +++ b/Configure @@ -638,6 +638,12 @@ PROCESS_ARGS: $flags .= "-DOPENSSL_NO_$algo "; $depflags .= "-DOPENSSL_NO_$algo "; $openssl_algorithm_defines .= "#define OPENSSL_NO_$algo\n"; + if ($algo eq "RIJNDAEL") + { + $flags .= "-DOPENSSL_NO_AES "; + $depflags .= "-DOPENSSL_NO_AES "; + $openssl_algorithm_defines .= "#define OPENSSL_NO_AES\n"; + } if ($algo eq "DES") { push @skip, "mdc2"; -- 2.34.1