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-engine-0_9_6c~39^2~154 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef3dc028ef35c894c1c4146af660dfd433c2c20b;p=openssl 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";