Disable some algorithms by default
authorDr. Stephen Henson <steve@openssl.org>
Sun, 10 Jan 2016 13:33:31 +0000 (13:33 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Mon, 11 Jan 2016 02:41:15 +0000 (02:41 +0000)
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
util/mkdef.pl

index 31822e167d69cac452cedf8df81c1fa16c0f5bf7..03c8d805752b6ceebd0ec6a23d10048cc434744f 100755 (executable)
@@ -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";