aboutsummaryrefslogtreecommitdiffstats
path: root/src/man/preproc.awk
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2020-09-02 16:11:04 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2020-09-02 16:11:04 -0400
commita68725f13c8a28e64d053936eaaa4dd5f5f3922d (patch)
treefbd1ce9726c225395039a49762168c229d253a31 /src/man/preproc.awk
parentfix private-bin in smplayer.profile (diff)
downloadfirejail-a68725f13c8a28e64d053936eaaa4dd5f5f3922d.tar.gz
firejail-a68725f13c8a28e64d053936eaaa4dd5f5f3922d.tar.zst
firejail-a68725f13c8a28e64d053936eaaa4dd5f5f3922d.zip
bringing in awk preprocessor from rusty-snake
Diffstat (limited to 'src/man/preproc.awk')
-rwxr-xr-xsrc/man/preproc.awk64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/man/preproc.awk b/src/man/preproc.awk
new file mode 100755
index 000000000..d5cee8c44
--- /dev/null
+++ b/src/man/preproc.awk
@@ -0,0 +1,64 @@
1#!/usr/bin/gawk -E
2
3# Copyright (c) 2019,2020 rusty-snake
4#
5# Permission is hereby granted, free of charge, to any person obtaining a copy
6# of this software and associated documentation files (the "Software"), to deal
7# in the Software without restriction, including without limitation the rights
8# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9# copies of the Software, and to permit persons to whom the Software is
10# furnished to do so, subject to the following conditions:
11#
12# The above copyright notice and this permission notice shall be included in all
13# copies or substantial portions of the Software.
14#
15# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21# SOFTWARE.
22
23function errexit(msg) {
24 print msg > "/dev/stderr"
25 exit 1
26}
27
28BEGIN {
29 macros[0] = 0
30 for (arg in ARGV) {
31 if (ARGV[arg] ~ /^-D[A-Z_]+$/) {
32 macros[length(macros) + 1] = substr(ARGV[arg], 3)
33 } else {
34 if (ARGV[arg] == "gawk" || ARGV[arg] == "awk")
35 continue
36# errexit("Invalid commandline argument" ARGV[arg])
37 }
38 ARGV[arg] = ""
39 }
40
41 include = 1
42}
43/^#ifdef [A-Z_]+$/ {
44 macro = substr($0, 8)
45 for (i in macros) {
46 if (macros[i] == macro) {
47 include = 1
48 next
49 }
50 }
51 include = 0
52}
53/^#if 0$/ {
54 include = 0
55 next
56}
57/^#endif$/ {
58 include = 1
59 next
60}
61{
62 if (include)
63 print
64}