From: Rich Salz Date: Mon, 17 May 2021 16:03:19 +0000 (-0400) Subject: Remove "openssl ifdef" handling X-Git-Tag: openssl-3.0.0-alpha17~63 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=47c88d453eabdf169861e984a0d5400b06b6d32b;p=thirdparty%2Fopenssl.git Remove "openssl ifdef" handling Reviewed-by: David von Oheimb Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/15311) --- diff --git a/util/find-doc-nits b/util/find-doc-nits index f4cc771e5a8..8a27a00bdfd 100755 --- a/util/find-doc-nits +++ b/util/find-doc-nits @@ -1034,7 +1034,6 @@ sub checkflags { my $doc = shift; my @cmdopts; my %docopts; - my %localskips; # Get the list of options in the command source file. my $active = 0; @@ -1069,12 +1068,6 @@ sub checkflags { while ( ) { chop; last if /DESCRIPTION/; - if ( /=for openssl ifdef (.*)/ ) { - foreach my $f ( split / /, $1 ) { - $localskips{$f} = 1; - } - next; - } my $opt; if ( /\[B<-([^ >]+)/ ) { $opt = $1; @@ -1099,7 +1092,7 @@ sub checkflags { my @unimpl = sort grep { my $e = $_; !(grep /^\Q$e\E$/, @cmdopts) } keys %docopts; foreach ( @unimpl ) { next if $_ eq "-"; # Skip the -- end-of-flags marker - next if defined $skips{$_} || defined $localskips{$_}; + next if defined $skips{$_}; err("$doc: $cmd does not implement -$_"); } }