1# -*- mode: meson -*- 2# SPDX-License-Identifier: LGPL-2.1-or-later 3 4option('version-tag', type : 'string', 5 description : 'override the git version string') 6option('shared-lib-tag', type : 'string', 7 description : 'override the private shared library version tag (defaults to project version)') 8 9option('mode', type : 'combo', choices : ['developer', 'release'], 10 description : 'autoenable features suitable for systemd development/release builds') 11 12option('split-usr', type : 'combo', choices : ['auto', 'true', 'false'], 13 description : '''/bin, /sbin aren't symlinks into /usr''') 14option('split-bin', type : 'combo', choices : ['auto', 'true', 'false'], 15 description : '''sbin is not a symlink to bin''') 16option('rootlibdir', type : 'string', 17 description : '''[/usr]/lib/x86_64-linux-gnu or such''') 18option('rootprefix', type : 'string', 19 description : '''override the root prefix [default '/' if split-usr and '/usr' otherwise]''') 20option('link-udev-shared', type : 'boolean', 21 description : 'link systemd-udev and its helpers to libsystemd-shared.so') 22option('link-systemctl-shared', type: 'boolean', 23 description : 'link systemctl against libsystemd-shared.so') 24option('link-networkd-shared', type: 'boolean', 25 description : 'link systemd-networkd and its helpers to libsystemd-shared.so') 26option('link-timesyncd-shared', type: 'boolean', 27 description : 'link systemd-timesyncd and its helpers to libsystemd-shared.so') 28option('link-boot-shared', type: 'boolean', 29 description : 'link bootctl and systemd-bless-boot against libsystemd-shared.so') 30 31option('static-libsystemd', type : 'combo', 32 choices : ['false', 'true', 'pic', 'no-pic'], 33 description : '''install a static library for libsystemd''') 34option('static-libudev', type : 'combo', 35 choices : ['false', 'true', 'pic', 'no-pic'], 36 description : 'install a static library for libudev') 37option('standalone-binaries', type : 'boolean', value : 'false', 38 description : 'also build standalone versions of supported binaries') 39 40option('sysvinit-path', type : 'string', value : '/etc/init.d', 41 description : 'the directory where the SysV init scripts are located') 42option('sysvrcnd-path', type : 'string', value : '/etc/rc.d', 43 description : 'the base directory for SysV rcN.d directories') 44option('telinit-path', type : 'string', value : '/lib/sysvinit/telinit', 45 description : 'path to telinit') 46option('rc-local', type : 'string', 47 value : '/etc/rc.local') 48option('initrd', type : 'boolean', 49 description : 'install services for use when running systemd in initrd') 50option('compat-mutable-uid-boundaries', type : 'boolean', value : 'false', 51 description : 'look at uid boundaries in /etc/login.defs for compatibility') 52option('nscd', type : 'boolean', 53 description : 'build support for flushing of the nscd caches') 54 55option('quotaon-path', type : 'string', description : 'path to quotaon') 56option('quotacheck-path', type : 'string', description : 'path to quotacheck') 57option('kmod-path', type : 'string', description : 'path to kmod') 58option('kexec-path', type : 'string', description : 'path to kexec') 59option('sulogin-path', type : 'string', description : 'path to sulogin') 60option('mount-path', type : 'string', description : 'path to mount') 61option('umount-path', type : 'string', description : 'path to umount') 62option('loadkeys-path', type : 'string', description : 'path to loadkeys') 63option('setfont-path', type : 'string', description : 'path to setfont') 64option('nologin-path', type : 'string', description : 'path to nologin') 65 66option('debug-shell', type : 'string', value : '/bin/sh', 67 description : 'path to debug shell binary') 68option('debug-tty', type : 'string', value : '/dev/tty9', 69 description : 'specify the tty device for debug shell') 70option('debug-extra', type : 'array', choices : ['hashmap', 'mmap-cache', 'siphash'], value : [], 71 description : 'enable extra debugging') 72option('memory-accounting-default', type : 'boolean', 73 description : 'enable MemoryAccounting= by default') 74option('bump-proc-sys-fs-file-max', type : 'boolean', 75 description : 'bump /proc/sys/fs/file-max to LONG_MAX') 76option('bump-proc-sys-fs-nr-open', type : 'boolean', 77 description : 'bump /proc/sys/fs/nr_open to INT_MAX') 78option('valgrind', type : 'boolean', value : false, 79 description : 'do extra operations to avoid valgrind warnings') 80option('log-trace', type : 'boolean', value : false, 81 description : 'enable low level debug logging') 82option('user-path', type : 'string', 83 description : '$PATH to use for user sessions') 84 85option('utmp', type : 'boolean', 86 description : 'support for utmp/wtmp log handling') 87option('hibernate', type : 'boolean', 88 description : 'support for hibernation') 89option('ldconfig', type : 'boolean', 90 description : 'support for dynamic linker cache creation') 91option('resolve', type : 'boolean', 92 description : 'systemd-resolved stack') 93option('efi', type : 'boolean', 94 description : 'enable systemd-boot and bootctl') 95option('tpm', type : 'boolean', 96 description : 'TPM should be used to log events and extend the registers') 97option('environment-d', type : 'boolean', 98 description : 'support for environment.d') 99option('binfmt', type : 'boolean', 100 description : 'support for custom binary formats') 101option('repart', type : 'combo', choices : ['auto', 'true', 'false'], 102 description : 'install the systemd-repart tool') 103option('sysupdate', type : 'combo', choices : ['auto', 'true', 'false'], 104 description : 'install the systemd-sysupdate tool') 105option('coredump', type : 'boolean', 106 description : 'install the coredump handler') 107option('pstore', type : 'boolean', 108 description : 'install the pstore archival tool') 109option('oomd', type : 'boolean', 110 description : 'install the userspace oom killer') 111option('logind', type : 'boolean', 112 description : 'install the systemd-logind stack') 113option('hostnamed', type : 'boolean', 114 description : 'install the systemd-hostnamed stack') 115option('localed', type : 'boolean', 116 description : 'install the systemd-localed stack') 117option('machined', type : 'boolean', 118 description : 'install the systemd-machined stack') 119option('portabled', type : 'boolean', 120 description : 'install the systemd-portabled stack') 121option('sysext', type : 'boolean', 122 description : 'install the systemd-sysext stack') 123option('userdb', type : 'boolean', 124 description : 'install the systemd-userdbd stack') 125option('homed', type : 'combo', choices : ['auto', 'true', 'false'], 126 description : 'install the systemd-homed stack') 127option('networkd', type : 'boolean', 128 description : 'install the systemd-networkd stack') 129option('timedated', type : 'boolean', 130 description : 'install the systemd-timedated daemon') 131option('timesyncd', type : 'boolean', 132 description : 'install the systemd-timesyncd daemon') 133option('remote', type : 'combo', choices : ['auto', 'true', 'false'], 134 description : 'support for "journal over the network"') 135option('create-log-dirs', type : 'boolean', 136 description : 'create /var/log/journal{,/remote}') 137option('nss-myhostname', type : 'boolean', 138 description : 'install nss-myhostname module') 139option('nss-mymachines', type : 'combo', choices : ['auto', 'true', 'false'], 140 description : 'install nss-mymachines module') 141option('nss-resolve', type : 'combo', choices : ['auto', 'true', 'false'], 142 description : 'install nss-resolve module') 143option('nss-systemd', type : 'boolean', 144 description : 'install nss-systemd module') 145option('firstboot', type : 'boolean', 146 description : 'support for firstboot mechanism') 147option('randomseed', type : 'boolean', 148 description : 'support for restoring random seed') 149option('backlight', type : 'boolean', 150 description : 'support for restoring backlight state') 151option('vconsole', type : 'boolean', 152 description : 'support for vconsole configuration') 153option('quotacheck', type : 'boolean', 154 description : 'support for the quotacheck tools') 155option('sysusers', type : 'boolean', 156 description : 'support for the sysusers configuration') 157option('tmpfiles', type : 'boolean', 158 description : 'support for tmpfiles.d') 159option('importd', type : 'combo', choices : ['auto', 'true', 'false'], 160 description : 'install the systemd-importd daemon') 161option('hwdb', type : 'boolean', 162 description : 'support for the hardware database') 163option('rfkill', type : 'boolean', 164 description : 'support for the rfkill tools') 165option('xdg-autostart', type : 'boolean', 166 description : 'install the xdg-autostart-generator and unit') 167option('man', type : 'combo', choices : ['auto', 'true', 'false'], 168 value : 'false', 169 description : 'build and install man pages') 170option('html', type : 'combo', choices : ['auto', 'true', 'false'], 171 value : 'false', 172 description : 'build and install html pages') 173option('translations', type : 'boolean', value : true, 174 description : 'build and install translations') 175 176option('certificate-root', type : 'string', value : '/etc/ssl', 177 description : 'the prefix for TLS certificates') 178option('dbuspolicydir', type : 'string', 179 description : 'D-Bus policy directory') 180option('dbussessionservicedir', type : 'string', 181 description : 'D-Bus session service directory') 182option('dbussystemservicedir', type : 'string', 183 description : 'D-Bus system service directory') 184option('dbus-interfaces-dir', type : 'string', 185 description : 'export D-Bus introspection XML as standalone files') 186option('pkgconfigdatadir', type : 'string', value : '', 187 description : 'directory for arch-independent pkg-config files') 188option('pkgconfiglibdir', type : 'string', value : '', 189 description : 'directory for standard pkg-config files') 190option('xinitrcdir', type : 'string', value : '', 191 description : 'directory for xinitrc files') 192option('rpmmacrosdir', type : 'string', value : 'lib/rpm/macros.d', 193 description : 'directory for rpm macros ["no" disables]') 194option('update-helper-user-timeout', type : 'string', value : '15s', 195 description : 'how long to wait for user manager operations') 196option('pamlibdir', type : 'string', 197 description : 'directory for PAM modules') 198option('pamconfdir', type : 'string', 199 description : 'directory for PAM configuration ["no" disables]') 200option('libcryptsetup-plugins-dir', type : 'string', 201 description : 'directory for libcryptsetup plugins') 202option('docdir', type : 'string', 203 description : 'documentation directory') 204option('install-sysconfdir', type : 'combo', choices : ['true', 'no-samples', 'false'], value : 'true', 205 description : 'install configuration files and directories to $sysconfdir') 206 207option('fallback-hostname', type : 'string', value : 'localhost', 208 description : 'the hostname used if none configured') 209option('default-hierarchy', type : 'combo', 210 choices : ['legacy', 'hybrid', 'unified'], value : 'unified', 211 description : 'default cgroup hierarchy') 212option('extra-net-naming-schemes', type : 'string', 213 description : 'comma-separated list of extra net.naming-scheme= definitions') 214option('default-net-naming-scheme', type : 'string', value : 'latest', 215 description : 'default net.naming-scheme= value') 216option('status-unit-format-default', type : 'combo', 217 choices : ['description', 'name', 'combined'], 218 description : 'use unit name or description in messages by default') 219option('time-epoch', type : 'integer', value : '-1', 220 description : 'time epoch for time clients') 221option('clock-valid-range-usec-max', type : 'integer', value : '473364000000000', # 15 years 222 description : 'maximum value in microseconds for the difference between RTC and epoch, exceeding which is considered an RTC error') 223option('default-user-shell', type : 'string', value : '/bin/bash', 224 description : 'default interactive shell') 225 226option('system-alloc-uid-min', type : 'integer', value : '-1', 227 description : 'minimum system UID used when allocating') 228option('system-alloc-gid-min', type : 'integer', value : '-1', 229 description : 'minimum system GID used when allocating') 230option('system-uid-max', type : 'integer', value : '-1', 231 description : 'maximum system UID') 232option('system-gid-max', type : 'integer', value : '-1', 233 description : 'maximum system GID') 234option('dynamic-uid-min', type : 'integer', value : 0x0000EF00, 235 description : 'minimum dynamic UID') 236option('dynamic-uid-max', type : 'integer', value : 0x0000FFEF, 237 description : 'maximum dynamic UID') 238option('container-uid-base-min', type : 'integer', value : 0x00080000, 239 description : 'minimum container UID base') 240option('container-uid-base-max', type : 'integer', value : 0x6FFF0000, 241 description : 'maximum container UID base') 242option('adm-group', type : 'boolean', 243 description : 'the ACL for adm group should be added') 244option('wheel-group', type : 'boolean', 245 description : 'the ACL for wheel group should be added') 246option('nobody-user', type : 'string', 247 description : 'The name of the nobody user (the one with UID 65534)', 248 value : 'nobody') 249option('nobody-group', type : 'string', 250 description : 'The name of the nobody group (the one with GID 65534)', 251 value : 'nobody') 252option('adm-gid', type : 'integer', value : '-1', 253 description : 'soft-static allocation for the "adm" group') 254option('audio-gid', type : 'integer', value : '-1', 255 description : 'soft-static allocation for the "audio" group') 256option('cdrom-gid', type : 'integer', value : '-1', 257 description : 'soft-static allocation for the "cdrom" group') 258option('dialout-gid', type : 'integer', value : '-1', 259 description : 'soft-static allocation for the "dialout" group') 260option('disk-gid', type : 'integer', value : '-1', 261 description : 'soft-static allocation for the "disk" group') 262option('input-gid', type : 'integer', value : '-1', 263 description : 'soft-static allocation for the "input" group') 264option('kmem-gid', type : 'integer', value : '-1', 265 description : 'soft-static allocation for the "kmem" group') 266option('kvm-gid', type : 'integer', value : '-1', 267 description : 'soft-static allocation for the "kvm" group') 268option('lp-gid', type : 'integer', value : '-1', 269 description : 'soft-static allocation for the "lp" group') 270option('render-gid', type : 'integer', value : '-1', 271 description : 'soft-static allocation for the "render" group') 272option('sgx-gid', type : 'integer', value : '-1', 273 description : 'soft-static allocation for the "sgx" group') 274option('tape-gid', type : 'integer', value : '-1', 275 description : 'soft-static allocation for the "tape" group') 276option('tty-gid', type : 'integer', value : 5, 277 description : 'the numeric GID of the "tty" group') 278option('users-gid', type : 'integer', value : '-1', 279 description : 'soft-static allocation for the "users" group') 280option('utmp-gid', type : 'integer', value : '-1', 281 description : 'soft-static allocation for the "utmp" group') 282option('video-gid', type : 'integer', value : '-1', 283 description : 'soft-static allocation for the "video" group') 284option('wheel-gid', type : 'integer', value : '-1', 285 description : 'soft-static allocation for the "wheel" group') 286option('systemd-journal-gid', type : 'integer', value : '-1', 287 description : 'soft-static allocation for the systemd-journal group') 288option('systemd-network-uid', type : 'integer', value : '-1', 289 description : 'soft-static allocation for the systemd-network user') 290option('systemd-resolve-uid', type : 'integer', value : '-1', 291 description : 'soft-static allocation for the systemd-resolve user') 292option('systemd-timesync-uid', type : 'integer', value : '-1', 293 description : 'soft-static allocation for the systemd-timesync user') 294 295option('dev-kvm-mode', type : 'string', value : '0666', 296 description : '/dev/kvm access mode') 297option('group-render-mode', type : 'string', value : '0666', 298 description : 'Access mode for devices owned by render group (e.g. /dev/dri/renderD*, /dev/kfd).') 299option('default-kill-user-processes', type : 'boolean', 300 description : 'the default value for KillUserProcesses= setting') 301option('gshadow', type : 'boolean', 302 description : 'support for shadow group') 303option('default-locale', type : 'string', value : '', 304 description : 'default locale used when /etc/locale.conf does not exist') 305option('localegen-path', type : 'string', value : '', 306 description : 'absolute path to the locale-gen binary in case the system is using locale-gen') 307option('service-watchdog', type : 'string', value : '3min', 308 description : 'default watchdog setting for systemd services') 309 310option('default-dnssec', type : 'combo', 311 description : 'default DNSSEC mode', 312 choices : ['yes', 'allow-downgrade', 'no'], 313 value : 'allow-downgrade') 314option('default-dns-over-tls', type : 'combo', 315 description : 'default DNS-over-TLS mode', 316 choices : ['yes', 'opportunistic', 'no'], 317 value : 'no') 318option('default-mdns', type : 'combo', 319 choices : ['yes', 'resolve', 'no'], 320 description : 'default MulticastDNS mode', 321 value : 'yes') 322option('default-llmnr', type : 'combo', 323 choices : ['yes', 'resolve', 'no'], 324 description : 'default LLMNR mode', 325 value : 'yes') 326option('dns-over-tls', type : 'combo', choices : ['auto', 'gnutls', 'openssl', 'true', 'false'], 327 description : 'DNS-over-TLS support') 328option('dns-servers', type : 'string', 329 description : 'space-separated list of default DNS servers', 330 value : '1.1.1.1#cloudflare-dns.com 8.8.8.8#dns.google 1.0.0.1#cloudflare-dns.com 8.8.4.4#dns.google 2606:4700:4700::1111#cloudflare-dns.com 2001:4860:4860::8888#dns.google 2606:4700:4700::1001#cloudflare-dns.com 2001:4860:4860::8844#dns.google') 331option('ntp-servers', type : 'string', 332 description : 'space-separated list of default NTP servers', 333 value : 'time1.google.com time2.google.com time3.google.com time4.google.com') 334option('support-url', type : 'string', 335 description : 'the support URL to show in catalog entries included in systemd', 336 value : 'https://lists.freedesktop.org/mailman/listinfo/systemd-devel') 337option('www-target', type : 'string', 338 description : 'the address and dir to upload docs too', 339 value : 'www.freedesktop.org:/srv/www.freedesktop.org/www/software/systemd') 340 341option('seccomp', type : 'combo', choices : ['auto', 'true', 'false'], 342 description : 'SECCOMP support') 343option('selinux', type : 'combo', choices : ['auto', 'true', 'false'], 344 description : 'SELinux support') 345option('apparmor', type : 'combo', choices : ['auto', 'true', 'false'], 346 description : 'AppArmor support') 347option('smack', type : 'boolean', 348 description : 'SMACK support') 349option('smack-run-label', type : 'string', 350 description : 'run systemd --system itself with a specific SMACK label') 351option('polkit', type : 'combo', choices : ['auto', 'true', 'false'], 352 description : 'polkit support') 353option('ima', type : 'boolean', 354 description : 'IMA support') 355 356option('acl', type : 'combo', choices : ['auto', 'true', 'false'], 357 description : 'libacl support') 358option('audit', type : 'combo', choices : ['auto', 'true', 'false'], 359 description : 'libaudit support') 360option('blkid', type : 'combo', choices : ['auto', 'true', 'false'], 361 description : 'libblkid support') 362option('fdisk', type : 'combo', choices : ['auto', 'true', 'false'], 363 description : 'libfdisk support') 364option('kmod', type : 'combo', choices : ['auto', 'true', 'false'], 365 description : 'support for loadable modules') 366option('pam', type : 'combo', choices : ['auto', 'true', 'false'], 367 description : 'PAM support') 368option('pwquality', type : 'combo', choices : ['auto', 'true', 'false'], 369 description : 'libpwquality support') 370option('microhttpd', type : 'combo', choices : ['auto', 'true', 'false'], 371 description : 'libµhttpd support') 372option('libcryptsetup', type : 'combo', choices : ['auto', 'true', 'false'], 373 description : 'libcryptsetup support') 374option('libcryptsetup-plugins', type : 'combo', choices : ['auto', 'true', 'false'], 375 description : 'libcryptsetup LUKS2 external token handlers support (plugins)') 376option('libcurl', type : 'combo', choices : ['auto', 'true', 'false'], 377 description : 'libcurl support') 378option('idn', type : 'boolean', 379 description : 'use IDN when printing hostnames') 380option('libidn2', type : 'combo', choices : ['auto', 'true', 'false'], 381 description : 'libidn2 support') 382option('libidn', type : 'combo', choices : ['auto', 'true', 'false'], 383 description : 'libidn support') 384option('libiptc', type : 'combo', choices : ['auto', 'true', 'false'], 385 description : 'libiptc support') 386option('qrencode', type : 'combo', choices : ['auto', 'true', 'false'], 387 description : 'libqrencode support') 388option('gcrypt', type : 'combo', choices : ['auto', 'true', 'false'], 389 description : 'gcrypt support') 390option('gnutls', type : 'combo', choices : ['auto', 'true', 'false'], 391 description : 'gnutls support') 392option('openssl', type : 'combo', choices : ['auto', 'true', 'false'], 393 description : 'openssl support') 394option('cryptolib', type : 'combo', choices : ['auto', 'openssl', 'gcrypt'], 395 description : 'whether to use openssl or gcrypt where both are supported') 396option('p11kit', type : 'combo', choices : ['auto', 'true', 'false'], 397 description : 'p11kit support') 398option('libfido2', type : 'combo', choices : ['auto', 'true', 'false'], 399 description : 'FIDO2 support') 400option('tpm2', type : 'combo', choices : ['auto', 'true', 'false'], 401 description : 'TPM2 support') 402option('elfutils', type : 'combo', choices : ['auto', 'true', 'false'], 403 description : 'elfutils support') 404option('zlib', type : 'combo', choices : ['auto', 'true', 'false'], 405 description : 'zlib compression support') 406option('bzip2', type : 'combo', choices : ['auto', 'true', 'false'], 407 description : 'bzip2 compression support') 408option('xz', type : 'combo', choices : ['auto', 'true', 'false'], 409 description : 'xz compression support') 410option('lz4', type : 'combo', choices : ['auto', 'true', 'false'], 411 description : 'lz4 compression support') 412option('zstd', type : 'combo', choices : ['auto', 'true', 'false'], 413 description : 'zstd compression support') 414option('default-compression', type : 'combo', choices : ['auto', 'zstd', 'lz4', 'xz'], value: 'auto', 415 description : 'default compression algorithm') 416option('xkbcommon', type : 'combo', choices : ['auto', 'true', 'false'], 417 description : 'xkbcommon keymap support') 418option('pcre2', type : 'combo', choices : ['auto', 'true', 'false'], 419 description : 'regexp matching support using pcre2') 420option('glib', type : 'combo', choices : ['auto', 'true', 'false'], 421 description : 'libglib support (for tests only)') 422option('dbus', type : 'combo', choices : ['auto', 'true', 'false'], 423 description : 'libdbus support (for tests only)') 424 425option('gnu-efi', type : 'combo', choices : ['auto', 'true', 'false'], 426 description : 'gnu-efi support for sd-boot') 427option('efi-cflags', type : 'array', 428 description : 'additional flags for EFI compiler') 429# Note that LLD does not support PE/COFF relocations 430# https://lists.llvm.org/pipermail/llvm-dev/2021-March/149234.html 431option('efi-ld', type : 'combo', choices : ['auto', 'bfd', 'gold'], 432 description : 'the linker to use for EFI modules') 433option('efi-libdir', type : 'string', 434 description : 'path to the EFI lib directory') 435option('efi-includedir', type : 'string', value : '/usr/include/efi', 436 description : 'path to the EFI header directory') 437option('efi-tpm-pcr-compat', type : 'boolean', value : 'false', 438 description : 'Measure kernel command line also into TPM PCR 8 (in addition to 12)') 439option('sbat-distro', type : 'string', value : 'auto', 440 description : 'SBAT distribution ID, e.g. fedora, or auto for autodetection') 441option('sbat-distro-generation', type : 'integer', value : 1, 442 description : 'SBAT distribution generation') 443option('sbat-distro-summary', type : 'string', 444 description : 'SBAT distribution summary, e.g. Fedora') 445option('sbat-distro-pkgname', type : 'string', 446 description : 'SBAT distribution package name, e.g. systemd') 447option('sbat-distro-version', type : 'string', 448 description : 'SBAT distribution package version, e.g. 248-7.fc34') 449option('sbat-distro-url', type : 'string', 450 description : 'SBAT distribution URL, e.g. https://src.fedoraproject.org/rpms/systemd') 451option('efi-color-normal', type : 'string', value : 'lightgray,black', 452 description : 'general boot loader color in "foreground,background" form, see constants from eficon.h') 453option('efi-color-entry', type : 'string', value : 'lightgray,black', 454 description : 'boot loader color for entries') 455option('efi-color-highlight', type : 'string', value : 'black,lightgray', 456 description : 'boot loader color for selected entries') 457option('efi-color-edit', type : 'string', value : 'black,lightgray', 458 description : 'boot loader color for option line edit') 459 460option('bashcompletiondir', type : 'string', 461 description : 'directory for bash completion scripts ["no" disables]') 462option('zshcompletiondir', type : 'string', 463 description : 'directory for zsh completion scripts ["no" disables]') 464 465option('tests', type : 'combo', choices : ['true', 'unsafe', 'false'], 466 description : 'enable extra tests with =unsafe') 467option('slow-tests', type : 'boolean', value : 'false', 468 description : 'run the slow tests by default') 469option('fuzz-tests', type : 'boolean', value : 'false', 470 description : 'run the fuzzer regression tests by default (with sanitizers)') 471option('install-tests', type : 'boolean', value : 'false', 472 description : 'install test executables') 473option('log-message-verification', type : 'combo', choices : ['auto', 'true', 'false'], 474 description : 'do fake printf() calls to verify format strings') 475 476option('ok-color', type : 'combo', 477 choices : ['black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan', 478 'white', 'highlight-black', 'highlight-red', 'highlight-green', 479 'highlight-yellow', 'highlight-blue', 'highlight-magenta', 480 'highlight-cyan', 'highlight-white'], 481 value : 'green', 482 description: 'color of the "OK" status message') 483option('urlify', type : 'boolean', value : 'true', 484 description : 'enable pager Hyperlink ANSI sequence support') 485option('fexecve', type : 'boolean', value : 'false', 486 description : 'use fexecve() to spawn children') 487 488option('oss-fuzz', type : 'boolean', value : 'false', 489 description : 'build against oss-fuzz') 490option('llvm-fuzz', type : 'boolean', value : 'false', 491 description : 'build against LLVM libFuzzer') 492option('kernel-install', type: 'boolean', value: 'true', 493 description : 'install kernel-install and associated files') 494option('analyze', type: 'boolean', value: 'true', 495 description : 'install systemd-analyze') 496 497option('bpf-framework', type : 'combo', choices : ['auto', 'true', 'false'], 498 description: 'build BPF programs from source code in restricted C') 499 500option('skip-deps', type : 'boolean', value : 'false', 501 description : 'skip optional dependencies') 502