summaryrefslogtreecommitdiffstats
path: root/util/mkdef.pl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2016-01-10 13:33:31 +0000
committerDr. Stephen Henson <steve@openssl.org>2016-01-11 02:41:15 +0000
commit3af45d9978c0bf6ce333e9666f41a03d41822d0c (patch)
treeb5f085ab525c6fbbdfce008d42df9c220b4436bd /util/mkdef.pl
parentaea145e3992aae298c63d4c7a1d5aec76883a50e (diff)
Disable some algorithms by default
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
Diffstat (limited to 'util/mkdef.pl')
-rwxr-xr-xutil/mkdef.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index 31822e167d..03c8d80575 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -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";