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 <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/11230)
This commit is contained in:
Richard Levitte 2020-03-02 18:38:07 +01:00
parent 4901b570ba
commit 33d5b4a68a
1 changed files with 0 additions and 13 deletions

View File

@ -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 '';