diff options
author | Richard Levitte <levitte@openssl.org> | 2020-11-20 11:07:35 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2021-02-05 14:10:53 +0100 |
commit | 1e3affbbcd85856c78e50c6bf56144bf9bc0eb23 (patch) | |
tree | 001133085773d966f1685eb7bb211230b2317ca4 /util | |
parent | ERR: Rebuild all generated error headers and source files (diff) | |
download | openssl-1e3affbbcd85856c78e50c6bf56144bf9bc0eb23.tar.xz openssl-1e3affbbcd85856c78e50c6bf56144bf9bc0eb23.zip |
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')
-rw-r--r-- | util/perl/OpenSSL/ParseC.pm | 12 |
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+(.*)/, |