From: Richard Levitte Date: Thu, 14 Nov 2002 08:20:40 +0000 (+0000) Subject: When AES is skipped because the option 'no-rijndael' was given, X-Git-Tag: OpenSSL_0_9_7-beta4~18^2~36 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=403f1bdc701a038c372fac3c6b4e2b08c3226618;p=oweals%2Fopenssl.git When AES is skipped because the option 'no-rijndael' was given, make sure it's skipped from SDIRS as well. --- diff --git a/Configure b/Configure index 497fd23f09..06a3c85949 100755 --- a/Configure +++ b/Configure @@ -740,6 +740,7 @@ PROCESS_ARGS: $openssl_algorithm_defines .= "#define OPENSSL_NO_$algo\n"; if ($algo eq "RIJNDAEL") { + push @skip, "aes"; $flags .= "-DOPENSSL_NO_AES "; $depflags .= "-DOPENSSL_NO_AES "; $openssl_algorithm_defines .= "#define OPENSSL_NO_AES\n";