diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 10:41:58 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 10:41:58 +0000 |
commit | 1852910ef0fd7393da62b88aee66ee092208748e (patch) | |
tree | ad3b659dbbe622b58a5bda4fe0b5e1d80eee9277 /meson_options.txt | |
parent | Initial commit. (diff) | |
download | knot-resolver-1852910ef0fd7393da62b88aee66ee092208748e.tar.xz knot-resolver-1852910ef0fd7393da62b88aee66ee092208748e.zip |
Adding upstream version 5.3.1.upstream/5.3.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 212 |
1 files changed, 212 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt new file mode 100644 index 0000000..f7ca06a --- /dev/null +++ b/meson_options.txt @@ -0,0 +1,212 @@ +# Configuration options +# SPDX-License-Identifier: GPL-3.0-or-later + +option( + 'keyfile_default', + type: 'string', + value: 'root.keys', + description: 'built-in path to DNSSEC trust anchors file', +) + +option( + 'managed_ta', + type: 'combo', + choices: [ + 'auto', + 'enabled', + 'disabled', + ], + value: 'auto', + description: 'auto-manage DNSSEC trust anchors (RFC 5011)', +) + +option( + 'root_hints', + type: 'string', + value: 'root.hints', + description: 'built-in path to root.hints file', +) + +option( + 'install_kresd_conf', + type: 'combo', + choices: [ + 'auto', + 'enabled', + 'disabled', + ], + value: 'auto', + description: 'creates kresd.conf in config directory', +) + +option( + 'install_root_keys', + type: 'combo', + choices: [ + 'auto', + 'enabled', + 'disabled', + ], + value: 'auto', + description: 'installs DNSSEC TA to keyfile_default location', +) + +option( + 'verbose_log', + type: 'combo', + choices: [ + 'auto', + 'enabled', + 'disabled', + ], + value: 'auto', + description: 'support verbose logging', +) + +option( + 'user', + type: 'string', + value: 'knot-resolver', + description: 'user which is used for running kresd', +) + +option( + 'group', + type: 'string', + value: 'knot-resolver', + description: 'group which is used for running kresd', +) + +option( + 'sendmmsg', + type: 'combo', + choices: [ + 'auto', + 'enabled', + 'disabled', + ], + value: 'auto', + description: 'use sendmmsg syscall towards clients', +) + +option( + 'capng', + type: 'combo', + choices: [ + 'auto', + 'enabled', + 'disabled', + ], + value: 'auto', + description: 'use libcapng to drop capabilities for non-root users', +) + +## Systemd +option( + 'systemd_files', + type: 'combo', + choices: [ + 'disabled', + 'enabled', + ], + value: 'disabled', + description: 'installs systemd-related files', +) + + +# Component options +option( + 'bench', + type: 'combo', + choices: [ + 'auto', + 'enabled', + 'disabled', + ], + value: 'disabled', + description: 'build benchmarks', +) + +option( + 'client', + type: 'combo', + choices: [ + 'auto', + 'enabled', + 'disabled', + ], + value: 'auto', + description: 'build kresc client binary', +) + +option( + 'utils', + type: 'combo', + choices: [ + 'auto', + 'enabled', + 'disabled', + ], + value: 'auto', + description: 'build kres utilities', +) + +option( + 'dnstap', + type: 'combo', + choices: [ + 'auto', + 'enabled', + 'disabled', + ], + value: 'auto', + description: 'build dnstap module', +) + +option( + 'doc', + type: 'combo', + choices: [ + 'auto', + 'enabled', + 'disabled', + ], + value: 'disabled', + description: 'html documentation dependencies and installation', +) + +option( + 'config_tests', + type: 'combo', + choices: [ + 'auto', + 'enabled', + 'disabled', + ], + value: 'auto', + description: 'postinstall config tests', +) + +option( + 'extra_tests', + type: 'combo', + choices: [ + 'auto', + 'enabled', + 'disabled', + ], + value: 'disabled', + description: 'postinstall tests with extra dependencies', +) + +option( + 'unit_tests', + type: 'combo', + choices: [ + 'auto', + 'enabled', + 'disabled', + ], + value: 'auto', + description: 'cmocka unit tests', +) |