From 33d5b4a68ade2cb51513907ee0b57f146857ede5 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 2 Mar 2020 18:38:07 +0100 Subject: [PATCH] util/perl/OpenSSL/config.pm: Don't detect removed directories in This is much better handled in Configure. [There's another PR moving this to Configure, so this commit should eventually disappear because rebase] Reviewed-by: Tim Hudson (Merged from https://github.com/openssl/openssl/pull/11230) --- util/perl/OpenSSL/config.pm | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/util/perl/OpenSSL/config.pm b/util/perl/OpenSSL/config.pm index c1bbd32fbf..0e8969c8e2 100755 --- a/util/perl/OpenSSL/config.pm +++ b/util/perl/OpenSSL/config.pm @@ -241,19 +241,6 @@ sub expand { return $var; } -# Add no-xxx if someone removed a crypto algorithm directory. -# TODO: This should be moved to Configure. -my @cryptodir = ( - 'aes', 'aria', 'bf', 'camellia', 'cast', 'des', 'dh', 'dsa', 'ec', 'hmac', - 'idea', 'md2', 'md5', 'mdc2', 'rc2', 'rc4', 'rc5', 'ripemd', 'rsa', - 'seed', 'sha', 'sm2', 'sm3', 'sm4' -); -sub remove_removed_crypto_directories { - foreach my $d ( @cryptodir ) { - $options .= " no-$d" if ! -d "$WHERE/crypto/$d"; - } -} - # Look for ISC/SCO with its unique uname program sub is_sco_uname { open UNAME, "uname -X 2>/dev/null|" or return '';