]> git.ipfire.org Git - thirdparty/systemd.git/blame - meson_options.txt
meson: add TAGS target
[thirdparty/systemd.git] / meson_options.txt
CommitLineData
5c23128d
ZJS
1# -*- mode: meson -*-
2
3option('split-usr', type : 'boolean', value : false,
4 description : '''assume that /bin, /sbin aren't symlinks into /usr''')
5option('rootlibdir', type : 'string',
6 description : '''[/usr]/lib/x86_64-linux-gnu or such''')
7
8option('sysvinit-path', type : 'string', value : '/etc/init.d',
9 description : 'the directory where the SysV init scripts are located')
10option('sysvrcnd-path', type : 'string', value : '/etc/rc.d',
11 description : 'the base directory for SysV rcN.d directories')
12option('telinit-path', type : 'string', description : 'path to telinit')
13
14option('quotaon-path', type : 'string', description : 'path to quotaon')
15option('quotacheck-path', type : 'string', description : 'path to quotacheck')
16option('kill-path', type : 'string', description : 'path to kill')
17option('kmod-path', type : 'string', description : 'path to kmod')
18option('kexec-path', type : 'string', description : 'path to kexec')
19option('sulogin-path', type : 'string', description : 'path to sulogin')
20option('mount-path', type : 'string', description : 'path to mount')
21option('umount-path', type : 'string', description : 'path to umount')
22option('loadkeys-path', type : 'string', description : 'path to loadkeys')
23option('setfont-path', type : 'string', description : 'path to setfont')
24
25option('utmp', type : 'boolean',
26 description : 'support for utmp/wtmp log handling')
27option('hibernate', type : 'boolean',
28 description : 'support for hibernation')
29option('ldconfig', type : 'boolean',
30 description : 'support for dynamic linker cache creation')
31option('resolve', type : 'boolean',
32 description : 'systemd-resolved stack')
33option('efi', type : 'boolean',
34 description : 'support for EFI')
35option('environment-d', type : 'boolean',
36 description : 'support for environment.d')
37option('binfmt', type : 'boolean',
38 description : 'support for custom binary formats')
39option('coredump', type : 'boolean',
40 description : 'install the coredump handler')
41option('logind', type : 'boolean',
42 description : 'install the systemd-logind stack')
43option('hostnamed', type : 'boolean',
44 description : 'install the systemd-hostnamed stack')
45option('localed', type : 'boolean',
46 description : 'install the systemd-localed stack')
47option('machined', type : 'boolean',
48 description : 'install the systemd-machined stack')
49option('networkd', type : 'boolean',
50 description : 'install the systemd-networkd stack')
51option('timedated', type : 'boolean',
52 description : 'install the systemd-timedated daemon')
53option('timesyncd', type : 'boolean',
54 description : 'install the systemd-timesyncd daemon')
55option('remote', type : 'boolean',
56 description : 'support for "journal over the network"')
57option('myhostname', type : 'boolean',
58 description : 'nss-myhostname support')
59option('firstboot', type : 'boolean',
60 description : 'support for firstboot mechanism')
61option('randomseed', type : 'boolean',
62 description : 'support for restoring random seed')
63option('backlight', type : 'boolean',
64 description : 'support for restoring backlight state')
65option('vconsole', type : 'boolean',
66 description : 'support for vconsole configuration')
67option('quotacheck', type : 'boolean',
68 description : 'support for the quotacheck tools')
69option('sysusers', type : 'boolean',
70 description : 'support for the sysusers configuration')
71option('tmpfiles', type : 'boolean',
72 description : 'support for tmpfiles.d')
73option('importd', type : 'boolean',
74 description : 'install the systemd-importd daemon')
75option('hwdb', type : 'boolean',
76 description : 'support for the hardware database')
77option('rfkill', type : 'boolean',
78 description : 'support for the rfkill tools')
527d43d7
ZJS
79option('man', type : 'combo', choices : ['auto', 'yes', 'no'],
80 description : 'build and install man pages')
81option('html', type : 'combo', choices : ['auto', 'yes', 'no'],
82 value : 'no',
83 description : 'build and install html pages')
5c23128d
ZJS
84
85option('certificate-root', type : 'string', value : '/etc/ssl',
86 description : 'the prefix for TLS certificates')
87option('dbuspolicydir', type : 'string',
88 description : 'D-Bus policy directory')
89option('dbussessionservicedir', type : 'string',
90 description : 'D-Bus session service directory')
91option('dbussystemservicedir', type : 'string',
92 description : 'D-Bus system service directory')
93option('pkgconfigdatadir', type : 'string', value : 'share/pkgconfig',
94 description : 'directory for ')
95option('pkgconfiglibdir', type : 'string', value : '',
96 description : 'directory for ')
97option('rpmmacrosdir', type : 'string', value : 'lib/rpm/macros.d',
98 description : 'directory for rpm macros ["no" disables]')
99option('pamlibdir', type : 'string',
100 description : 'directory for PAM modules')
101option('pamconfdir', type : 'string',
102 description : 'directory for PAM configuration ["no" disables]')
103
104option('fallback-hostname', type : 'string', value : 'localhost',
105 description : 'the hostname used if none configured')
106option('default-hierarchy', type : 'combo',
107 choices : ['legacy', 'hybrid', 'unified'], value : 'hybrid',
108 description : 'default cgroup hierarchy')
109option('time-epoch', type : 'string',
110 description : 'time epoch for time clients')
111option('system-uid-max', type : 'string',
112 description : 'maximum system UID')
113option('system-gid-max', type : 'string',
114 description : 'maximum system GID')
115option('tty-gid', type : 'string',
116 description : 'the numeric GID of the "tty" group',
117 value : '5')
118option('adm-group', type : 'boolean',
119 description : 'the ACL for adm group should be added')
120option('wheel-group', type : 'boolean',
121 description : 'the ACL for wheel group should be added')
122option('nobody-user', type : 'string',
123 description : 'The name of the nobody user (the one with UID 65534)',
124 value : 'nobody')
125option('nobody-group', type : 'string',
126 description : 'The name of the nobody group (the one with GID 65534)',
127 value : 'nobody')
128option('dev-kvm-mode', type : 'string', value : '0660',
129 description : '/dev/kvm access mode')
130option('default-kill-user-processes', type : 'boolean',
131 description : 'the default value for KillUserProcesses= setting')
132
133option('default-dnssec', type : 'combo',
134 description : 'default DNSSEC mode',
135 choices : ['yes', 'allow-downgrade', 'no'],
136 value : 'allow-downgrade')
137option('dns-servers', type : 'string',
138 description : 'space-separated list of default DNS servers',
139 value : '8.8.8.8 8.8.4.4 2001:4860:4860::8888 2001:4860:4860::8844')
140option('ntp-servers', type : 'string',
141 description : 'space-separated list of default NTP servers',
142 value : 'time1.google.com time2.google.com time3.google.com time4.google.com')
143option('support-url', type : 'string',
144 description : 'the support URL to show in catalog entries included in systemd',
145 value : 'https://lists.freedesktop.org/mailman/listinfo/systemd-devel')
146
147option('seccomp', type : 'combo', choices : ['auto', 'yes', 'no'],
148 description : 'SECCOMP support')
149option('selinux', type : 'combo', choices : ['auto', 'yes', 'no'],
150 description : 'SELinux support')
151option('apparmor', type : 'combo', choices : ['auto', 'yes', 'no'],
152 description : 'AppArmor support')
153option('smack', type : 'combo', choices : ['auto', 'yes', 'no'],
154 description : 'SMACK support')
155option('smack-run-label', type : 'string',
156 description : 'run systemd --system itself with a specific SMACK label')
157
158option('audit', type : 'combo', choices : ['auto', 'yes', 'no'],
159 description : 'libaudit support')
160option('blkid', type : 'combo', choices : ['auto', 'yes', 'no'],
161 description : 'libblkid support')
162option('kmod', type : 'combo', choices : ['auto', 'yes', 'no'],
163 description : 'support for loadable modules')
164option('pam', type : 'combo', choices : ['auto', 'yes', 'no'],
165 description : 'PAM support')
166option('microhttpd', type : 'combo', choices : ['auto', 'yes', 'no'],
167 description : 'libµhttpd support')
168option('libcryptsetup', type : 'combo', choices : ['auto', 'yes', 'no'],
169 description : 'libcryptsetup support')
170option('libcurl', type : 'combo', choices : ['auto', 'yes', 'no'],
171 description : 'libcurl support')
172option('libidn', type : 'combo', choices : ['auto', 'yes', 'no'],
173 description : 'libidn support')
174option('libiptc', type : 'combo', choices : ['auto', 'yes', 'no'],
175 description : 'libiptc support')
176option('qrencode', type : 'combo', choices : ['auto', 'yes', 'no'],
177 description : 'libqrencode support')
178option('libgcrypt', type : 'combo', choices : ['auto', 'yes', 'no'],
179 description : 'libgcrypt support')
180option('gnutls', type : 'combo', choices : ['auto', 'yes', 'no'],
181 description : 'gnutls support')
182option('elfutils', type : 'combo', choices : ['auto', 'yes', 'no'],
183 description : 'elfutils support')
184option('zlib', type : 'combo', choices : ['auto', 'yes', 'no'],
185 description : 'zlib compression support')
186option('bzip2', type : 'combo', choices : ['auto', 'yes', 'no'],
187 description : 'bzip2 compression support')
188option('xz', type : 'combo', choices : ['auto', 'yes', 'no'],
189 description : 'xz compression support')
190option('lz4', type : 'combo', choices : ['auto', 'yes', 'no'],
191 description : 'lz4 compression support')
192
193option('bashcompletiondir', type : 'string',
194 description : 'directory for bash completion scripts ["no" disables]')
195option('zshcompletiondir', type : 'string',
196 description : 'directory for zsh completion scripts ["no" disables]')