aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArsen Arsenović <arsen@aarsen.me>2022-06-25 19:15:00 +0200
committerSam James <sam@gentoo.org>2022-07-12 07:33:20 +0100
commit01b19ca9629c02d46af23f97c4afe4903c8b201a (patch)
treecd4eb2273ca543c903f087b6d9f8035f39a83025 /meson_options.txt
parentsecurity.h: suppress unused argument warning on allow_forking (diff)
downloadpax-utils-01b19ca9629c02d46af23f97c4afe4903c8b201a.tar.gz
pax-utils-01b19ca9629c02d46af23f97c4afe4903c8b201a.tar.bz2
pax-utils-01b19ca9629c02d46af23f97c4afe4903c8b201a.zip
Improve build-related documentation
Signed-off-by: Arsen Arsenović <arsen@aarsen.me> Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt18
1 files changed, 13 insertions, 5 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 62adc35..c96865d 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,9 +1,17 @@
-option('lddtree_implementation', type : 'combo', choices : ['python', 'sh', 'none'], value : 'python')
-option('use_libcap', type : 'feature', value : 'auto')
+option('lddtree_implementation', type : 'combo',
+ choices : ['python', 'sh', 'none'], value : 'python',
+ description : 'Which lddtree implementation to install?')
+option('use_libcap', type : 'feature', value : 'auto',
+ description : 'Enable listing capabilities in pspax output (requires libcap)'
+)
option('use_seccomp', type : 'boolean', value : 'true',
- description : 'Enable seccomp filters at runtime (does *not* require libseccomp)'
+ description : 'Enable seccomp filters at runtime (does *not* require libseccomp, but does require kernel support)'
)
option('build_manpages', type : 'feature', value : 'auto',
description : 'Build manuals via DocBook (requires xmlto)')
-option('tests', type : 'boolean', value : 'true')
-option('use_fuzzing', type : 'boolean', description : 'Also build LibFuzzer fuzzers', value : 'true')
+option('tests', type : 'boolean', value : 'true'
+ description : 'Enable testing (not guaranteed to work)'
+)
+option('use_fuzzing', type : 'boolean', value : 'true',
+ description : 'Also build LibFuzzer fuzzers as tests'
+)