summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-04-26 21:02:57 +0000
committerRichard Levitte <levitte@openssl.org>2001-04-26 21:02:57 +0000
commit26a81abffc91df66dbdfb5bf76dd0aefe4870dbc (patch)
treec2679e323bc26bcbca7cfdeff6cac7630345f6ee /util
parentab03b0df4c5ef75c0ad8bac9ce12c4be7f595f66 (diff)
Make proper use of all disabling variables.
Diffstat (limited to 'util')
-rwxr-xr-xutil/mkdef.pl9
1 files changed, 9 insertions, 0 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index ea2ae499f9..f2c8f55cd0 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -1015,8 +1015,17 @@ sub is_valid
if ($keyword eq "RSA" && $no_rsa) { return 0; }
if ($keyword eq "DSA" && $no_dsa) { return 0; }
if ($keyword eq "DH" && $no_dh) { return 0; }
+ if ($keyword eq "EC" && $no_ec) { return 0; }
if ($keyword eq "HMAC" && $no_hmac) { return 0; }
if ($keyword eq "AES" && $no_aes) { return 0; }
+ if ($keyword eq "EVP" && $no_evp) { return 0; }
+ if ($keyword eq "LHASH" && $no_lhash) { return 0; }
+ if ($keyword eq "STACK" && $no_stack) { return 0; }
+ if ($keyword eq "ERR" && $no_err) { return 0; }
+ if ($keyword eq "BUFFER" && $no_buffer) { return 0; }
+ if ($keyword eq "BIO" && $no_bio) { return 0; }
+ if ($keyword eq "COMP" && $no_comp) { return 0; }
+ if ($keyword eq "DSO" && $no_dso) { return 0; }
if ($keyword eq "KRB5" && $no_krb5) { return 0; }
if ($keyword eq "FP_API" && $no_fp_api) { return 0; }