Disable some algorithms by default

Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
This commit is contained in:
Dr. Stephen Henson 2016-01-10 13:33:31 +00:00
parent aea145e399
commit 3af45d9978

View File

@ -123,6 +123,9 @@ my %disabled_algorithms;
foreach (@known_algorithms) {
$disabled_algorithms{$_} = 0;
}
# disabled by default
$disabled_algorithms{"CRYPTO_MDEBUG"} = 1;
$disabled_algorithms{"STATIC_ENGINE"} = 1;
my $options="";
open(IN,"<Makefile") || die "unable to open Makefile!\n";