diff options
author | Rich Salz <rsalz@openssl.org> | 2015-01-27 16:06:22 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2015-01-27 16:06:22 +0100 |
commit | a00ae6c46e0d7907a7c9f9e85334e968aa5fd338 (patch) | |
tree | 79a0e748842c1a3ed15b3b4a1ab08ce29bab5280 /apps/progs.pl | |
parent | OPENSSL_NO_xxx cleanup: DEC-CBCM removed (diff) | |
download | openssl-a00ae6c46e0d7907a7c9f9e85334e968aa5fd338.tar.xz openssl-a00ae6c46e0d7907a7c9f9e85334e968aa5fd338.zip |
OPENSSL_NO_xxx cleanup: many removals
The following compile options (#ifdef's) are removed:
OPENSSL_NO_BIO OPENSSL_NO_BUFFER OPENSSL_NO_CHAIN_VERIFY
OPENSSL_NO_EVP OPENSSL_NO_FIPS_ERR OPENSSL_NO_HASH_COMP
OPENSSL_NO_LHASH OPENSSL_NO_OBJECT OPENSSL_NO_SPEED OPENSSL_NO_STACK
OPENSSL_NO_X509 OPENSSL_NO_X509_VERIFY
This diff is big because of updating the indents on preprocessor lines.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'apps/progs.pl')
-rw-r--r-- | apps/progs.pl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/progs.pl b/apps/progs.pl index 2b1efd8fed..8695742f28 100644 --- a/apps/progs.pl +++ b/apps/progs.pl @@ -33,8 +33,6 @@ foreach (@ARGV) $str="\t{FUNC_TYPE_GENERAL,\"$_\",${_}_main},\n"; if (($_ =~ /^s_/) || ($_ =~ /^ciphers$/)) { print "#if !defined(OPENSSL_NO_SOCK)\n${str}#endif\n"; } - elsif ( ($_ =~ /^speed$/)) - { print "#ifndef OPENSSL_NO_SPEED\n${str}#endif\n"; } elsif ( ($_ =~ /^engine$/)) { print "#ifndef OPENSSL_NO_ENGINE\n${str}#endif\n"; } elsif ( ($_ =~ /^rsa$/) || ($_ =~ /^genrsa$/) || ($_ =~ /^rsautl$/)) |