From: Richard Levitte Date: Thu, 14 Nov 2002 08:20:50 +0000 (+0000) Subject: When AES is skipped because the option 'no-rijndael' was given, X-Git-Tag: OpenSSL_0_9_7-beta4~48 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=17d4f076585c2dbd323ff63c8e4f50a5de770cab;p=openssl 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 50ba760288..a6021dfd3f 100755 --- a/Configure +++ b/Configure @@ -742,6 +742,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";