Disable some algorithms by default
[openssl.git] / 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";