summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2001-09-22 01:40:47 +0000
committerBodo Möller <bodo@openssl.org>2001-09-22 01:40:47 +0000
commitef3dc028ef35c894c1c4146af660dfd433c2c20b (patch)
tree77cf8b5a1c3f455933f371718b7116d4c021efd0
parent2413a3975ff888206cc7f87377efb5ce1037c862 (diff)
The 'no-rijndael' option must define OPENSSL_NO_AES because that is
what we look for in crypto/evp.
-rwxr-xr-xConfigure6
1 files changed, 6 insertions, 0 deletions
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";