summaryrefslogtreecommitdiff
path: root/util/perl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-11-20 11:07:35 +0100
committerRichard Levitte <levitte@openssl.org>2021-02-05 14:10:53 +0100
commit1e3affbbcd85856c78e50c6bf56144bf9bc0eb23 (patch)
tree001133085773d966f1685eb7bb211230b2317ca4 /util/perl
parente337b82410a031f0ff60ebf6744b97da2a276e51 (diff)
downloadopenssl-new-1e3affbbcd85856c78e50c6bf56144bf9bc0eb23.tar.gz
Remove the old DEPRECATEDIN macros
They serve no purpose any more Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/13461)
Diffstat (limited to 'util/perl')
-rw-r--r--util/perl/OpenSSL/ParseC.pm12
1 files changed, 0 insertions, 12 deletions
diff --git a/util/perl/OpenSSL/ParseC.pm b/util/perl/OpenSSL/ParseC.pm
index f4e5783e98..0abb469d9a 100644
--- a/util/perl/OpenSSL/ParseC.pm
+++ b/util/perl/OpenSSL/ParseC.pm
@@ -261,18 +261,6 @@ my @opensslchandlers = (
#####
# Deprecated stuff, by OpenSSL release.
- # We trick the parser by pretending that the declaration is wrapped in a
- # check if the OPENSSL_NO_DEPRECATEDIN_x_y[_z] macro is defined or not.
- # Callers of parse() will have to decide what to do with it.
- { regexp => qr/(DEPRECATEDIN_\d+_\d+(?:_\d+)?)<<<\((.*)\)>>>/,
- massager => sub { return (<<"EOF");
-#ifndef OPENSSL_NO_$1
-$2;
-#endif
-EOF
- },
- },
-
# OSSL_DEPRECATEDIN_x_y[_z] is simply ignored. Such declarations are
# supposed to be guarded with an '#ifdef OPENSSL_NO_DEPRECATED_x_y[_z]'
{ regexp => qr/OSSL_DEPRECATEDIN_\d+_\d+(?:_\d+)?\s+(.*)/,