提交 2b1343b9 编写于 作者: M Matt Caswell

no-ripemd is an alias for no-rmd160

mkdef.pl was failing to understand no-ripemd. This is a deprecated option
which should act as an alias for no-rmd160.
Reviewed-by: NRichard Levitte <levitte@openssl.org>
上级 7f96f15b
...@@ -324,7 +324,6 @@ my @disablables = ( ...@@ -324,7 +324,6 @@ my @disablables = (
"rc5", "rc5",
"rdrand", "rdrand",
"rfc3779", "rfc3779",
"ripemd",
"rmd160", "rmd160",
"scrypt", "scrypt",
"sctp", "sctp",
...@@ -355,9 +354,10 @@ foreach my $proto ((@tls, @dtls)) ...@@ -355,9 +354,10 @@ foreach my $proto ((@tls, @dtls))
push(@disablables, "$proto-method"); push(@disablables, "$proto-method");
} }
my @deprecated_disablables = ( my %deprecated_disablables = (
"ssl2", "ssl2" => undef,
"buf-freelists", "buf-freelists" => undef,
"ripemd" => "rmd160"
); );
# All of the following is disabled by default (RC5 was enabled before 0.9.8): # All of the following is disabled by default (RC5 was enabled before 0.9.8):
...@@ -552,21 +552,17 @@ foreach (@argvcopy) ...@@ -552,21 +552,17 @@ foreach (@argvcopy)
s /^zlib-dynamic$/enable-zlib-dynamic/; s /^zlib-dynamic$/enable-zlib-dynamic/;
if (/^(no|disable|enable)-(.+)$/) if (/^(no|disable|enable)-(.+)$/)
{ {
my $word = $2; my $word = $2;
if (grep { $word =~ /^${_}$/ } @deprecated_disablables) if (!exists $deprecated_disablables{$word}
{ && !grep { $word =~ /^${_}$/ } @disablables)
$deprecated_options{$_} = 1; {
next; $unsupported_options{$_} = 1;
} next;
elsif (!grep { $word =~ /^${_}$/ } @disablables) }
{ }
$unsupported_options{$_} = 1; if (/^no-(.+)$/ || /^disable-(.+)$/)
next; {
}
}
if (/^no-(.+)$/ || /^disable-(.+)$/)
{
foreach my $proto ((@tls, @dtls)) foreach my $proto ((@tls, @dtls))
{ {
if ($1 eq "$proto-method") if ($1 eq "$proto-method")
...@@ -605,6 +601,14 @@ foreach (@argvcopy) ...@@ -605,6 +601,14 @@ foreach (@argvcopy)
{ {
$disabled{"dynamic-engine"} = "option"; $disabled{"dynamic-engine"} = "option";
} }
elsif (exists $deprecated_disablables{$1})
{
$deprecated_options{$_} = 1;
if (defined $deprecated_disablables{$1})
{
$disabled{$deprecated_disablables{$1}} = "option";
}
}
else else
{ {
$disabled{$1} = "option"; $disabled{$1} = "option";
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册