From: Bodo Möller Date: Sat, 22 Sep 2001 01:40:47 +0000 (+0000) Subject: The 'no-rijndael' option must define OPENSSL_NO_AES because that is X-Git-Tag: OpenSSL_0_9_6c~26^2~209 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ef3dc028ef35c894c1c4146af660dfd433c2c20b;p=oweals%2Fopenssl.git The 'no-rijndael' option must define OPENSSL_NO_AES because that is what we look for in crypto/evp. --- 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";