aboutsummaryrefslogtreecommitdiff
path: root/util/mkdef.pl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2005-04-19 13:24:44 +0000
committerDr. Stephen Henson <steve@openssl.org>2005-04-19 13:24:44 +0000
commit987bebaf8c2232ef1d0a9169eb56570e3a0753b8 (patch)
treefdf1e79f3b344df951c46f395451fd0b2c2bf322 /util/mkdef.pl
parent65f0efe198fa6d4bf1b42bc42e80c2dcaa2813c9 (diff)
downloadopenssl-987bebaf8c2232ef1d0a9169eb56570e3a0753b8.zip
openssl-987bebaf8c2232ef1d0a9169eb56570e3a0753b8.tar.gz
openssl-987bebaf8c2232ef1d0a9169eb56570e3a0753b8.tar.bz2
New "algorithm define" OPENSSL_NO_GMP. Update mkdef.pl and Configure script
to use it.
Diffstat (limited to 'util/mkdef.pl')
-rwxr-xr-xutil/mkdef.pl7
1 files changed, 5 insertions, 2 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index e2a83c9..e6064ba 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -93,7 +93,7 @@ my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF",
# External "algorithms"
"FP_API", "STDIO", "SOCK", "KRB5",
# Engines
- "STATIC_ENGINE", "ENGINE", "HW",
+ "STATIC_ENGINE", "ENGINE", "HW", "GMP",
# Deprecated functions
"DEPRECATED" );
@@ -112,7 +112,8 @@ my $no_cast;
my $no_md2; my $no_md4; my $no_md5; my $no_sha; my $no_ripemd; my $no_mdc2;
my $no_rsa; my $no_dsa; my $no_dh; my $no_hmac=0; my $no_aes; my $no_krb5;
my $no_ec; my $no_ecdsa; my $no_ecdh; my $no_engine; my $no_hw;
-my $no_fp_api; my $no_static_engine; my $no_deprecated;
+my $no_fp_api; my $no_static_engine; my $no_gmp; my $no_deprecated;
+
foreach (@ARGV, split(/ /, $options))
{
@@ -184,6 +185,7 @@ foreach (@ARGV, split(/ /, $options))
elsif (/^no-krb5$/) { $no_krb5=1; }
elsif (/^no-engine$/) { $no_engine=1; }
elsif (/^no-hw$/) { $no_hw=1; }
+ elsif (/^no-gmp$/) { $no_gmp=1; }
}
@@ -1084,6 +1086,7 @@ sub is_valid
if ($keyword eq "HW" && $no_hw) { return 0; }
if ($keyword eq "FP_API" && $no_fp_api) { return 0; }
if ($keyword eq "STATIC_ENGINE" && $no_static_engine) { return 0; }
+ if ($keyword eq "GMP" && $no_gmp) { return 0; }
if ($keyword eq "DEPRECATED" && $no_deprecated) { return 0; }
# Nothing recognise as true