blob: 9911afb0e7e9b229795153fe3ed9f0a0987889ae [file] [log] [blame]
Zbigniew Jędrzejewski-Szmek3a726fc2017-11-18 18:32:01 +01001# SPDX-License-Identifier: LGPL-2.1+
2#
3# Copyright 2017 Zbigniew Jędrzejewski-Szmek
4#
5# systemd is free software; you can redistribute it and/or modify it
6# under the terms of the GNU Lesser General Public License as published by
7# the Free Software Foundation; either version 2.1 of the License, or
8# (at your option) any later version.
9#
10# systemd is distributed in the hope that it will be useful, but
11# WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13# Lesser General Public License for more details.
14#
15# You should have received a copy of the GNU Lesser General Public License
16# along with systemd; If not, see <http://www.gnu.org/licenses/>.
17
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -040018project('systemd', 'c',
Lennart Poetteringcbd73c62017-12-11 16:10:25 +010019 version : '236',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -040020 license : 'LGPLv2+',
21 default_options: [
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -040022 'c_std=gnu99',
23 'prefix=/usr',
24 'sysconfdir=/etc',
25 'localstatedir=/var',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -040026 ],
Zbigniew Jędrzejewski-Szmek86ea8d72017-11-20 08:08:43 +010027 meson_version : '>= 0.41',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -040028 )
29
Lennart Poetteringcbd73c62017-12-11 16:10:25 +010030libsystemd_version = '0.20.0'
31libudev_version = '1.6.8'
Zbigniew Jędrzejewski-Szmek56d50ab2017-09-28 19:24:16 +020032
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -040033# We need the same data in three different formats, ugh!
34# Also, for hysterical reasons, we use different variable
35# names, sometimes. Not all variables are included in every
36# set. Ugh, ugh, ugh!
37conf = configuration_data()
38conf.set_quoted('PACKAGE_STRING', meson.project_name() + ' ' + meson.project_version())
39conf.set_quoted('PACKAGE_VERSION', meson.project_version())
40
41substs = configuration_data()
42substs.set('PACKAGE_URL', 'https://www.freedesktop.org/wiki/Software/systemd')
43substs.set('PACKAGE_VERSION', meson.project_version())
44
45m4_defines = []
46
47#####################################################################
48
Zbigniew Jędrzejewski-Szmek003c8872017-07-24 04:41:45 -040049# Try to install the git pre-commit hook
50git_hook = run_command(join_paths(meson.source_root(), 'tools/add-git-hook.sh'))
51if git_hook.returncode() == 0
52 message(git_hook.stdout().strip())
53endif
54
55#####################################################################
56
Zbigniew Jędrzejewski-Szmek9a8e64b2017-11-28 21:46:53 +010057split_usr = get_option('split-usr')
58conf.set10('HAVE_SPLIT_USR', split_usr)
59
Zbigniew Jędrzejewski-Szmek74344a12017-11-28 20:00:10 +010060rootprefixdir = get_option('rootprefix')
Zbigniew Jędrzejewski-Szmek74344a12017-11-28 20:00:10 +010061# Unusual rootprefixdir values are used by some distros
62# (see https://github.com/systemd/systemd/pull/7461).
Zbigniew Jędrzejewski-Szmek9a8e64b2017-11-28 21:46:53 +010063rootprefix_default = get_option('split-usr') ? '/' : '/usr'
64if rootprefixdir == ''
65 rootprefixdir = rootprefix_default
Zbigniew Jędrzejewski-Szmek74344a12017-11-28 20:00:10 +010066endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -040067
68sysvinit_path = get_option('sysvinit-path')
69sysvrcnd_path = get_option('sysvrcnd-path')
Max Harmathy54248242017-12-15 16:05:25 +010070have = sysvinit_path != '' and sysvrcnd_path != ''
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +020071conf.set10('HAVE_SYSV_COMPAT', have,
72 description : 'SysV init scripts and rcN.d links are supported')
73m4_defines += have ? ['-DHAVE_SYSV_COMPAT'] : []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -040074
75# join_paths ignore the preceding arguments if an absolute component is
76# encountered, so this should canonicalize various paths when they are
77# absolute or relative.
78prefixdir = get_option('prefix')
79if not prefixdir.startswith('/')
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -040080 error('Prefix is not absolute: "@0@"'.format(prefixdir))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -040081endif
82bindir = join_paths(prefixdir, get_option('bindir'))
83libdir = join_paths(prefixdir, get_option('libdir'))
84sysconfdir = join_paths(prefixdir, get_option('sysconfdir'))
85includedir = join_paths(prefixdir, get_option('includedir'))
86datadir = join_paths(prefixdir, get_option('datadir'))
87localstatedir = join_paths('/', get_option('localstatedir'))
88
89rootbindir = join_paths(rootprefixdir, 'bin')
90rootlibexecdir = join_paths(rootprefixdir, 'lib/systemd')
91
92rootlibdir = get_option('rootlibdir')
93if rootlibdir == ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -040094 rootlibdir = join_paths(rootprefixdir, libdir.split('/')[-1])
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -040095endif
96
97# Dirs of external packages
Michael Bieble17e5ba2017-04-13 10:30:56 -040098pkgconfigdatadir = join_paths(datadir, 'pkgconfig')
99pkgconfiglibdir = join_paths(libdir, 'pkgconfig')
100polkitpolicydir = join_paths(datadir, 'polkit-1/actions')
101polkitrulesdir = join_paths(datadir, 'polkit-1/rules.d')
102polkitpkladir = join_paths(localstatedir, 'lib/polkit-1/localauthority/10-vendor.d')
103varlogdir = join_paths(localstatedir, 'log')
104xinitrcdir = join_paths(sysconfdir, 'X11/xinit/xinitrc.d')
Yu Watanabe8a38aac2017-11-23 22:20:22 +0900105rpmmacrosdir = get_option('rpmmacrosdir')
106if rpmmacrosdir != 'no'
107 rpmmacrosdir = join_paths(prefixdir, rpmmacrosdir)
108endif
Michael Biebl02fa0542017-10-21 08:32:50 +0200109modprobedir = join_paths(rootprefixdir, 'lib/modprobe.d')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400110
111# Our own paths
Michael Bieble17e5ba2017-04-13 10:30:56 -0400112pkgdatadir = join_paths(datadir, 'systemd')
113environmentdir = join_paths(prefixdir, 'lib/environment.d')
114pkgsysconfdir = join_paths(sysconfdir, 'systemd')
115userunitdir = join_paths(prefixdir, 'lib/systemd/user')
116userpresetdir = join_paths(prefixdir, 'lib/systemd/user-preset')
117tmpfilesdir = join_paths(prefixdir, 'lib/tmpfiles.d')
118sysusersdir = join_paths(prefixdir, 'lib/sysusers.d')
119sysctldir = join_paths(prefixdir, 'lib/sysctl.d')
120binfmtdir = join_paths(prefixdir, 'lib/binfmt.d')
121modulesloaddir = join_paths(prefixdir, 'lib/modules-load.d')
122networkdir = join_paths(rootprefixdir, 'lib/systemd/network')
123pkgincludedir = join_paths(includedir, 'systemd')
124systemgeneratordir = join_paths(rootlibexecdir, 'system-generators')
125usergeneratordir = join_paths(prefixdir, 'lib/systemd/user-generators')
126systemenvgeneratordir = join_paths(prefixdir, 'lib/systemd/system-environment-generators')
127userenvgeneratordir = join_paths(prefixdir, 'lib/systemd/user-environment-generators')
128systemshutdowndir = join_paths(rootlibexecdir, 'system-shutdown')
129systemsleepdir = join_paths(rootlibexecdir, 'system-sleep')
130systemunitdir = join_paths(rootprefixdir, 'lib/systemd/system')
131systempresetdir = join_paths(rootprefixdir, 'lib/systemd/system-preset')
132udevlibexecdir = join_paths(rootprefixdir, 'lib/udev')
133udevhomedir = udevlibexecdir
134udevrulesdir = join_paths(udevlibexecdir, 'rules.d')
135udevhwdbdir = join_paths(udevlibexecdir, 'hwdb.d')
136catalogdir = join_paths(prefixdir, 'lib/systemd/catalog')
137kernelinstalldir = join_paths(prefixdir, 'lib/kernel/install.d')
138factorydir = join_paths(datadir, 'factory')
139docdir = join_paths(datadir, 'doc/systemd')
140bootlibdir = join_paths(prefixdir, 'lib/systemd/boot/efi')
141testsdir = join_paths(prefixdir, 'lib/systemd/tests')
142systemdstatedir = join_paths(localstatedir, 'lib/systemd')
143catalogstatedir = join_paths(systemdstatedir, 'catalog')
144randomseeddir = join_paths(localstatedir, 'lib/systemd')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400145
146dbuspolicydir = get_option('dbuspolicydir')
147if dbuspolicydir == ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400148 dbuspolicydir = join_paths(datadir, 'dbus-1/system.d')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400149endif
150
151dbussessionservicedir = get_option('dbussessionservicedir')
152if dbussessionservicedir == ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400153 dbussessionservicedir = join_paths(datadir, 'dbus-1/services')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400154endif
155
156dbussystemservicedir = get_option('dbussystemservicedir')
157if dbussystemservicedir == ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400158 dbussystemservicedir = join_paths(datadir, 'dbus-1/system-services')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400159endif
160
161pamlibdir = get_option('pamlibdir')
162if pamlibdir == ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400163 pamlibdir = join_paths(rootlibdir, 'security')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400164endif
165
166pamconfdir = get_option('pamconfdir')
167if pamconfdir == ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400168 pamconfdir = join_paths(sysconfdir, 'pam.d')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400169endif
170
171conf.set_quoted('PKGSYSCONFDIR', pkgsysconfdir)
Michael Bieble17e5ba2017-04-13 10:30:56 -0400172conf.set_quoted('SYSTEM_CONFIG_UNIT_PATH', join_paths(pkgsysconfdir, 'system'))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400173conf.set_quoted('SYSTEM_DATA_UNIT_PATH', systemunitdir)
174conf.set_quoted('SYSTEM_SYSVINIT_PATH', sysvinit_path)
175conf.set_quoted('SYSTEM_SYSVRCND_PATH', sysvrcnd_path)
Zbigniew Jędrzejewski-Szmek2a4c1562017-04-12 19:54:33 -0400176conf.set_quoted('RC_LOCAL_SCRIPT_PATH_START', get_option('rc-local'))
177conf.set_quoted('RC_LOCAL_SCRIPT_PATH_STOP', get_option('halt-local'))
Michael Bieble17e5ba2017-04-13 10:30:56 -0400178conf.set_quoted('USER_CONFIG_UNIT_PATH', join_paths(pkgsysconfdir, 'user'))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400179conf.set_quoted('USER_DATA_UNIT_PATH', userunitdir)
180conf.set_quoted('CERTIFICATE_ROOT', get_option('certificate-root'))
Michael Bieble17e5ba2017-04-13 10:30:56 -0400181conf.set_quoted('CATALOG_DATABASE', join_paths(catalogstatedir, 'database'))
182conf.set_quoted('SYSTEMD_CGROUP_AGENT_PATH', join_paths(rootlibexecdir, 'systemd-cgroups-agent'))
183conf.set_quoted('SYSTEMD_BINARY_PATH', join_paths(rootlibexecdir, 'systemd'))
184conf.set_quoted('SYSTEMD_FSCK_PATH', join_paths(rootlibexecdir, 'systemd-fsck'))
Zbigniew Jędrzejewski-Szmekda495a02017-11-21 23:18:05 +0100185conf.set_quoted('SYSTEMD_MAKEFS_PATH', join_paths(rootlibexecdir, 'systemd-makefs'))
Zbigniew Jędrzejewski-Szmek7f2806d2017-11-29 20:02:11 +0100186conf.set_quoted('SYSTEMD_GROWFS_PATH', join_paths(rootlibexecdir, 'systemd-growfs'))
Michael Bieble17e5ba2017-04-13 10:30:56 -0400187conf.set_quoted('SYSTEMD_SHUTDOWN_BINARY_PATH', join_paths(rootlibexecdir, 'systemd-shutdown'))
188conf.set_quoted('SYSTEMD_SLEEP_BINARY_PATH', join_paths(rootlibexecdir, 'systemd-sleep'))
189conf.set_quoted('SYSTEMCTL_BINARY_PATH', join_paths(rootbindir, 'systemctl'))
190conf.set_quoted('SYSTEMD_TTY_ASK_PASSWORD_AGENT_BINARY_PATH', join_paths(rootbindir, 'systemd-tty-ask-password-agent'))
191conf.set_quoted('SYSTEMD_STDIO_BRIDGE_BINARY_PATH', join_paths(bindir, 'systemd-stdio-bridge'))
Zbigniew Jędrzejewski-Szmek74344a12017-11-28 20:00:10 +0100192conf.set_quoted('ROOTPREFIX', rootprefixdir)
Zbigniew Jędrzejewski-Szmek3131bfe2017-04-10 19:06:45 -0400193conf.set_quoted('RANDOM_SEED_DIR', randomseeddir)
Michael Bieble17e5ba2017-04-13 10:30:56 -0400194conf.set_quoted('RANDOM_SEED', join_paths(randomseeddir, 'random-seed'))
195conf.set_quoted('SYSTEMD_CRYPTSETUP_PATH', join_paths(rootlibexecdir, 'systemd-cryptsetup'))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400196conf.set_quoted('SYSTEM_GENERATOR_PATH', systemgeneratordir)
197conf.set_quoted('USER_GENERATOR_PATH', usergeneratordir)
198conf.set_quoted('SYSTEM_ENV_GENERATOR_PATH', systemenvgeneratordir)
199conf.set_quoted('USER_ENV_GENERATOR_PATH', userenvgeneratordir)
200conf.set_quoted('SYSTEM_SHUTDOWN_PATH', systemshutdowndir)
201conf.set_quoted('SYSTEM_SLEEP_PATH', systemsleepdir)
Michael Bieble17e5ba2017-04-13 10:30:56 -0400202conf.set_quoted('SYSTEMD_KBD_MODEL_MAP', join_paths(pkgdatadir, 'kbd-model-map'))
203conf.set_quoted('SYSTEMD_LANGUAGE_FALLBACK_MAP', join_paths(pkgdatadir, 'language-fallback-map'))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400204conf.set_quoted('UDEVLIBEXECDIR', udevlibexecdir)
Michael Bieble17e5ba2017-04-13 10:30:56 -0400205conf.set_quoted('POLKIT_AGENT_BINARY_PATH', join_paths(bindir, 'pkttyagent'))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400206conf.set_quoted('LIBDIR', libdir)
207conf.set_quoted('ROOTLIBDIR', rootlibdir)
208conf.set_quoted('ROOTLIBEXECDIR', rootlibexecdir)
209conf.set_quoted('BOOTLIBDIR', bootlibdir)
Michael Bieble17e5ba2017-04-13 10:30:56 -0400210conf.set_quoted('SYSTEMD_PULL_PATH', join_paths(rootlibexecdir, 'systemd-pull'))
211conf.set_quoted('SYSTEMD_IMPORT_PATH', join_paths(rootlibexecdir, 'systemd-import'))
212conf.set_quoted('SYSTEMD_EXPORT_PATH', join_paths(rootlibexecdir, 'systemd-export'))
213conf.set_quoted('VENDOR_KEYRING_PATH', join_paths(rootlibexecdir, 'import-pubring.gpg'))
214conf.set_quoted('USER_KEYRING_PATH', join_paths(pkgsysconfdir, 'import-pubring.gpg'))
215conf.set_quoted('DOCUMENT_ROOT', join_paths(pkgdatadir, 'gatewayd'))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400216
217conf.set_quoted('ABS_BUILD_DIR', meson.build_root())
218conf.set_quoted('ABS_SRC_DIR', meson.source_root())
219
220substs.set('prefix', prefixdir)
Zbigniew Jędrzejewski-Szmek3131bfe2017-04-10 19:06:45 -0400221substs.set('exec_prefix', prefixdir)
222substs.set('libdir', libdir)
223substs.set('rootlibdir', rootlibdir)
224substs.set('includedir', includedir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400225substs.set('pkgsysconfdir', pkgsysconfdir)
Zbigniew Jędrzejewski-Szmek3131bfe2017-04-10 19:06:45 -0400226substs.set('bindir', bindir)
227substs.set('rootbindir', rootbindir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400228substs.set('rootlibexecdir', rootlibexecdir)
229substs.set('systemunitdir', systemunitdir)
230substs.set('userunitdir', userunitdir)
231substs.set('systempresetdir', systempresetdir)
232substs.set('userpresetdir', userpresetdir)
233substs.set('udevhwdbdir', udevhwdbdir)
234substs.set('udevrulesdir', udevrulesdir)
Zbigniew Jędrzejewski-Szmek3131bfe2017-04-10 19:06:45 -0400235substs.set('udevlibexecdir', udevlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400236substs.set('catalogdir', catalogdir)
237substs.set('tmpfilesdir', tmpfilesdir)
238substs.set('sysusersdir', sysusersdir)
239substs.set('sysctldir', sysctldir)
240substs.set('binfmtdir', binfmtdir)
241substs.set('modulesloaddir', modulesloaddir)
242substs.set('systemgeneratordir', systemgeneratordir)
243substs.set('usergeneratordir', usergeneratordir)
244substs.set('systemenvgeneratordir', systemenvgeneratordir)
245substs.set('userenvgeneratordir', userenvgeneratordir)
246substs.set('systemshutdowndir', systemshutdowndir)
247substs.set('systemsleepdir', systemsleepdir)
Zbigniew Jędrzejewski-Szmek2a4c1562017-04-12 19:54:33 -0400248substs.set('VARLOGDIR', varlogdir)
249substs.set('CERTIFICATEROOT', get_option('certificate-root'))
Michael Bieble17e5ba2017-04-13 10:30:56 -0400250substs.set('SYSTEMCTL', join_paths(rootbindir, 'systemctl'))
251substs.set('RANDOM_SEED', join_paths(randomseeddir, 'random-seed'))
Zbigniew Jędrzejewski-Szmek2a4c1562017-04-12 19:54:33 -0400252substs.set('SYSTEM_SYSVINIT_PATH', sysvinit_path)
253substs.set('SYSTEM_SYSVRCND_PATH', sysvrcnd_path)
254substs.set('RC_LOCAL_SCRIPT_PATH_START', get_option('rc-local'))
255substs.set('RC_LOCAL_SCRIPT_PATH_STOP', get_option('halt-local'))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400256
257#####################################################################
258
259cc = meson.get_compiler('c')
260pkgconfig = import('pkgconfig')
Zbigniew Jędrzejewski-Szmek6e2afb12017-04-24 21:03:35 -0400261check_compilation_sh = find_program('tools/meson-check-compilation.sh')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400262
Zbigniew Jędrzejewski-Szmek94e25232017-05-13 13:23:28 -0400263cxx = find_program('c++', required : false)
264if cxx.found()
265 # Used only for tests
266 add_languages('cpp')
267endif
268
Zbigniew Jędrzejewski-Szmek75cf1d62017-07-04 17:59:15 -0400269foreach arg : ['-Wextra',
Zbigniew Jędrzejewski-Szmek70160ce2017-10-03 12:11:49 +0200270 '-Werror=undef',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400271 '-Wlogical-op',
272 '-Wmissing-include-dirs',
273 '-Wold-style-definition',
274 '-Wpointer-arith',
275 '-Winit-self',
276 '-Wdeclaration-after-statement',
277 '-Wfloat-equal',
278 '-Wsuggest-attribute=noreturn',
279 '-Werror=missing-prototypes',
280 '-Werror=implicit-function-declaration',
281 '-Werror=missing-declarations',
282 '-Werror=return-type',
283 '-Werror=incompatible-pointer-types',
284 '-Werror=format=2',
285 '-Wstrict-prototypes',
286 '-Wredundant-decls',
287 '-Wmissing-noreturn',
Zbigniew Jędrzejewski-Szmek97279d82017-11-20 14:23:40 +0100288 '-Wimplicit-fallthrough=5',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400289 '-Wshadow',
290 '-Wendif-labels',
291 '-Wstrict-aliasing=2',
292 '-Wwrite-strings',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400293 '-Werror=overflow',
294 '-Wdate-time',
295 '-Wnested-externs',
296 '-ffast-math',
297 '-fno-common',
298 '-fdiagnostics-show-option',
299 '-fno-strict-aliasing',
300 '-fvisibility=hidden',
301 '-fstack-protector',
302 '-fstack-protector-strong',
303 '-fPIE',
304 '--param=ssp-buffer-size=4',
305 ]
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400306 if cc.has_argument(arg)
307 add_project_arguments(arg, language : 'c')
308 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400309endforeach
310
Zbigniew Jędrzejewski-Szmek2c5434a2017-04-27 10:05:41 -0400311# "negative" arguments: gcc on purpose does not return an error for "-Wno-"
312# arguments, just emits a warnings. So test for the "positive" version instead.
313foreach arg : ['unused-parameter',
314 'missing-field-initializers',
315 'unused-result',
Zbigniew Jędrzejewski-Szmekfb1b5882017-09-04 19:49:12 +0300316 'format-signedness',
317 'error=nonnull', # work-around for gcc 7.1 turning this on on its own
318 ]
Zbigniew Jędrzejewski-Szmek2c5434a2017-04-27 10:05:41 -0400319 if cc.has_argument('-W' + arg)
320 add_project_arguments('-Wno-' + arg, language : 'c')
321 endif
322endforeach
323
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400324if cc.compiles('
325 #include <time.h>
326 #include <inttypes.h>
327 typedef uint64_t usec_t;
328 usec_t now(clockid_t clock);
329 int main(void) {
330 struct timespec now;
331 return 0;
332 }
Zbigniew Jędrzejewski-Szmek7572aa82017-04-24 21:46:40 -0400333', name : '-Werror=shadow with local shadowing')
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400334 add_project_arguments('-Werror=shadow', language : 'c')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400335endif
336
337if cc.get_id() == 'clang'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400338 foreach arg : ['-Wno-typedef-redefinition',
339 '-Wno-gnu-variable-sized-type-not-at-end',
340 ]
Zbigniew Jędrzejewski-Szmek7572aa82017-04-24 21:46:40 -0400341 if cc.has_argument(arg,
342 name : '@0@ is supported'.format(arg))
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400343 add_project_arguments(arg, language : 'c')
344 endif
345 endforeach
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400346endif
347
Zbigniew Jędrzejewski-Szmek6e2afb12017-04-24 21:03:35 -0400348link_test_c = files('tools/meson-link-test.c')
349
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400350# --as-needed and --no-undefined are provided by meson by default,
351# run mesonconf to see what is enabled
352foreach arg : ['-Wl,-z,relro',
353 '-Wl,-z,now',
354 '-pie',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400355 ]
Zbigniew Jędrzejewski-Szmek6e2afb12017-04-24 21:03:35 -0400356
357 have = run_command(check_compilation_sh,
358 cc.cmd_array(), '-x', 'c', arg,
359 '-include', link_test_c).returncode() == 0
360 message('Linking with @0@ supported: @1@'.format(arg, have ? 'yes' : 'no'))
361 if have
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400362 add_project_link_arguments(arg, language : 'c')
363 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400364endforeach
365
Zbigniew Jędrzejewski-Szmek41afb5e2017-04-24 19:28:04 -0400366if get_option('buildtype') != 'debug'
367 foreach arg : ['-ffunction-sections',
368 '-fdata-sections']
Zbigniew Jędrzejewski-Szmek7572aa82017-04-24 21:46:40 -0400369 if cc.has_argument(arg,
370 name : '@0@ is supported'.format(arg))
Zbigniew Jędrzejewski-Szmek41afb5e2017-04-24 19:28:04 -0400371 add_project_arguments(arg, language : 'c')
372 endif
373 endforeach
374
375 foreach arg : ['-Wl,--gc-sections']
Zbigniew Jędrzejewski-Szmek6e2afb12017-04-24 21:03:35 -0400376 have = run_command(check_compilation_sh,
377 cc.cmd_array(), '-x', 'c', arg,
378 '-include', link_test_c).returncode() == 0
379 message('Linking with @0@ supported: @1@'.format(arg, have ? 'yes' : 'no'))
380 if have
Zbigniew Jędrzejewski-Szmek41afb5e2017-04-24 19:28:04 -0400381 add_project_link_arguments(arg, language : 'c')
382 endif
383 endforeach
384endif
385
Zbigniew Jędrzejewski-Szmek9cc0e6e2017-04-11 10:25:34 -0400386cpp = ' '.join(cc.cmd_array()) + ' -E'
387
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400388#####################################################################
389# compilation result tests
390
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400391conf.set('_GNU_SOURCE', true)
392conf.set('__SANE_USERSPACE_TYPES__', true)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400393
394conf.set('SIZEOF_PID_T', cc.sizeof('pid_t', prefix : '#include <sys/types.h>'))
395conf.set('SIZEOF_UID_T', cc.sizeof('uid_t', prefix : '#include <sys/types.h>'))
396conf.set('SIZEOF_GID_T', cc.sizeof('gid_t', prefix : '#include <sys/types.h>'))
397conf.set('SIZEOF_DEV_T', cc.sizeof('dev_t', prefix : '#include <sys/types.h>'))
398conf.set('SIZEOF_INO_T', cc.sizeof('ino_t', prefix : '#include <sys/types.h>'))
399conf.set('SIZEOF_TIME_T', cc.sizeof('time_t', prefix : '#include <sys/time.h>'))
400conf.set('SIZEOF_RLIM_T', cc.sizeof('rlim_t', prefix : '#include <sys/resource.h>'))
401
402decl_headers = '''
403#include <uchar.h>
404#include <linux/ethtool.h>
Susant Sahanibce67bb2017-09-14 19:51:39 +0000405#include <linux/fib_rules.h>
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400406'''
407# FIXME: key_serial_t is only defined in keyutils.h, this is bound to fail
408
409foreach decl : ['char16_t',
410 'char32_t',
411 'key_serial_t',
412 'struct ethtool_link_settings',
Susant Sahanibce67bb2017-09-14 19:51:39 +0000413 'struct fib_rule_uid_range',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400414 ]
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400415
416 # We get -1 if the size cannot be determined
417 have = cc.sizeof(decl, prefix : decl_headers) > 0
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200418 conf.set10('HAVE_' + decl.underscorify().to_upper(), have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400419endforeach
420
421foreach decl : [['IFLA_INET6_ADDR_GEN_MODE', 'linux/if_link.h'],
422 ['IN6_ADDR_GEN_MODE_STABLE_PRIVACY', 'linux/if_link.h'],
423 ['IFLA_VRF_TABLE', 'linux/if_link.h'],
424 ['IFLA_MACVLAN_FLAGS', 'linux/if_link.h'],
Susant Sahanid3848262017-12-23 23:25:03 +0530425 ['IFLA_IPVLAN_FLAGS', 'linux/if_link.h'],
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400426 ['IFLA_PHYS_PORT_ID', 'linux/if_link.h'],
427 ['IFLA_BOND_AD_INFO', 'linux/if_link.h'],
428 ['IFLA_VLAN_PROTOCOL', 'linux/if_link.h'],
429 ['IFLA_VXLAN_REMCSUM_NOPARTIAL', 'linux/if_link.h'],
430 ['IFLA_VXLAN_GPE', 'linux/if_link.h'],
Susant Sahani9dfed8d2017-04-25 20:30:34 +0530431 ['IFLA_GENEVE_LABEL', 'linux/if_link.h'],
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400432 # if_tunnel.h is buggy and cannot be included on its own
433 ['IFLA_VTI_REMOTE', 'linux/if_tunnel.h', '#include <net/if.h>'],
434 ['IFLA_IPTUN_ENCAP_DPORT', 'linux/if_tunnel.h', '#include <net/if.h>'],
435 ['IFLA_GRE_ENCAP_DPORT', 'linux/if_tunnel.h', '#include <net/if.h>'],
436 ['IFLA_BRIDGE_VLAN_INFO', 'linux/if_bridge.h'],
437 ['IFLA_BRPORT_PROXYARP', 'linux/if_link.h'],
438 ['IFLA_BRPORT_LEARNING_SYNC', 'linux/if_link.h'],
439 ['IFLA_BR_VLAN_DEFAULT_PVID', 'linux/if_link.h'],
Susant Sahanid3848262017-12-23 23:25:03 +0530440 ['IPVLAN_F_PRIVATE', 'linux/if_link.h'],
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400441 ['NDA_IFINDEX', 'linux/neighbour.h'],
442 ['IFA_FLAGS', 'linux/if_addr.h'],
Susant Sahanibce67bb2017-09-14 19:51:39 +0000443 ['FRA_UID_RANGE', 'linux/fib_rules.h'],
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400444 ['LO_FLAGS_PARTSCAN', 'linux/loop.h'],
Susant Sahanid6df5832017-11-22 12:53:22 +0530445 ['VXCAN_INFO_PEER', 'linux/can/vxcan.h'],
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400446 ]
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400447 prefix = decl.length() > 2 ? decl[2] : ''
448 have = cc.has_header_symbol(decl[1], decl[0], prefix : prefix)
Zbigniew Jędrzejewski-Szmek4b9545f2017-10-03 10:32:34 +0200449 conf.set10('HAVE_' + decl[0], have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400450endforeach
451
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400452foreach ident : ['secure_getenv', '__secure_getenv']
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200453 conf.set10('HAVE_' + ident.to_upper(), cc.has_function(ident))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400454endforeach
455
456foreach ident : [
Lennart Poettering85db59b2017-12-25 12:01:14 +0100457 ['memfd_create', '''#include <sys/mman.h>'''],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400458 ['gettid', '''#include <sys/types.h>'''],
Lennart Poettering3c042ad2017-12-25 12:07:40 +0100459 ['pivot_root', '''#include <stdlib.h>
460 #include <unistd.h>'''], # no known header declares pivot_root
Lennart Poettering85db59b2017-12-25 12:01:14 +0100461 ['name_to_handle_at', '''#include <sys/types.h>
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400462 #include <sys/stat.h>
463 #include <fcntl.h>'''],
Lennart Poettering85db59b2017-12-25 12:01:14 +0100464 ['setns', '''#include <sched.h>'''],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400465 ['renameat2', '''#include <stdio.h>'''],
466 ['kcmp', '''#include <linux/kcmp.h>'''],
467 ['keyctl', '''#include <sys/types.h>
468 #include <keyutils.h>'''],
Lennart Poettering85db59b2017-12-25 12:01:14 +0100469 ['copy_file_range', '''#include <sys/syscall.h>
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400470 #include <unistd.h>'''],
Daniel Mack71e52002016-10-18 17:57:10 +0200471 ['bpf', '''#include <sys/syscall.h>
472 #include <unistd.h>'''],
Zbigniew Jędrzejewski-Szmek38f1ae02017-04-19 16:14:16 -0400473 ['explicit_bzero' , '''#include <string.h>'''],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400474]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400475
Lennart Poettering85db59b2017-12-25 12:01:14 +0100476 have = cc.has_function(ident[0], prefix : ident[1], args : '-D_GNU_SOURCE')
Zbigniew Jędrzejewski-Szmek4b9545f2017-10-03 10:32:34 +0200477 conf.set10('HAVE_' + ident[0].to_upper(), have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400478endforeach
479
Lennart Poettering85db59b2017-12-25 12:01:14 +0100480if cc.has_function('getrandom', prefix : '''#include <sys/random.h>''', args : '-D_GNU_SOURCE')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200481 conf.set10('USE_SYS_RANDOM_H', true)
Zbigniew Jędrzejewski-Szmek4b9545f2017-10-03 10:32:34 +0200482 conf.set10('HAVE_GETRANDOM', true)
Zbigniew Jędrzejewski-Szmek4984c8b2017-04-19 21:20:54 -0400483else
484 have = cc.has_function('getrandom', prefix : '''#include <linux/random.h>''')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200485 conf.set10('USE_SYS_RANDOM_H', false)
Zbigniew Jędrzejewski-Szmek4b9545f2017-10-03 10:32:34 +0200486 conf.set10('HAVE_GETRANDOM', have)
Zbigniew Jędrzejewski-Szmek4984c8b2017-04-19 21:20:54 -0400487endif
488
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400489#####################################################################
490
491sed = find_program('sed')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400492awk = find_program('awk')
Zbigniew Jędrzejewski-Szmekd730e2d2017-04-25 08:49:58 -0400493m4 = find_program('m4')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400494stat = find_program('stat')
Zbigniew Jędrzejewski-Szmekd68b3422017-04-06 14:33:27 -0400495git = find_program('git', required : false)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400496
Zbigniew Jędrzejewski-Szmek7b76fce2017-04-09 23:55:50 -0400497meson_make_symlink = meson.source_root() + '/tools/meson-make-symlink.sh'
Zbigniew Jędrzejewski-Szmek94e75a52017-04-09 23:55:05 -0400498mkdir_p = 'mkdir -p $DESTDIR/@0@'
Zbigniew Jędrzejewski-Szmekd83f4f52017-04-16 12:04:46 -0400499test_efi_create_disk_sh = find_program('test/test-efi-create-disk.sh')
500splash_bmp = files('test/splash.bmp')
Zbigniew Jędrzejewski-Szmek94e75a52017-04-09 23:55:05 -0400501
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400502# if -Dxxx-path option is found, use that. Otherwise, check in $PATH,
503# /usr/sbin, /sbin, and fall back to the default from middle column.
504progs = [['telinit', '/lib/sysvinit/telinit'],
505 ['quotaon', '/usr/sbin/quotaon' ],
506 ['quotacheck', '/usr/sbin/quotacheck' ],
507 ['kill', '/usr/bin/kill' ],
508 ['kmod', '/usr/bin/kmod' ],
509 ['kexec', '/usr/sbin/kexec' ],
510 ['sulogin', '/usr/sbin/sulogin' ],
511 ['mount', '/usr/bin/mount', 'MOUNT_PATH'],
512 ['umount', '/usr/bin/umount', 'UMOUNT_PATH'],
513 ['loadkeys', '/usr/bin/loadkeys', 'KBD_LOADKEYS'],
514 ['setfont', '/usr/bin/setfont', 'KBD_SETFONT'],
515 ]
516foreach prog : progs
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400517 path = get_option(prog[0] + '-path')
518 if path != ''
519 message('Using @1@ for @0@'.format(prog[0], path))
520 else
521 exe = find_program(prog[0],
522 '/usr/sbin/' + prog[0],
523 '/sbin/' + prog[0],
524 required: false)
525 path = exe.found() ? exe.path() : prog[1]
526 endif
527 name = prog.length() > 2 ? prog[2] : prog[0].to_upper()
528 conf.set_quoted(name, path)
529 substs.set(name, path)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400530endforeach
531
Zbigniew Jędrzejewski-Szmek1276a9f2017-04-18 19:11:54 -0400532if run_command('ln', '--relative', '--help').returncode() != 0
533 error('ln does not support --relative')
534endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400535
536############################################################
537
538gperf = find_program('gperf')
539
540gperf_test_format = '''
541#include <string.h>
542const char * in_word_set(const char *, @0@);
543@1@
544'''
545gperf_snippet_format = 'echo foo,bar | @0@ -L ANSI-C'
546gperf_snippet = run_command('sh', '-c', gperf_snippet_format.format(gperf.path()))
547gperf_test = gperf_test_format.format('size_t', gperf_snippet.stdout())
548if cc.compiles(gperf_test)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400549 gperf_len_type = 'size_t'
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400550else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400551 gperf_test = gperf_test_format.format('unsigned', gperf_snippet.stdout())
552 if cc.compiles(gperf_test)
553 gperf_len_type = 'unsigned'
554 else
555 error('unable to determine gperf len type')
556 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400557endif
558message('gperf len type is @0@'.format(gperf_len_type))
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400559conf.set('GPERF_LEN_TYPE', gperf_len_type,
560 description : 'The type of gperf "len" parameter')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400561
562############################################################
563
564if not cc.has_header('sys/capability.h')
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400565 error('POSIX caps headers not found')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400566endif
567foreach header : ['linux/btrfs.h',
568 'linux/memfd.h',
569 'linux/vm_sockets.h',
Zbigniew Jędrzejewski-Szmekaf8786b2017-10-03 12:09:40 +0200570 'sys/auxv.h',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400571 'valgrind/memcheck.h',
572 'valgrind/valgrind.h',
573 ]
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400574
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200575 conf.set10('HAVE_' + header.underscorify().to_upper(),
576 cc.has_header(header))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400577endforeach
578
579############################################################
580
581conf.set_quoted('FALLBACK_HOSTNAME', get_option('fallback-hostname'))
Zbigniew Jędrzejewski-Szmek5248e7e2017-07-11 02:15:08 -0400582conf.set10('ENABLE_COMPAT_GATEWAY_HOSTNAME', get_option('compat-gateway-hostname'))
583gateway_hostnames = ['_gateway'] + (conf.get('ENABLE_COMPAT_GATEWAY_HOSTNAME') == 1 ? ['gateway'] : [])
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400584
585default_hierarchy = get_option('default-hierarchy')
586conf.set_quoted('DEFAULT_HIERARCHY_NAME', default_hierarchy,
587 description : 'default cgroup hierarchy as string')
588if default_hierarchy == 'legacy'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400589 conf.set('DEFAULT_HIERARCHY', 'CGROUP_UNIFIED_NONE')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400590elif default_hierarchy == 'hybrid'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400591 conf.set('DEFAULT_HIERARCHY', 'CGROUP_UNIFIED_SYSTEMD')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400592else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400593 conf.set('DEFAULT_HIERARCHY', 'CGROUP_UNIFIED_ALL')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400594endif
595
596time_epoch = get_option('time-epoch')
597if time_epoch == ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400598 NEWS = files('NEWS')
599 time_epoch = run_command(stat, '-c', '%Y', NEWS).stdout()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400600endif
601time_epoch = time_epoch.to_int()
602conf.set('TIME_EPOCH', time_epoch)
603
604system_uid_max = get_option('system-uid-max')
605if system_uid_max == ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400606 system_uid_max = run_command(
607 awk,
608 'BEGIN { uid=999 } /^\s*SYS_UID_MAX\s+/ { uid=$2 } END { print uid }',
609 '/etc/login.defs').stdout()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400610endif
611system_uid_max = system_uid_max.to_int()
612conf.set('SYSTEM_UID_MAX', system_uid_max)
613substs.set('systemuidmax', system_uid_max)
Zbigniew Jędrzejewski-Szmek7572aa82017-04-24 21:46:40 -0400614message('maximum system UID is @0@'.format(system_uid_max))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400615
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400616system_gid_max = get_option('system-gid-max')
617if system_gid_max == ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400618 system_gid_max = run_command(
619 awk,
620 'BEGIN { gid=999 } /^\s*SYS_GID_MAX\s+/ { gid=$2 } END { print gid }',
621 '/etc/login.defs').stdout()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400622endif
623system_gid_max = system_gid_max.to_int()
624conf.set('SYSTEM_GID_MAX', system_gid_max)
625substs.set('systemgidmax', system_gid_max)
Zbigniew Jędrzejewski-Szmek7572aa82017-04-24 21:46:40 -0400626message('maximum system GID is @0@'.format(system_gid_max))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400627
Lennart Poettering87d5e4f2017-12-02 12:48:31 +0100628dynamic_uid_min = get_option('dynamic-uid-min').to_int()
629dynamic_uid_max = get_option('dynamic-uid-max').to_int()
630conf.set('DYNAMIC_UID_MIN', dynamic_uid_min)
631conf.set('DYNAMIC_UID_MAX', dynamic_uid_max)
632substs.set('dynamicuidmin', dynamic_uid_min)
633substs.set('dynamicuidmax', dynamic_uid_max)
634
635container_uid_base_min = get_option('container-uid-base-min').to_int()
636container_uid_base_max = get_option('container-uid-base-max').to_int()
637conf.set('CONTAINER_UID_BASE_MIN', container_uid_base_min)
638conf.set('CONTAINER_UID_BASE_MAX', container_uid_base_max)
639substs.set('containeruidbasemin', container_uid_base_min)
640substs.set('containeruidbasemax', container_uid_base_max)
641
Lennart Poetteringafde4572017-12-05 11:00:24 +0100642nobody_user = get_option('nobody-user')
643nobody_group = get_option('nobody-group')
644
645getent_result = run_command('getent', 'passwd', '65534')
646if getent_result.returncode() == 0
647 name = getent_result.stdout().split(':')[0]
648 if name != nobody_user
649 message('WARNING:\n' +
650 ' The local user with the UID 65534 does not match the configured user name "@0@" of the nobody user (its name is @1@).\n'.format(nobody_user, name) +
651 ' Your build will result in an user table setup that is incompatible with the local system.')
652 endif
653endif
654id_result = run_command('id', '-u', nobody_user)
655if id_result.returncode() == 0
656 id = id_result.stdout().to_int()
657 if id != 65534
658 message('WARNING:\n' +
659 ' The local user with the configured user name "@0@" of the nobody user does not have UID 65534 (it has @1@).\n'.format(nobody_user, id) +
660 ' Your build will result in an user table setup that is incompatible with the local system.')
661 endif
662endif
663
664getent_result = run_command('getent', 'group', '65534')
665if getent_result.returncode() == 0
666 name = getent_result.stdout().split(':')[0]
667 if name != nobody_group
668 message('WARNING:\n' +
669 ' The local group with the GID 65534 does not match the configured group name "@0@" of the nobody group (its name is @1@).\n'.format(nobody_group, name) +
670 ' Your build will result in an group table setup that is incompatible with the local system.')
671 endif
672endif
673id_result = run_command('id', '-g', nobody_group)
674if id_result.returncode() == 0
675 id = id_result.stdout().to_int()
676 if id != 65534
677 message('WARNING:\n' +
678 ' The local group with the configured group name "@0@" of the nobody group does not have UID 65534 (it has @1@).\n'.format(nobody_group, id) +
679 ' Your build will result in an group table setup that is incompatible with the local system.')
680 endif
681endif
Yu Watanabe8374cc62017-12-07 17:19:11 +0900682if nobody_user != nobody_group and not (nobody_user == 'nobody' and nobody_group == 'nogroup')
683 message('WARNING:\n' +
684 ' The configured user name "@0@" and group name "@0@" of the nobody user/group are not equivalent.\n'.format(nobody_user, nobody_group) +
685 ' Please re-check that both "nobody-user" and "nobody-group" options are correctly set.')
686endif
Lennart Poetteringafde4572017-12-05 11:00:24 +0100687
688conf.set_quoted('NOBODY_USER_NAME', nobody_user)
689conf.set_quoted('NOBODY_GROUP_NAME', nobody_group)
Yu Watanabe60712022017-12-07 15:49:16 +0900690substs.set('NOBODY_USER_NAME', nobody_user)
691substs.set('NOBODY_GROUP_NAME', nobody_group)
Lennart Poettering87d5e4f2017-12-02 12:48:31 +0100692
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400693tty_gid = get_option('tty-gid')
694conf.set('TTY_GID', tty_gid)
Zbigniew Jędrzejewski-Szmek2a4c1562017-04-12 19:54:33 -0400695substs.set('TTY_GID', tty_gid)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400696
Ikey Doherty84786b82017-12-03 12:28:23 +0000697# Ensure provided GID argument is numeric, otherwise fallback to default assignment
698if get_option('users-gid') != ''
Yu Watanabed6806872017-12-05 14:01:39 +0900699 users_gid = get_option('users-gid').to_int()
Ikey Doherty84786b82017-12-03 12:28:23 +0000700else
Yu Watanabed6806872017-12-05 14:01:39 +0900701 users_gid = '-'
Ikey Doherty84786b82017-12-03 12:28:23 +0000702endif
703substs.set('USERS_GID', users_gid)
704
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400705if get_option('adm-group')
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400706 m4_defines += ['-DENABLE_ADM_GROUP']
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400707endif
708
709if get_option('wheel-group')
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400710 m4_defines += ['-DENABLE_WHEEL_GROUP']
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400711endif
712
713substs.set('DEV_KVM_MODE', get_option('dev-kvm-mode'))
Tom Stellard4e15a732017-10-31 08:46:24 -0700714substs.set('GROUP_RENDER_MODE', get_option('group-render-mode'))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400715
Zbigniew Jędrzejewski-Szmek2a4c1562017-04-12 19:54:33 -0400716kill_user_processes = get_option('default-kill-user-processes')
717conf.set10('KILL_USER_PROCESSES', kill_user_processes)
718substs.set('KILL_USER_PROCESSES', kill_user_processes ? 'yes' : 'no')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400719
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -0400720dns_servers = get_option('dns-servers')
721conf.set_quoted('DNS_SERVERS', dns_servers)
722substs.set('DNS_SERVERS', dns_servers)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400723
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -0400724ntp_servers = get_option('ntp-servers')
725conf.set_quoted('NTP_SERVERS', ntp_servers)
726substs.set('NTP_SERVERS', ntp_servers)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400727
728conf.set_quoted('GETTEXT_PACKAGE', meson.project_name())
729
Zbigniew Jędrzejewski-Szmek3131bfe2017-04-10 19:06:45 -0400730substs.set('SUSHELL', get_option('debug-shell'))
731substs.set('DEBUGTTY', get_option('debug-tty'))
732
Zbigniew Jędrzejewski-Szmek671677d2017-04-27 20:51:34 -0400733debug = get_option('debug')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200734enable_debug_hashmap = false
735enable_debug_mmap_cache = false
Zbigniew Jędrzejewski-Szmek671677d2017-04-27 20:51:34 -0400736if debug != ''
737 foreach name : debug.split(',')
738 if name == 'hashmap'
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200739 enable_debug_hashmap = true
Zbigniew Jędrzejewski-Szmek671677d2017-04-27 20:51:34 -0400740 elif name == 'mmap-cache'
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200741 enable_debug_mmap_cache = true
Zbigniew Jędrzejewski-Szmek671677d2017-04-27 20:51:34 -0400742 else
743 message('unknown debug option "@0@", ignoring'.format(name))
744 endif
745 endforeach
746endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200747conf.set10('ENABLE_DEBUG_HASHMAP', enable_debug_hashmap)
748conf.set10('ENABLE_DEBUG_MMAP_CACHE', enable_debug_mmap_cache)
Zbigniew Jędrzejewski-Szmek671677d2017-04-27 20:51:34 -0400749
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400750#####################################################################
751
752threads = dependency('threads')
753librt = cc.find_library('rt')
754libm = cc.find_library('m')
755libdl = cc.find_library('dl')
756libcrypt = cc.find_library('crypt')
757
Zbigniew Jędrzejewski-Szmek1800cc82017-04-27 01:30:30 -0400758libcap = dependency('libcap', required : false)
759if not libcap.found()
760 # Compat with Ubuntu 14.04 which ships libcap w/o .pc file
761 libcap = cc.find_library('cap')
762endif
763
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400764libmount = dependency('mount',
Zbigniew Jędrzejewski-Szmekd6e80962017-09-15 14:47:57 +0200765 version : '>= 2.30')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400766
767want_seccomp = get_option('seccomp')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400768if want_seccomp != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400769 libseccomp = dependency('libseccomp',
Zbigniew Jędrzejewski-Szmek9f0e9c02017-04-27 10:05:18 -0400770 version : '>= 2.3.1',
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400771 required : want_seccomp == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200772 have = libseccomp.found()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400773else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200774 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400775 libseccomp = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400776endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200777conf.set10('HAVE_SECCOMP', have)
778m4_defines += have ? ['-DHAVE_SECCOMP'] : []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400779
780want_selinux = get_option('selinux')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400781if want_selinux != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400782 libselinux = dependency('libselinux',
783 version : '>= 2.1.9',
784 required : want_selinux == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200785 have = libselinux.found()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400786else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200787 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400788 libselinux = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400789endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200790conf.set10('HAVE_SELINUX', have)
791m4_defines += have ? ['-DHAVE_SELINUX'] : []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400792
793want_apparmor = get_option('apparmor')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400794if want_apparmor != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400795 libapparmor = dependency('libapparmor',
796 required : want_apparmor == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200797 have = libapparmor.found()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400798else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200799 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400800 libapparmor = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400801endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200802conf.set10('HAVE_APPARMOR', have)
803m4_defines += have ? ['-DHAVE_APPARMOR'] : []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400804
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400805smack_run_label = get_option('smack-run-label')
806if smack_run_label != ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400807 conf.set_quoted('SMACK_RUN_LABEL', smack_run_label)
808 m4_defines += ['-DHAVE_SMACK_RUN_LABEL']
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400809endif
810
Zbigniew Jędrzejewski-Szmek3ca0cb72017-04-12 19:09:26 -0400811want_polkit = get_option('polkit')
812install_polkit = false
813install_polkit_pkla = false
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400814if want_polkit != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400815 install_polkit = true
Zbigniew Jędrzejewski-Szmek3ca0cb72017-04-12 19:09:26 -0400816
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400817 libpolkit = dependency('polkit-gobject-1',
818 required : false)
819 if libpolkit.found() and libpolkit.version().version_compare('< 0.106')
820 message('Old polkit detected, will install pkla files')
821 install_polkit_pkla = true
822 endif
Zbigniew Jędrzejewski-Szmek3ca0cb72017-04-12 19:09:26 -0400823endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200824conf.set10('ENABLE_POLKIT', install_polkit)
Zbigniew Jędrzejewski-Szmek3ca0cb72017-04-12 19:09:26 -0400825
Zbigniew Jędrzejewski-Szmek36f03872017-04-21 13:53:59 -0400826want_acl = get_option('acl')
827if want_acl != 'false'
828 libacl = cc.find_library('acl', required : want_acl == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200829 have = libacl.found()
Zbigniew Jędrzejewski-Szmek36f03872017-04-21 13:53:59 -0400830else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200831 have = false
Zbigniew Jędrzejewski-Szmek36f03872017-04-21 13:53:59 -0400832 libacl = []
833endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200834conf.set10('HAVE_ACL', have)
835m4_defines += have ? ['-DHAVE_ACL'] : []
Zbigniew Jędrzejewski-Szmek36f03872017-04-21 13:53:59 -0400836
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400837want_audit = get_option('audit')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400838if want_audit != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400839 libaudit = dependency('audit', required : want_audit == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200840 have = libaudit.found()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400841else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200842 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400843 libaudit = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400844endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200845conf.set10('HAVE_AUDIT', have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400846
847want_blkid = get_option('blkid')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400848if want_blkid != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400849 libblkid = dependency('blkid', required : want_blkid == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200850 have = libblkid.found()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400851else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200852 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400853 libblkid = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400854endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200855conf.set10('HAVE_BLKID', have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400856
857want_kmod = get_option('kmod')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400858if want_kmod != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400859 libkmod = dependency('libkmod',
860 version : '>= 15',
861 required : want_kmod == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200862 have = libkmod.found()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400863else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200864 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400865 libkmod = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400866endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200867conf.set10('HAVE_KMOD', have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400868
869want_pam = get_option('pam')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400870if want_pam != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400871 libpam = cc.find_library('pam', required : want_pam == 'true')
872 libpam_misc = cc.find_library('pam_misc', required : want_pam == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200873 have = libpam.found() and libpam_misc.found()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400874else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200875 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400876 libpam = []
877 libpam_misc = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400878endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200879conf.set10('HAVE_PAM', have)
880m4_defines += have ? ['-DHAVE_PAM'] : []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400881
882want_microhttpd = get_option('microhttpd')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400883if want_microhttpd != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400884 libmicrohttpd = dependency('libmicrohttpd',
885 version : '>= 0.9.33',
886 required : want_microhttpd == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200887 have = libmicrohttpd.found()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400888else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200889 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400890 libmicrohttpd = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400891endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200892conf.set10('HAVE_MICROHTTPD', have)
893m4_defines += have ? ['-DHAVE_MICROHTTPD'] : []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400894
895want_libcryptsetup = get_option('libcryptsetup')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400896if want_libcryptsetup != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400897 libcryptsetup = dependency('libcryptsetup',
898 version : '>= 1.6.0',
899 required : want_libcryptsetup == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200900 have = libcryptsetup.found()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400901else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200902 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400903 libcryptsetup = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400904endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200905conf.set10('HAVE_LIBCRYPTSETUP', have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400906
907want_libcurl = get_option('libcurl')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400908if want_libcurl != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400909 libcurl = dependency('libcurl',
910 version : '>= 7.32.0',
911 required : want_libcurl == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200912 have = libcurl.found()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400913else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200914 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400915 libcurl = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400916endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200917conf.set10('HAVE_LIBCURL', have)
918m4_defines += have ? ['-DHAVE_LIBCURL'] : []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400919
920want_libidn = get_option('libidn')
Zbigniew Jędrzejewski-Szmek87057e22017-05-09 21:56:34 -0400921want_libidn2 = get_option('libidn2')
922if want_libidn == 'true' and want_libidn2 == 'true'
923 error('libidn and libidn2 cannot be requested simultaneously')
924endif
925
Zbigniew Jędrzejewski-Szmek7f7ab222017-07-12 03:25:59 -0400926if want_libidn != 'false' and want_libidn2 != 'true'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400927 libidn = dependency('libidn',
928 required : want_libidn == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200929 have = libidn.found()
Zbigniew Jędrzejewski-Szmek7f7ab222017-07-12 03:25:59 -0400930else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200931 have = false
Zbigniew Jędrzejewski-Szmek7f7ab222017-07-12 03:25:59 -0400932 libidn = []
933endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200934conf.set10('HAVE_LIBIDN', have)
935m4_defines += have ? ['-DHAVE_LIBIDN'] : []
936if not have and want_libidn2 != 'false'
Zbigniew Jędrzejewski-Szmek7f7ab222017-07-12 03:25:59 -0400937 # libidn is used for both libidn and libidn2 objects
938 libidn = dependency('libidn2',
939 required : want_libidn2 == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200940 have = libidn.found()
941else
942 have = false
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400943endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200944conf.set10('HAVE_LIBIDN2', have)
945m4_defines += have ? ['-DHAVE_LIBIDN2'] : []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400946
947want_libiptc = get_option('libiptc')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400948if want_libiptc != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400949 libiptc = dependency('libiptc',
950 required : want_libiptc == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200951 have = libiptc.found()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400952else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200953 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400954 libiptc = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400955endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200956conf.set10('HAVE_LIBIPTC', have)
957m4_defines += have ? ['-DHAVE_LIBIPTC'] : []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400958
959want_qrencode = get_option('qrencode')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400960if want_qrencode != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400961 libqrencode = dependency('libqrencode',
962 required : want_qrencode == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200963 have = libqrencode.found()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400964else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200965 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400966 libqrencode = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400967endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200968conf.set10('HAVE_QRENCODE', have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400969
Zbigniew Jędrzejewski-Szmeka44fb602017-07-26 14:08:46 -0400970want_gcrypt = get_option('gcrypt')
971if want_gcrypt != 'false'
972 libgcrypt = cc.find_library('gcrypt', required : want_gcrypt == 'true')
973 libgpg_error = cc.find_library('gpg-error', required : want_gcrypt == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200974 have = libgcrypt.found() and libgpg_error.found()
Zbigniew Jędrzejewski-Szmeka44fb602017-07-26 14:08:46 -0400975else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200976 have = false
977endif
978if not have
979 # link to neither of the libs if one is not found
Zbigniew Jędrzejewski-Szmeka44fb602017-07-26 14:08:46 -0400980 libgcrypt = []
981 libgpg_error = []
982endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200983conf.set10('HAVE_GCRYPT', have)
Zbigniew Jędrzejewski-Szmeka44fb602017-07-26 14:08:46 -0400984
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400985want_gnutls = get_option('gnutls')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400986if want_gnutls != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400987 libgnutls = dependency('gnutls',
988 version : '>= 3.1.4',
989 required : want_gnutls == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200990 have = libgnutls.found()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400991else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200992 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400993 libgnutls = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400994endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200995conf.set10('HAVE_GNUTLS', have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400996
997want_elfutils = get_option('elfutils')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400998if want_elfutils != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400999 libdw = dependency('libdw',
1000 required : want_elfutils == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001001 have = libdw.found()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001002else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001003 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001004 libdw = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001005endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001006conf.set10('HAVE_ELFUTILS', have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001007
1008want_zlib = get_option('zlib')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -04001009if want_zlib != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001010 libz = dependency('zlib',
1011 required : want_zlib == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001012 have = libz.found()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001013else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001014 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001015 libz = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001016endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001017conf.set10('HAVE_ZLIB', have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001018
1019want_bzip2 = get_option('bzip2')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -04001020if want_bzip2 != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001021 libbzip2 = cc.find_library('bz2',
1022 required : want_bzip2 == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001023 have = libbzip2.found()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001024else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001025 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001026 libbzip2 = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001027endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001028conf.set10('HAVE_BZIP2', have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001029
1030want_xz = get_option('xz')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -04001031if want_xz != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001032 libxz = dependency('liblzma',
1033 required : want_xz == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001034 have = libxz.found()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001035else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001036 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001037 libxz = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001038endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001039conf.set10('HAVE_XZ', have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001040
1041want_lz4 = get_option('lz4')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -04001042if want_lz4 != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001043 liblz4 = dependency('liblz4',
1044 required : want_lz4 == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001045 have = liblz4.found()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001046else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001047 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001048 liblz4 = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001049endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001050conf.set10('HAVE_LZ4', have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001051
Zbigniew Jędrzejewski-Szmeka44fb602017-07-26 14:08:46 -04001052want_xkbcommon = get_option('xkbcommon')
1053if want_xkbcommon != 'false'
1054 libxkbcommon = dependency('xkbcommon',
1055 version : '>= 0.3.0',
1056 required : want_xkbcommon == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001057 have = libxkbcommon.found()
Zbigniew Jędrzejewski-Szmeka44fb602017-07-26 14:08:46 -04001058else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001059 have = false
Zbigniew Jędrzejewski-Szmeka44fb602017-07-26 14:08:46 -04001060 libxkbcommon = []
1061endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001062conf.set10('HAVE_XKBCOMMON', have)
Zbigniew Jędrzejewski-Szmeka44fb602017-07-26 14:08:46 -04001063
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04001064want_glib = get_option('glib')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -04001065if want_glib != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001066 libglib = dependency('glib-2.0',
1067 version : '>= 2.22.0',
1068 required : want_glib == 'true')
1069 libgobject = dependency('gobject-2.0',
1070 version : '>= 2.22.0',
1071 required : want_glib == 'true')
1072 libgio = dependency('gio-2.0',
1073 required : want_glib == 'true')
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001074 have = libglib.found() and libgobject.found() and libgio.found()
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04001075else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001076 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001077 libglib = []
1078 libgobject = []
1079 libgio = []
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04001080endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001081conf.set10('HAVE_GLIB', have)
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04001082
1083want_dbus = get_option('dbus')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -04001084if want_dbus != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001085 libdbus = dependency('dbus-1',
1086 version : '>= 1.3.2',
1087 required : want_dbus == 'true')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001088 have = libdbus.found()
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04001089else
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001090 have = false
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001091 libdbus = []
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04001092endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001093conf.set10('HAVE_DBUS', have)
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04001094
Yu Watanabe42303dc2017-06-18 05:22:32 +09001095default_dnssec = get_option('default-dnssec')
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001096if default_dnssec != 'no' and conf.get('HAVE_GCRYPT') == 0
Yu Watanabe42303dc2017-06-18 05:22:32 +09001097 message('default-dnssec cannot be set to yes or allow-downgrade when gcrypt is disabled. Setting default-dnssec to no.')
1098 default_dnssec = 'no'
1099endif
1100conf.set('DEFAULT_DNSSEC_MODE',
1101 'DNSSEC_' + default_dnssec.underscorify().to_upper())
1102substs.set('DEFAULT_DNSSEC_MODE', default_dnssec)
1103
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001104want_importd = get_option('importd')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -04001105if want_importd != 'false'
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001106 have = (conf.get('HAVE_LIBCURL') == 1 and
1107 conf.get('HAVE_ZLIB') == 1 and
1108 conf.get('HAVE_BZIP2') == 1 and
1109 conf.get('HAVE_XZ') == 1 and
1110 conf.get('HAVE_GCRYPT') == 1)
1111 if want_importd == 'true' and not have
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001112 error('importd support was requested, but dependencies are not available')
1113 endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001114else
1115 have = false
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001116endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001117conf.set10('ENABLE_IMPORTD', have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001118
1119want_remote = get_option('remote')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -04001120if want_remote != 'false'
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001121 have_deps = [conf.get('HAVE_MICROHTTPD') == 1,
1122 conf.get('HAVE_LIBCURL') == 1]
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001123 # sd-j-remote requires µhttpd, and sd-j-upload requires libcurl, so
1124 # it's possible to build one without the other. Complain only if
1125 # support was explictly requested. The auxiliary files like sysusers
1126 # config should be installed when any of the programs are built.
1127 if want_remote == 'true' and not (have_deps[0] and have_deps[1])
1128 error('remote support was requested, but dependencies are not available')
1129 endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001130 have = have_deps[0] or have_deps[1]
1131else
1132 have = false
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001133endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001134conf.set10('ENABLE_REMOTE', have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001135
Zbigniew Jędrzejewski-Szmeka9149d82017-10-03 13:15:27 +02001136foreach term : ['utmp',
1137 'hibernate',
1138 'environment-d',
1139 'binfmt',
1140 'coredump',
1141 'resolve',
1142 'logind',
1143 'hostnamed',
1144 'localed',
1145 'machined',
1146 'networkd',
1147 'timedated',
1148 'timesyncd',
1149 'myhostname',
1150 'firstboot',
1151 'randomseed',
1152 'backlight',
1153 'vconsole',
1154 'quotacheck',
1155 'sysusers',
1156 'tmpfiles',
1157 'hwdb',
1158 'rfkill',
1159 'ldconfig',
1160 'efi',
1161 'tpm',
1162 'ima',
1163 'smack',
1164 'gshadow',
1165 'idn',
1166 'nss-systemd']
1167 have = get_option(term)
1168 name = 'ENABLE_' + term.underscorify().to_upper()
1169 conf.set10(name, have)
1170 m4_defines += have ? ['-D' + name] : []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001171endforeach
1172
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04001173want_tests = get_option('tests')
Zbigniew Jędrzejewski-Szmek572baca2017-04-08 01:55:38 -04001174install_tests = get_option('install-tests')
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04001175tests = []
1176
Zbigniew Jędrzejewski-Szmek00d82c82017-07-12 21:25:17 +00001177conf.set10('SYSTEMD_SLOW_TESTS_DEFAULT', get_option('slow-tests'))
1178
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001179#####################################################################
1180
1181if get_option('efi')
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001182 efi_arch = host_machine.cpu_family()
Zbigniew Jędrzejewski-Szmekb7100722017-04-12 15:05:55 -04001183
Zbigniew Jędrzejewski-Szmek6800fe72017-04-19 22:57:52 -04001184 if efi_arch == 'x86'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001185 EFI_MACHINE_TYPE_NAME = 'ia32'
Zbigniew Jędrzejewski-Szmek6800fe72017-04-19 22:57:52 -04001186 gnu_efi_arch = 'ia32'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001187 elif efi_arch == 'x86_64'
1188 EFI_MACHINE_TYPE_NAME = 'x64'
Zbigniew Jędrzejewski-Szmek6800fe72017-04-19 22:57:52 -04001189 gnu_efi_arch = 'x86_64'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001190 elif efi_arch == 'arm'
1191 EFI_MACHINE_TYPE_NAME = 'arm'
Zbigniew Jędrzejewski-Szmek6800fe72017-04-19 22:57:52 -04001192 gnu_efi_arch = 'arm'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001193 elif efi_arch == 'aarch64'
1194 EFI_MACHINE_TYPE_NAME = 'aa64'
Zbigniew Jędrzejewski-Szmek6800fe72017-04-19 22:57:52 -04001195 gnu_efi_arch = 'aarch64'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001196 else
1197 EFI_MACHINE_TYPE_NAME = ''
Zbigniew Jędrzejewski-Szmek6800fe72017-04-19 22:57:52 -04001198 gnu_efi_arch = ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001199 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001200
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001201 have = true
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001202 conf.set_quoted('EFI_MACHINE_TYPE_NAME', EFI_MACHINE_TYPE_NAME)
Zbigniew Jędrzejewski-Szmek80c6fce2017-04-24 19:28:04 -04001203
1204 conf.set('SD_TPM_PCR', get_option('tpm-pcrindex').to_int())
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001205else
1206 have = false
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001207endif
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001208conf.set10('ENABLE_EFI', have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001209
1210#####################################################################
1211
1212config_h = configure_file(
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001213 output : 'config.h',
1214 configuration : conf)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001215
1216includes = include_directories('src/basic',
1217 'src/shared',
1218 'src/systemd',
1219 'src/journal',
1220 'src/resolve',
1221 'src/timesync',
1222 'src/login',
1223 'src/udev',
1224 'src/libudev',
1225 'src/core',
1226 'src/libsystemd/sd-bus',
1227 'src/libsystemd/sd-device',
1228 'src/libsystemd/sd-hwdb',
1229 'src/libsystemd/sd-id128',
1230 'src/libsystemd/sd-netlink',
1231 'src/libsystemd/sd-network',
1232 'src/libsystemd-network',
Davide Cavalca5e1771a2017-08-30 08:34:44 -07001233 '.',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001234 )
1235
1236add_project_arguments('-include', 'config.h', language : 'c')
1237
1238gcrypt_util_sources = files('src/shared/gcrypt-util.h',
1239 'src/shared/gcrypt-util.c')
1240
1241subdir('po')
1242subdir('catalog')
1243subdir('src/systemd')
1244subdir('src/basic')
1245subdir('src/libsystemd')
1246subdir('src/libsystemd-network')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001247subdir('src/journal')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001248subdir('src/login')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001249
1250libjournal_core = static_library(
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001251 'journal-core',
1252 libjournal_core_sources,
1253 journald_gperf_c,
1254 include_directories : includes,
1255 install : false)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001256
Zbigniew Jędrzejewski-Szmek37ab1a22017-04-10 14:13:40 -04001257libsystemd_sym_path = '@0@/@1@'.format(meson.current_source_dir(), libsystemd_sym)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001258libsystemd = shared_library(
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001259 'systemd',
1260 libsystemd_internal_sources,
1261 journal_internal_sources,
Zbigniew Jędrzejewski-Szmek56d50ab2017-09-28 19:24:16 +02001262 version : libsystemd_version,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001263 include_directories : includes,
1264 link_args : ['-shared',
1265 '-Wl,--version-script=' + libsystemd_sym_path],
1266 link_with : [libbasic],
1267 dependencies : [threads,
Michael Biebl76c87412017-04-21 23:45:54 +02001268 libgcrypt,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001269 librt,
1270 libxz,
1271 liblz4],
1272 link_depends : libsystemd_sym,
1273 install : true,
1274 install_dir : rootlibdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001275
1276############################################################
1277
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001278# binaries that have --help and are intended for use by humans,
1279# usually, but not always, installed in /bin.
1280public_programs = []
1281
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001282subdir('src/libudev')
1283subdir('src/shared')
1284subdir('src/core')
1285subdir('src/udev')
1286subdir('src/network')
1287
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04001288subdir('src/analyze')
1289subdir('src/journal-remote')
1290subdir('src/coredump')
1291subdir('src/hostname')
1292subdir('src/import')
1293subdir('src/kernel-install')
1294subdir('src/locale')
1295subdir('src/machine')
1296subdir('src/nspawn')
1297subdir('src/resolve')
1298subdir('src/timedate')
1299subdir('src/timesync')
1300subdir('src/vconsole')
Zbigniew Jędrzejewski-Szmekb7100722017-04-12 15:05:55 -04001301subdir('src/boot/efi')
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04001302
1303subdir('src/test')
Zbigniew Jędrzejewski-Szmek6b97bf22017-11-22 12:42:28 +01001304subdir('rules')
Zbigniew Jędrzejewski-Szmek4ff3f252017-04-13 20:47:20 -04001305subdir('test')
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04001306
Zbigniew Jędrzejewski-Szmek83b6af32017-04-14 20:10:28 -04001307############################################################
1308
1309# only static linking apart from libdl, to make sure that the
1310# module is linked to all libraries that it uses.
1311test_dlopen = executable(
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001312 'test-dlopen',
1313 test_dlopen_c,
1314 include_directories : includes,
1315 link_with : [libbasic],
1316 dependencies : [libdl])
Zbigniew Jędrzejewski-Szmek83b6af32017-04-14 20:10:28 -04001317
Zbigniew Jędrzejewski-Szmek08cf5b82017-10-03 12:23:55 +02001318foreach tuple : [['myhostname', 'ENABLE_MYHOSTNAME'],
Waldemar Brodkorbe7e11bb2017-06-24 19:30:26 +02001319 ['systemd', 'ENABLE_NSS_SYSTEMD'],
Zbigniew Jędrzejewski-Szmek5486a312017-05-12 08:31:46 -04001320 ['mymachines', 'ENABLE_MACHINED'],
Zbigniew Jędrzejewski-Szmek1ec57f32017-10-03 13:12:29 +02001321 ['resolve', 'ENABLE_RESOLVE']]
Zbigniew Jędrzejewski-Szmek83b6af32017-04-14 20:10:28 -04001322
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001323 condition = tuple[1] == '' or conf.get(tuple[1]) == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001324 if condition
1325 module = tuple[0]
Zbigniew Jędrzejewski-Szmek83b6af32017-04-14 20:10:28 -04001326
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001327 sym = 'src/nss-@0@/nss-@0@.sym'.format(module)
1328 version_script_arg = join_paths(meson.current_source_dir(), sym)
Zbigniew Jędrzejewski-Szmek83b6af32017-04-14 20:10:28 -04001329
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001330 nss = shared_library(
1331 'nss_' + module,
1332 'src/nss-@0@/nss-@0@.c'.format(module),
1333 version : '2',
1334 include_directories : includes,
Lennart Poetteringb4b36f42017-12-12 20:13:16 +01001335 # Note that we link NSS modules with '-z nodelete' so that mempools never get orphaned
1336 link_args : ['-Wl,-z,nodelete',
1337 '-shared',
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001338 '-Wl,--version-script=' + version_script_arg,
1339 '-Wl,--undefined'],
1340 link_with : [libsystemd_internal,
1341 libbasic],
1342 dependencies : [threads,
Zbigniew Jędrzejewski-Szmek5486a312017-05-12 08:31:46 -04001343 librt],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001344 link_depends : sym,
1345 install : true,
1346 install_dir : rootlibdir)
Zbigniew Jędrzejewski-Szmek83b6af32017-04-14 20:10:28 -04001347
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001348 # We cannot use shared_module because it does not support version suffix.
1349 # Unfortunately shared_library insists on creating the symlink…
1350 meson.add_install_script('sh', '-c',
1351 'rm $DESTDIR@0@/libnss_@1@.so'
1352 .format(rootlibdir, module))
Zbigniew Jędrzejewski-Szmek83b6af32017-04-14 20:10:28 -04001353
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001354 test('dlopen-nss_' + module,
1355 test_dlopen,
1356 args : [nss.full_path()]) # path to dlopen must include a slash
1357 endif
Zbigniew Jędrzejewski-Szmek83b6af32017-04-14 20:10:28 -04001358endforeach
1359
1360############################################################
1361
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001362executable('systemd',
1363 systemd_sources,
1364 include_directories : includes,
1365 link_with : [libcore,
Michael Biebl34ce0a52017-04-25 20:19:54 +02001366 libshared],
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001367 dependencies : [threads,
1368 librt,
1369 libseccomp,
1370 libselinux,
Zbigniew Jędrzejewski-Szmekf4ee10a2017-04-09 14:08:53 -04001371 libmount,
1372 libblkid],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04001373 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001374 install : true,
1375 install_dir : rootlibexecdir)
1376
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001377exe = executable('systemd-analyze',
1378 systemd_analyze_sources,
1379 include_directories : includes,
1380 link_with : [libcore,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001381 libshared],
1382 dependencies : [threads,
1383 librt,
1384 libseccomp,
1385 libselinux,
1386 libmount,
1387 libblkid],
1388 install_rpath : rootlibexecdir,
1389 install : true)
1390public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001391
1392executable('systemd-journald',
1393 systemd_journald_sources,
1394 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001395 link_with : [libjournal_core,
Michael Biebl34ce0a52017-04-25 20:19:54 +02001396 libshared],
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001397 dependencies : [threads,
1398 libxz,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001399 liblz4,
1400 libselinux],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04001401 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001402 install : true,
1403 install_dir : rootlibexecdir)
1404
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001405exe = executable('systemd-cat',
1406 systemd_cat_sources,
1407 include_directories : includes,
1408 link_with : [libjournal_core,
Michael Biebl34ce0a52017-04-25 20:19:54 +02001409 libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001410 dependencies : [threads],
1411 install_rpath : rootlibexecdir,
1412 install : true)
1413public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001414
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001415exe = executable('journalctl',
1416 journalctl_sources,
1417 include_directories : includes,
Michael Biebl34ce0a52017-04-25 20:19:54 +02001418 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001419 dependencies : [threads,
1420 libqrencode,
1421 libxz,
1422 liblz4],
1423 install_rpath : rootlibexecdir,
1424 install : true,
1425 install_dir : rootbindir)
1426public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001427
1428executable('systemd-getty-generator',
1429 'src/getty-generator/getty-generator.c',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001430 include_directories : includes,
Zbigniew Jędrzejewski-Szmekb2fc5832017-04-10 18:13:00 -04001431 link_with : [libshared],
1432 install_rpath : rootlibexecdir,
1433 install : true,
1434 install_dir : systemgeneratordir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001435
1436executable('systemd-debug-generator',
1437 'src/debug-generator/debug-generator.c',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001438 include_directories : includes,
Zbigniew Jędrzejewski-Szmekb2fc5832017-04-10 18:13:00 -04001439 link_with : [libshared],
1440 install_rpath : rootlibexecdir,
1441 install : true,
1442 install_dir : systemgeneratordir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001443
1444executable('systemd-fstab-generator',
1445 'src/fstab-generator/fstab-generator.c',
1446 'src/core/mount-setup.c',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001447 include_directories : includes,
Zbigniew Jędrzejewski-Szmekb2fc5832017-04-10 18:13:00 -04001448 link_with : [libshared],
1449 install_rpath : rootlibexecdir,
1450 install : true,
1451 install_dir : systemgeneratordir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001452
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001453if conf.get('ENABLE_ENVIRONMENT_D') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001454 executable('30-systemd-environment-d-generator',
1455 'src/environment-d-generator/environment-d-generator.c',
1456 include_directories : includes,
1457 link_with : [libshared],
1458 install_rpath : rootlibexecdir,
1459 install : true,
1460 install_dir : userenvgeneratordir)
Zbigniew Jędrzejewski-Szmek7b76fce2017-04-09 23:55:50 -04001461
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001462 meson.add_install_script(meson_make_symlink,
1463 join_paths(sysconfdir, 'environment'),
1464 join_paths(environmentdir, '99-environment.conf'))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001465endif
1466
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001467if conf.get('ENABLE_HIBERNATE') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001468 executable('systemd-hibernate-resume-generator',
1469 'src/hibernate-resume/hibernate-resume-generator.c',
1470 include_directories : includes,
1471 link_with : [libshared],
1472 install_rpath : rootlibexecdir,
1473 install : true,
1474 install_dir : systemgeneratordir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001475
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001476 executable('systemd-hibernate-resume',
1477 'src/hibernate-resume/hibernate-resume.c',
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001478 include_directories : includes,
1479 link_with : [libshared],
1480 install_rpath : rootlibexecdir,
1481 install : true,
1482 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001483endif
1484
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001485if conf.get('HAVE_BLKID') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001486 executable('systemd-gpt-auto-generator',
1487 'src/gpt-auto-generator/gpt-auto-generator.c',
1488 'src/basic/blkid-util.h',
1489 include_directories : includes,
Michael Biebl34ce0a52017-04-25 20:19:54 +02001490 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001491 dependencies : libblkid,
1492 install_rpath : rootlibexecdir,
1493 install : true,
1494 install_dir : systemgeneratordir)
1495
1496 exe = executable('systemd-dissect',
1497 'src/dissect/dissect.c',
1498 include_directories : includes,
1499 link_with : [libshared],
1500 install_rpath : rootlibexecdir,
1501 install : true,
1502 install_dir : rootlibexecdir)
1503 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001504endif
1505
Zbigniew Jędrzejewski-Szmek1ec57f32017-10-03 13:12:29 +02001506if conf.get('ENABLE_RESOLVE') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001507 executable('systemd-resolved',
1508 systemd_resolved_sources,
Michael Biebl76c87412017-04-21 23:45:54 +02001509 gcrypt_util_sources,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001510 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001511 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001512 dependencies : [threads,
Michael Biebl76c87412017-04-21 23:45:54 +02001513 libgcrypt,
1514 libgpg_error,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001515 libm,
1516 libidn],
1517 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001518 install : true,
1519 install_dir : rootlibexecdir)
1520
1521 exe = executable('systemd-resolve',
1522 systemd_resolve_sources,
Michael Biebl76c87412017-04-21 23:45:54 +02001523 gcrypt_util_sources,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001524 include_directories : includes,
1525 link_with : [libshared],
1526 dependencies : [threads,
Michael Biebl76c87412017-04-21 23:45:54 +02001527 libgcrypt,
1528 libgpg_error,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001529 libm,
1530 libidn],
1531 install_rpath : rootlibexecdir,
1532 install : true)
1533 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001534endif
1535
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001536if conf.get('ENABLE_LOGIND') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001537 executable('systemd-logind',
1538 systemd_logind_sources,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001539 include_directories : includes,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001540 link_with : [liblogind_core,
Michael Biebl34ce0a52017-04-25 20:19:54 +02001541 libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001542 dependencies : [threads,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001543 libacl],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001544 install_rpath : rootlibexecdir,
1545 install : true,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001546 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001547
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001548 exe = executable('loginctl',
1549 loginctl_sources,
1550 include_directories : includes,
Michael Biebl34ce0a52017-04-25 20:19:54 +02001551 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001552 dependencies : [threads,
1553 liblz4,
1554 libxz],
1555 install_rpath : rootlibexecdir,
1556 install : true,
1557 install_dir : rootbindir)
1558 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001559
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001560 exe = executable('systemd-inhibit',
1561 'src/login/inhibit.c',
1562 include_directories : includes,
1563 link_with : [libshared],
1564 install_rpath : rootlibexecdir,
1565 install : true,
1566 install_dir : rootbindir)
1567 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek83b6af32017-04-14 20:10:28 -04001568
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001569 if conf.get('HAVE_PAM') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001570 version_script_arg = join_paths(meson.current_source_dir(), pam_systemd_sym)
1571 pam_systemd = shared_library(
1572 'pam_systemd',
1573 pam_systemd_c,
1574 name_prefix : '',
1575 include_directories : includes,
1576 link_args : ['-shared',
1577 '-Wl,--version-script=' + version_script_arg],
1578 link_with : [libsystemd_internal,
1579 libshared_static],
1580 dependencies : [threads,
1581 libpam,
1582 libpam_misc],
1583 link_depends : pam_systemd_sym,
1584 install : true,
1585 install_dir : pamlibdir)
1586
1587 test('dlopen-pam_systemd',
1588 test_dlopen,
1589 args : [pam_systemd.full_path()]) # path to dlopen must include a slash
1590 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001591endif
1592
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001593if conf.get('HAVE_PAM') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001594 executable('systemd-user-sessions',
1595 'src/user-sessions/user-sessions.c',
1596 include_directories : includes,
1597 link_with : [libshared],
1598 install_rpath : rootlibexecdir,
1599 install : true,
1600 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001601endif
1602
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001603if conf.get('ENABLE_EFI') == 1 and conf.get('HAVE_BLKID') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001604 exe = executable('bootctl',
1605 'src/boot/bootctl.c',
1606 include_directories : includes,
1607 link_with : [libshared],
1608 dependencies : [libblkid],
1609 install_rpath : rootlibexecdir,
1610 install : true)
1611 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001612endif
1613
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001614exe = executable('systemd-socket-activate', 'src/activate/activate.c',
1615 include_directories : includes,
1616 link_with : [libshared],
1617 dependencies : [threads],
1618 install_rpath : rootlibexecdir,
1619 install : true)
1620public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001621
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001622exe = executable('systemctl', 'src/systemctl/systemctl.c',
1623 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001624 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001625 dependencies : [threads,
1626 libcap,
1627 libselinux,
1628 libxz,
1629 liblz4],
1630 install_rpath : rootlibexecdir,
1631 install : true,
1632 install_dir : rootbindir)
1633public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001634
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001635if conf.get('ENABLE_BACKLIGHT') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001636 executable('systemd-backlight',
1637 'src/backlight/backlight.c',
1638 include_directories : includes,
Michael Biebl34ce0a52017-04-25 20:19:54 +02001639 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001640 install_rpath : rootlibexecdir,
1641 install : true,
1642 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001643endif
1644
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001645if conf.get('ENABLE_RFKILL') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001646 executable('systemd-rfkill',
1647 'src/rfkill/rfkill.c',
1648 include_directories : includes,
Michael Biebl34ce0a52017-04-25 20:19:54 +02001649 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001650 install_rpath : rootlibexecdir,
1651 install : true,
1652 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001653endif
1654
1655executable('systemd-system-update-generator',
1656 'src/system-update-generator/system-update-generator.c',
1657 include_directories : includes,
1658 link_with : [libshared],
Zbigniew Jędrzejewski-Szmekb2fc5832017-04-10 18:13:00 -04001659 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001660 install : true,
1661 install_dir : systemgeneratordir)
1662
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001663if conf.get('HAVE_LIBCRYPTSETUP') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001664 executable('systemd-cryptsetup',
1665 'src/cryptsetup/cryptsetup.c',
1666 include_directories : includes,
1667 link_with : [libshared],
1668 dependencies : [libcryptsetup],
1669 install_rpath : rootlibexecdir,
1670 install : true,
1671 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001672
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001673 executable('systemd-cryptsetup-generator',
1674 'src/cryptsetup/cryptsetup-generator.c',
1675 include_directories : includes,
1676 link_with : [libshared],
1677 dependencies : [libcryptsetup],
1678 install_rpath : rootlibexecdir,
1679 install : true,
1680 install_dir : systemgeneratordir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001681
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001682 executable('systemd-veritysetup',
1683 'src/veritysetup/veritysetup.c',
1684 include_directories : includes,
1685 link_with : [libshared],
1686 dependencies : [libcryptsetup],
1687 install_rpath : rootlibexecdir,
1688 install : true,
1689 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001690
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001691 executable('systemd-veritysetup-generator',
1692 'src/veritysetup/veritysetup-generator.c',
1693 include_directories : includes,
1694 link_with : [libshared],
1695 dependencies : [libcryptsetup],
1696 install_rpath : rootlibexecdir,
1697 install : true,
1698 install_dir : systemgeneratordir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001699endif
1700
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001701if conf.get('HAVE_SYSV_COMPAT') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001702 executable('systemd-sysv-generator',
1703 'src/sysv-generator/sysv-generator.c',
1704 include_directories : includes,
1705 link_with : [libshared],
1706 install_rpath : rootlibexecdir,
1707 install : true,
1708 install_dir : systemgeneratordir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001709
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001710 executable('systemd-rc-local-generator',
1711 'src/rc-local-generator/rc-local-generator.c',
1712 include_directories : includes,
1713 link_with : [libshared],
1714 install_rpath : rootlibexecdir,
1715 install : true,
1716 install_dir : systemgeneratordir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001717endif
1718
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001719if conf.get('ENABLE_HOSTNAMED') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001720 executable('systemd-hostnamed',
1721 'src/hostname/hostnamed.c',
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001722 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001723 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001724 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001725 install : true,
1726 install_dir : rootlibexecdir)
1727
1728 exe = executable('hostnamectl',
1729 'src/hostname/hostnamectl.c',
1730 include_directories : includes,
1731 link_with : [libshared],
1732 install_rpath : rootlibexecdir,
1733 install : true)
1734 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001735endif
1736
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001737if conf.get('ENABLE_LOCALED') == 1
1738 if conf.get('HAVE_XKBCOMMON') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001739 # logind will load libxkbcommon.so dynamically on its own
1740 deps = [libdl]
1741 else
1742 deps = []
1743 endif
Zbigniew Jędrzejewski-Szmek1eeb43f2017-04-13 19:37:14 -04001744
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001745 executable('systemd-localed',
1746 systemd_localed_sources,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001747 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001748 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001749 dependencies : deps,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001750 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001751 install : true,
1752 install_dir : rootlibexecdir)
1753
1754 exe = executable('localectl',
1755 localectl_sources,
1756 include_directories : includes,
1757 link_with : [libshared],
1758 install_rpath : rootlibexecdir,
1759 install : true)
1760 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001761endif
1762
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001763if conf.get('ENABLE_TIMEDATED') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001764 executable('systemd-timedated',
1765 'src/timedate/timedated.c',
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001766 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001767 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001768 install_rpath : rootlibexecdir,
1769 install : true,
1770 install_dir : rootlibexecdir)
1771
1772 exe = executable('timedatectl',
1773 'src/timedate/timedatectl.c',
1774 include_directories : includes,
1775 install_rpath : rootlibexecdir,
1776 link_with : [libshared],
1777 install : true)
1778 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001779endif
1780
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001781if conf.get('ENABLE_TIMESYNCD') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001782 executable('systemd-timesyncd',
1783 systemd_timesyncd_sources,
1784 include_directories : includes,
1785 link_with : [libshared],
1786 dependencies : [threads,
1787 libm],
1788 install_rpath : rootlibexecdir,
1789 install : true,
1790 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001791endif
1792
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001793if conf.get('ENABLE_MACHINED') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001794 executable('systemd-machined',
1795 systemd_machined_sources,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001796 include_directories : includes,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001797 link_with : [libmachine_core,
1798 libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001799 install_rpath : rootlibexecdir,
1800 install : true,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001801 install_dir : rootlibexecdir)
1802
1803 exe = executable('machinectl',
1804 'src/machine/machinectl.c',
1805 include_directories : includes,
1806 link_with : [libshared],
1807 dependencies : [threads,
1808 libxz,
1809 liblz4],
1810 install_rpath : rootlibexecdir,
1811 install : true,
1812 install_dir : rootbindir)
1813 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001814endif
1815
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001816if conf.get('ENABLE_IMPORTD') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001817 executable('systemd-importd',
1818 systemd_importd_sources,
1819 include_directories : includes,
1820 link_with : [libshared],
1821 dependencies : [threads],
1822 install_rpath : rootlibexecdir,
1823 install : true,
1824 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001825
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001826 systemd_pull = executable('systemd-pull',
1827 systemd_pull_sources,
1828 include_directories : includes,
1829 link_with : [libshared],
1830 dependencies : [libcurl,
1831 libz,
1832 libbzip2,
1833 libxz,
1834 libgcrypt],
1835 install_rpath : rootlibexecdir,
1836 install : true,
1837 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001838
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001839 systemd_import = executable('systemd-import',
1840 systemd_import_sources,
1841 include_directories : includes,
1842 link_with : [libshared],
1843 dependencies : [libcurl,
1844 libz,
1845 libbzip2,
1846 libxz],
1847 install_rpath : rootlibexecdir,
1848 install : true,
1849 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001850
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001851 systemd_export = executable('systemd-export',
1852 systemd_export_sources,
1853 include_directories : includes,
1854 link_with : [libshared],
1855 dependencies : [libcurl,
1856 libz,
1857 libbzip2,
1858 libxz],
1859 install_rpath : rootlibexecdir,
1860 install : true,
1861 install_dir : rootlibexecdir)
1862 public_programs += [systemd_pull, systemd_import, systemd_export]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001863endif
1864
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001865if conf.get('ENABLE_REMOTE') == 1 and conf.get('HAVE_LIBCURL') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001866 exe = executable('systemd-journal-upload',
1867 systemd_journal_upload_sources,
1868 include_directories : includes,
1869 link_with : [libshared],
1870 dependencies : [threads,
1871 libcurl,
1872 libgnutls,
1873 libxz,
1874 liblz4],
1875 install_rpath : rootlibexecdir,
1876 install : true,
1877 install_dir : rootlibexecdir)
1878 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001879endif
1880
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001881if conf.get('ENABLE_REMOTE') == 1 and conf.get('HAVE_MICROHTTPD') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001882 s_j_remote = executable('systemd-journal-remote',
1883 systemd_journal_remote_sources,
1884 include_directories : includes,
1885 link_with : [libshared],
1886 dependencies : [threads,
1887 libmicrohttpd,
1888 libgnutls,
1889 libxz,
1890 liblz4],
1891 install_rpath : rootlibexecdir,
1892 install : true,
1893 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001894
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001895 s_j_gatewayd = executable('systemd-journal-gatewayd',
1896 systemd_journal_gatewayd_sources,
1897 include_directories : includes,
1898 link_with : [libshared],
1899 dependencies : [threads,
1900 libmicrohttpd,
1901 libgnutls,
1902 libxz,
1903 liblz4],
1904 install_rpath : rootlibexecdir,
1905 install : true,
1906 install_dir : rootlibexecdir)
1907 public_programs += [s_j_remote, s_j_gatewayd]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001908endif
1909
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001910if conf.get('ENABLE_COREDUMP') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001911 executable('systemd-coredump',
1912 systemd_coredump_sources,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001913 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001914 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001915 dependencies : [threads,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001916 libacl,
1917 libdw,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001918 libxz,
1919 liblz4],
1920 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001921 install : true,
1922 install_dir : rootlibexecdir)
1923
1924 exe = executable('coredumpctl',
1925 coredumpctl_sources,
1926 include_directories : includes,
1927 link_with : [libshared],
1928 dependencies : [threads,
1929 libxz,
1930 liblz4],
1931 install_rpath : rootlibexecdir,
1932 install : true)
1933 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001934endif
1935
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001936if conf.get('ENABLE_BINFMT') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001937 exe = executable('systemd-binfmt',
1938 'src/binfmt/binfmt.c',
1939 include_directories : includes,
1940 link_with : [libshared],
1941 install_rpath : rootlibexecdir,
1942 install : true,
1943 install_dir : rootlibexecdir)
1944 public_programs += [exe]
1945
1946 meson.add_install_script('sh', '-c',
1947 mkdir_p.format(binfmtdir))
1948 meson.add_install_script('sh', '-c',
1949 mkdir_p.format(join_paths(sysconfdir, 'binfmt.d')))
1950endif
1951
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001952if conf.get('ENABLE_VCONSOLE') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001953 executable('systemd-vconsole-setup',
1954 'src/vconsole/vconsole-setup.c',
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001955 include_directories : includes,
1956 link_with : [libshared],
1957 install_rpath : rootlibexecdir,
1958 install : true,
1959 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001960endif
1961
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001962if conf.get('ENABLE_RANDOMSEED') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001963 executable('systemd-random-seed',
1964 'src/random-seed/random-seed.c',
1965 include_directories : includes,
1966 link_with : [libshared],
1967 install_rpath : rootlibexecdir,
1968 install : true,
1969 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001970endif
1971
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001972if conf.get('ENABLE_FIRSTBOOT') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001973 executable('systemd-firstboot',
1974 'src/firstboot/firstboot.c',
1975 include_directories : includes,
1976 link_with : [libshared],
1977 dependencies : [libcrypt],
1978 install_rpath : rootlibexecdir,
1979 install : true,
1980 install_dir : rootbindir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001981endif
1982
1983executable('systemd-remount-fs',
1984 'src/remount-fs/remount-fs.c',
1985 'src/core/mount-setup.c',
1986 'src/core/mount-setup.h',
1987 include_directories : includes,
1988 link_with : [libshared],
Zbigniew Jędrzejewski-Szmekb2fc5832017-04-10 18:13:00 -04001989 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001990 install : true,
1991 install_dir : rootlibexecdir)
1992
1993executable('systemd-machine-id-setup',
1994 'src/machine-id-setup/machine-id-setup-main.c',
1995 'src/core/machine-id-setup.c',
1996 'src/core/machine-id-setup.h',
1997 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001998 link_with : [libshared],
Zbigniew Jędrzejewski-Szmekb2fc5832017-04-10 18:13:00 -04001999 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002000 install : true,
2001 install_dir : rootbindir)
2002
2003executable('systemd-fsck',
2004 'src/fsck/fsck.c',
2005 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002006 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04002007 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002008 install : true,
2009 install_dir : rootlibexecdir)
2010
Zbigniew Jędrzejewski-Szmek80750ad2017-10-23 13:40:38 +02002011executable('systemd-growfs',
2012 'src/partition/growfs.c',
2013 include_directories : includes,
2014 link_with : [libshared],
Zbigniew Jędrzejewski-Szmekc34b75a2017-11-21 18:56:52 +01002015 dependencies : [libcryptsetup],
Zbigniew Jędrzejewski-Szmek80750ad2017-10-23 13:40:38 +02002016 install_rpath : rootlibexecdir,
2017 install : true,
2018 install_dir : rootlibexecdir)
2019
Zbigniew Jędrzejewski-Szmekb7f28ac2017-11-26 22:51:29 +01002020executable('systemd-makefs',
2021 'src/partition/makefs.c',
2022 include_directories : includes,
2023 link_with : [libshared],
2024 install_rpath : rootlibexecdir,
2025 install : true,
2026 install_dir : rootlibexecdir)
2027
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002028executable('systemd-sleep',
2029 'src/sleep/sleep.c',
2030 include_directories : includes,
2031 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04002032 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002033 install : true,
2034 install_dir : rootlibexecdir)
2035
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002036exe = executable('systemd-sysctl',
2037 'src/sysctl/sysctl.c',
2038 include_directories : includes,
2039 link_with : [libshared],
2040 install_rpath : rootlibexecdir,
2041 install : true,
2042 install_dir : rootlibexecdir)
2043public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002044
2045executable('systemd-ac-power',
2046 'src/ac-power/ac-power.c',
2047 include_directories : includes,
2048 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04002049 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002050 install : true,
2051 install_dir : rootlibexecdir)
2052
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002053exe = executable('systemd-detect-virt',
2054 'src/detect-virt/detect-virt.c',
2055 include_directories : includes,
2056 link_with : [libshared],
2057 install_rpath : rootlibexecdir,
2058 install : true)
2059public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002060
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002061exe = executable('systemd-delta',
2062 'src/delta/delta.c',
2063 include_directories : includes,
2064 link_with : [libshared],
2065 install_rpath : rootlibexecdir,
2066 install : true)
2067public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002068
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002069exe = executable('systemd-escape',
2070 'src/escape/escape.c',
2071 include_directories : includes,
2072 link_with : [libshared],
2073 install_rpath : rootlibexecdir,
2074 install : true,
2075 install_dir : rootbindir)
2076public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002077
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002078exe = executable('systemd-notify',
2079 'src/notify/notify.c',
2080 include_directories : includes,
2081 link_with : [libshared],
2082 install_rpath : rootlibexecdir,
2083 install : true,
2084 install_dir : rootbindir)
2085public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002086
2087executable('systemd-volatile-root',
2088 'src/volatile-root/volatile-root.c',
2089 include_directories : includes,
2090 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04002091 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002092 install : true,
2093 install_dir : rootlibexecdir)
2094
2095executable('systemd-cgroups-agent',
2096 'src/cgroups-agent/cgroups-agent.c',
2097 include_directories : includes,
2098 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04002099 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002100 install : true,
2101 install_dir : rootlibexecdir)
2102
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002103exe = executable('systemd-path',
2104 'src/path/path.c',
2105 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002106 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002107 install_rpath : rootlibexecdir,
2108 install : true)
2109public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002110
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002111exe = executable('systemd-ask-password',
2112 'src/ask-password/ask-password.c',
2113 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002114 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002115 install_rpath : rootlibexecdir,
2116 install : true,
2117 install_dir : rootbindir)
2118public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002119
2120executable('systemd-reply-password',
2121 'src/reply-password/reply-password.c',
2122 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002123 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04002124 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002125 install : true,
2126 install_dir : rootlibexecdir)
2127
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002128exe = executable('systemd-tty-ask-password-agent',
2129 'src/tty-ask-password-agent/tty-ask-password-agent.c',
2130 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002131 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002132 install_rpath : rootlibexecdir,
2133 install : true,
2134 install_dir : rootbindir)
2135public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002136
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002137exe = executable('systemd-cgls',
2138 'src/cgls/cgls.c',
2139 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002140 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002141 install_rpath : rootlibexecdir,
2142 install : true)
2143public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002144
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002145exe = executable('systemd-cgtop',
2146 'src/cgtop/cgtop.c',
2147 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002148 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002149 install_rpath : rootlibexecdir,
2150 install : true)
2151public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002152
2153executable('systemd-initctl',
2154 'src/initctl/initctl.c',
2155 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002156 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04002157 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002158 install : true,
2159 install_dir : rootlibexecdir)
2160
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002161exe = executable('systemd-mount',
2162 'src/mount/mount-tool.c',
2163 include_directories : includes,
Michael Biebl34ce0a52017-04-25 20:19:54 +02002164 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002165 install_rpath : rootlibexecdir,
2166 install : true)
2167public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002168
Zbigniew Jędrzejewski-Szmek7b76fce2017-04-09 23:55:50 -04002169meson.add_install_script(meson_make_symlink,
Michael Bieble17e5ba2017-04-13 10:30:56 -04002170 'systemd-mount', join_paths(bindir, 'systemd-umount'))
Zbigniew Jędrzejewski-Szmek7b76fce2017-04-09 23:55:50 -04002171
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002172exe = executable('systemd-run',
2173 'src/run/run.c',
2174 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002175 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002176 install_rpath : rootlibexecdir,
2177 install : true)
2178public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002179
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002180exe = executable('systemd-stdio-bridge',
2181 'src/stdio-bridge/stdio-bridge.c',
2182 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002183 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002184 install_rpath : rootlibexecdir,
2185 install : true)
2186public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002187
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002188exe = executable('busctl',
2189 'src/busctl/busctl.c',
2190 'src/busctl/busctl-introspect.c',
2191 'src/busctl/busctl-introspect.h',
2192 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002193 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002194 install_rpath : rootlibexecdir,
2195 install : true)
2196public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002197
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02002198if conf.get('ENABLE_SYSUSERS') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002199 exe = executable('systemd-sysusers',
2200 'src/sysusers/sysusers.c',
2201 include_directories : includes,
2202 link_with : [libshared],
2203 install_rpath : rootlibexecdir,
2204 install : true,
2205 install_dir : rootbindir)
2206 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002207endif
2208
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02002209if conf.get('ENABLE_TMPFILES') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002210 exe = executable('systemd-tmpfiles',
2211 'src/tmpfiles/tmpfiles.c',
2212 include_directories : includes,
2213 link_with : [libshared],
2214 dependencies : [libacl],
2215 install_rpath : rootlibexecdir,
2216 install : true,
2217 install_dir : rootbindir)
2218 public_programs += [exe]
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002219
2220 test('test-systemd-tmpfiles',
2221 test_systemd_tmpfiles_py,
2222 args : exe.full_path())
2223 # https://github.com/mesonbuild/meson/issues/2681
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002224endif
2225
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02002226if conf.get('ENABLE_HWDB') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002227 exe = executable('systemd-hwdb',
2228 'src/hwdb/hwdb.c',
2229 'src/libsystemd/sd-hwdb/hwdb-internal.h',
2230 include_directories : includes,
Michael Biebl0da6f392017-04-21 18:32:14 +02002231 link_with : [libudev_internal],
2232 install_rpath : udev_rpath,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002233 install : true,
2234 install_dir : rootbindir)
2235 public_programs += [exe]
2236endif
2237
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02002238if conf.get('ENABLE_QUOTACHECK') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002239 executable('systemd-quotacheck',
2240 'src/quotacheck/quotacheck.c',
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002241 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002242 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002243 install_rpath : rootlibexecdir,
2244 install : true,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002245 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002246endif
2247
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002248exe = executable('systemd-socket-proxyd',
2249 'src/socket-proxy/socket-proxyd.c',
2250 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002251 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002252 dependencies : [threads],
2253 install_rpath : rootlibexecdir,
2254 install : true,
2255 install_dir : rootlibexecdir)
2256public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002257
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002258exe = executable('systemd-udevd',
2259 systemd_udevd_sources,
2260 include_directories : includes,
Zbigniew Jędrzejewski-Szmek5c720492017-02-22 23:13:22 -05002261 c_args : ['-DLOG_REALM=LOG_REALM_UDEV'],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002262 link_with : [libudev_core,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002263 libsystemd_network,
Zbigniew Jędrzejewski-Szmek1aec3ed2017-04-17 19:33:10 -04002264 libudev_internal],
Zbigniew Jędrzejewski-Szmek3a30f212017-04-17 12:07:12 -04002265 dependencies : [threads,
2266 libkmod,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002267 libidn,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002268 libacl,
2269 libblkid],
Zbigniew Jędrzejewski-Szmek1aec3ed2017-04-17 19:33:10 -04002270 install_rpath : udev_rpath,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002271 install : true,
2272 install_dir : rootlibexecdir)
2273public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002274
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002275exe = executable('udevadm',
2276 udevadm_sources,
Franck Bui6671e812017-12-16 09:36:36 +01002277 c_args : ['-DLOG_REALM=LOG_REALM_UDEV'],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002278 include_directories : includes,
2279 link_with : [libudev_core,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002280 libsystemd_network,
Zbigniew Jędrzejewski-Szmek1aec3ed2017-04-17 19:33:10 -04002281 libudev_internal],
Zbigniew Jędrzejewski-Szmek3a30f212017-04-17 12:07:12 -04002282 dependencies : [threads,
2283 libkmod,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002284 libidn,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002285 libacl,
2286 libblkid],
Zbigniew Jędrzejewski-Szmek1aec3ed2017-04-17 19:33:10 -04002287 install_rpath : udev_rpath,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002288 install : true,
2289 install_dir : rootbindir)
2290public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002291
2292executable('systemd-shutdown',
2293 systemd_shutdown_sources,
2294 include_directories : includes,
Michael Biebl34ce0a52017-04-25 20:19:54 +02002295 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04002296 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002297 install : true,
2298 install_dir : rootlibexecdir)
2299
2300executable('systemd-update-done',
2301 'src/update-done/update-done.c',
2302 include_directories : includes,
2303 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04002304 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002305 install : true,
2306 install_dir : rootlibexecdir)
2307
2308executable('systemd-update-utmp',
2309 'src/update-utmp/update-utmp.c',
2310 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002311 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002312 dependencies : [libaudit],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04002313 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002314 install : true,
2315 install_dir : rootlibexecdir)
2316
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02002317if conf.get('HAVE_KMOD') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002318 executable('systemd-modules-load',
2319 'src/modules-load/modules-load.c',
2320 include_directories : includes,
2321 link_with : [libshared],
2322 dependencies : [libkmod],
2323 install_rpath : rootlibexecdir,
2324 install : true,
2325 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek94e75a52017-04-09 23:55:05 -04002326
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002327 meson.add_install_script('sh', '-c',
2328 mkdir_p.format(modulesloaddir))
2329 meson.add_install_script('sh', '-c',
2330 mkdir_p.format(join_paths(sysconfdir, 'modules-load.d')))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002331endif
2332
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002333exe = executable('systemd-nspawn',
2334 systemd_nspawn_sources,
2335 'src/core/mount-setup.c', # FIXME: use a variable?
2336 'src/core/mount-setup.h',
2337 'src/core/loopback-setup.c',
2338 'src/core/loopback-setup.h',
2339 include_directories : [includes, include_directories('src/nspawn')],
Zbigniew Jędrzejewski-Szmek0bc91152017-04-27 13:39:54 -04002340 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002341 dependencies : [libacl,
2342 libblkid,
2343 libseccomp,
2344 libselinux],
2345 install_rpath : rootlibexecdir,
2346 install : true)
2347public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002348
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02002349if conf.get('ENABLE_NETWORKD') == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002350 executable('systemd-networkd',
2351 systemd_networkd_sources,
2352 include_directories : includes,
2353 link_with : [libnetworkd_core,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002354 libsystemd_network,
2355 libudev_internal,
2356 libshared],
Zbigniew Jędrzejewski-Szmek4b57a272017-06-21 06:05:15 -04002357 dependencies : [threads],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002358 install_rpath : rootlibexecdir,
2359 install : true,
2360 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002361
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002362 executable('systemd-networkd-wait-online',
2363 systemd_networkd_wait_online_sources,
2364 include_directories : includes,
2365 link_with : [libnetworkd_core,
2366 libshared],
2367 install_rpath : rootlibexecdir,
2368 install : true,
2369 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002370
Felipe Satelerdcfe0722017-08-21 09:48:41 -03002371 exe = executable('networkctl',
2372 networkctl_sources,
2373 include_directories : includes,
2374 link_with : [libsystemd_network,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002375 libshared],
Felipe Satelerdcfe0722017-08-21 09:48:41 -03002376 install_rpath : rootlibexecdir,
2377 install : true,
2378 install_dir : rootbindir)
2379 public_programs += [exe]
2380endif
Zbigniew Jędrzejewski-Szmeke821f6a2017-12-07 10:44:43 +01002381
2382executable('systemd-sulogin-shell',
2383 ['src/sulogin-shell/sulogin-shell.c'],
2384 include_directories : includes,
2385 link_with : [libshared],
2386 install_rpath : rootlibexecdir,
2387 install : true,
2388 install_dir : rootlibexecdir)
2389
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04002390############################################################
2391
2392foreach tuple : tests
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002393 sources = tuple[0]
2394 link_with = tuple[1].length() > 0 ? tuple[1] : [libshared]
2395 dependencies = tuple[2]
2396 condition = tuple.length() >= 4 ? tuple[3] : ''
2397 type = tuple.length() >= 5 ? tuple[4] : ''
2398 defs = tuple.length() >= 6 ? tuple[5] : []
2399 incs = tuple.length() >= 7 ? tuple[6] : includes
2400 timeout = 30
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04002401
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002402 name = sources[0].split('/')[-1].split('.')[0]
2403 if type.startswith('timeout=')
2404 timeout = type.split('=')[1].to_int()
2405 type = ''
2406 endif
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04002407
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02002408 if condition == '' or conf.get(condition) == 1
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002409 exe = executable(
2410 name,
2411 sources,
2412 include_directories : incs,
2413 link_with : link_with,
2414 dependencies : dependencies,
2415 c_args : defs,
2416 install_rpath : rootlibexecdir,
Michael Biebl7cdd9782017-06-23 03:23:30 +02002417 install : install_tests,
2418 install_dir : join_paths(testsdir, type))
Zbigniew Jędrzejewski-Szmek572baca2017-04-08 01:55:38 -04002419
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002420 if type == 'manual'
2421 message('@0@ is a manual test'.format(name))
2422 elif type == 'unsafe' and want_tests != 'unsafe'
2423 message('@0@ is an unsafe test'.format(name))
2424 else
2425 test(name, exe,
2426 env : test_env,
2427 timeout : timeout)
2428 endif
2429 else
2430 message('Not compiling @0@ because @1@ is not true'.format(name, condition))
2431 endif
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04002432endforeach
2433
Zbigniew Jędrzejewski-Szmek37ab1a22017-04-10 14:13:40 -04002434test_libsystemd_sym = executable(
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002435 'test-libsystemd-sym',
2436 test_libsystemd_sym_c,
2437 include_directories : includes,
2438 link_with : [libsystemd],
2439 install : install_tests,
2440 install_dir : testsdir)
Zbigniew Jędrzejewski-Szmek37ab1a22017-04-10 14:13:40 -04002441test('test-libsystemd-sym',
2442 test_libsystemd_sym)
2443
Zbigniew Jędrzejewski-Szmeke0bec522017-04-10 15:20:42 -04002444test_libudev_sym = executable(
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002445 'test-libudev-sym',
2446 test_libudev_sym_c,
2447 include_directories : includes,
2448 c_args : ['-Wno-deprecated-declarations'],
2449 link_with : [libudev],
2450 install : install_tests,
2451 install_dir : testsdir)
Zbigniew Jędrzejewski-Szmeke0bec522017-04-10 15:20:42 -04002452test('test-libudev-sym',
2453 test_libudev_sym)
2454
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04002455############################################################
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002456
2457make_directive_index_py = find_program('tools/make-directive-index.py')
2458make_man_index_py = find_program('tools/make-man-index.py')
Zbigniew Jędrzejewski-Szmekb184e8f2017-04-13 19:59:21 -04002459xml_helper_py = find_program('tools/xml_helper.py')
Zbigniew Jędrzejewski-Szmekabba22c2017-04-15 00:40:59 -04002460hwdb_update_sh = find_program('tools/meson-hwdb-update.sh')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002461
2462subdir('units')
2463subdir('sysctl.d')
2464subdir('sysusers.d')
2465subdir('tmpfiles.d')
Zbigniew Jędrzejewski-Szmeke783f952017-11-23 13:23:42 +01002466subdir('presets')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002467subdir('hwdb')
2468subdir('network')
2469subdir('man')
2470subdir('shell-completion/bash')
2471subdir('shell-completion/zsh')
2472subdir('docs/sysvinit')
2473subdir('docs/var-log')
2474
2475# FIXME: figure out if the warning is true:
2476# https://github.com/mesonbuild/meson/wiki/Reference-manual#install_subdir
2477install_subdir('factory/etc',
2478 install_dir : factorydir)
2479
2480
2481install_data('xorg/50-systemd-user.sh',
2482 install_dir : xinitrcdir)
Dimitri John Ledkov582faeb2017-08-02 13:41:18 +01002483install_data('modprobe.d/systemd.conf',
2484 install_dir : modprobedir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002485install_data('README',
2486 'NEWS',
2487 'CODING_STYLE',
2488 'DISTRO_PORTING',
2489 'ENVIRONMENT.md',
2490 'LICENSE.GPL2',
2491 'LICENSE.LGPL2.1',
Felipe Satelerf9f54412017-12-18 10:58:13 -03002492 'TRANSIENT-SETTINGS.md',
2493 'UIDS-GIDS.md',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002494 'src/libsystemd/sd-bus/GVARIANT-SERIALIZATION',
2495 install_dir : docdir)
Zbigniew Jędrzejewski-Szmekd68b3422017-04-06 14:33:27 -04002496
Zbigniew Jędrzejewski-Szmek94e75a52017-04-09 23:55:05 -04002497meson.add_install_script('sh', '-c', mkdir_p.format(systemdstatedir))
2498meson.add_install_script('sh', '-c', 'touch $DESTDIR@0@'.format(prefixdir))
2499
Zbigniew Jędrzejewski-Szmekd68b3422017-04-06 14:33:27 -04002500############################################################
2501
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002502meson_check_help = find_program('tools/meson-check-help.sh')
2503
2504foreach exec : public_programs
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002505 name = exec.full_path().split('/')[-1]
2506 test('check-help-' + name,
2507 meson_check_help,
2508 args : [exec.full_path()])
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002509endforeach
2510
2511############################################################
2512
Zbigniew Jędrzejewski-Szmek0700e8b2017-07-03 12:42:29 -04002513if git.found()
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002514 all_files = run_command(
2515 git,
Davide Cavalca450b60b2017-08-30 08:04:53 -07002516 ['--git-dir=@0@/.git'.format(meson.current_source_dir()),
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002517 'ls-files',
2518 ':/*.[ch]'])
2519 all_files = files(all_files.stdout().split())
Zbigniew Jędrzejewski-Szmekd68b3422017-04-06 14:33:27 -04002520
userwithuide85a6902017-08-09 13:41:44 +00002521 custom_target(
Zbigniew Jędrzejewski-Szmek0700e8b2017-07-03 12:42:29 -04002522 'tags',
userwithuide85a6902017-08-09 13:41:44 +00002523 output : 'tags',
Davide Cavalca450b60b2017-08-30 08:04:53 -07002524 command : ['env', 'etags', '-o', '@0@/TAGS'.format(meson.current_source_dir())] + all_files)
userwithuide85a6902017-08-09 13:41:44 +00002525 custom_target(
Zbigniew Jędrzejewski-Szmek0700e8b2017-07-03 12:42:29 -04002526 'ctags',
userwithuide85a6902017-08-09 13:41:44 +00002527 output : 'ctags',
Davide Cavalca450b60b2017-08-30 08:04:53 -07002528 command : ['env', 'ctags', '-o', '@0@/tags'.format(meson.current_source_dir())] + all_files)
Zbigniew Jędrzejewski-Szmekd68b3422017-04-06 14:33:27 -04002529endif
Zbigniew Jędrzejewski-Szmek177929c2017-04-15 00:16:23 -04002530
2531if git.found()
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002532 meson_git_contrib_sh = find_program('tools/meson-git-contrib.sh')
Zbigniew Jędrzejewski-Szmeka923e082017-04-17 19:48:20 -04002533 run_target(
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002534 'git-contrib',
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002535 command : [meson_git_contrib_sh])
Zbigniew Jędrzejewski-Szmek177929c2017-04-15 00:16:23 -04002536endif
Zbigniew Jędrzejewski-Szmekdd6ab3d2017-04-24 19:28:05 -04002537
2538if git.found()
2539 git_head = run_command(
2540 git,
Davide Cavalca450b60b2017-08-30 08:04:53 -07002541 ['--git-dir=@0@/.git'.format(meson.current_source_dir()),
Zbigniew Jędrzejewski-Szmekdd6ab3d2017-04-24 19:28:05 -04002542 'rev-parse', 'HEAD']).stdout().strip()
2543 git_head_short = run_command(
2544 git,
Davide Cavalca450b60b2017-08-30 08:04:53 -07002545 ['--git-dir=@0@/.git'.format(meson.current_source_dir()),
Zbigniew Jędrzejewski-Szmekdd6ab3d2017-04-24 19:28:05 -04002546 'rev-parse', '--short=7', 'HEAD']).stdout().strip()
2547
2548 run_target(
2549 'git-snapshot',
2550 command : ['git', 'archive',
Davide Cavalca450b60b2017-08-30 08:04:53 -07002551 '-o', '@0@/systemd-@1@.tar.gz'.format(meson.current_source_dir(),
Zbigniew Jędrzejewski-Szmekdd6ab3d2017-04-24 19:28:05 -04002552 git_head_short),
2553 '--prefix', 'systemd-@0@/'.format(git_head),
2554 'HEAD'])
2555endif
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002556
2557############################################################
2558
2559status = [
2560 '@0@ @1@'.format(meson.project_name(), meson.project_version()),
2561
Yu Watanabe359b4962017-11-25 20:35:24 +09002562 'prefix directory: @0@'.format(prefixdir),
2563 'rootprefix directory: @0@'.format(rootprefixdir),
2564 'sysconf directory: @0@'.format(sysconfdir),
2565 'include directory: @0@'.format(includedir),
2566 'lib directory: @0@'.format(libdir),
2567 'rootlib directory: @0@'.format(rootlibdir),
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002568 'SysV init scripts: @0@'.format(sysvinit_path),
2569 'SysV rc?.d directories: @0@'.format(sysvrcnd_path),
Yu Watanabe359b4962017-11-25 20:35:24 +09002570 'PAM modules directory: @0@'.format(pamlibdir),
2571 'PAM configuration directory: @0@'.format(pamconfdir),
2572 'RPM macros directory: @0@'.format(rpmmacrosdir),
2573 'modprobe.d directory: @0@'.format(modprobedir),
2574 'D-Bus policy directory: @0@'.format(dbuspolicydir),
2575 'D-Bus session directory: @0@'.format(dbussessionservicedir),
2576 'D-Bus system directory: @0@'.format(dbussystemservicedir),
2577 'bash completions directory: @0@'.format(bashcompletiondir),
2578 'zsh completions directory: @0@'.format(zshcompletiondir),
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002579 'extra start script: @0@'.format(get_option('rc-local')),
2580 'extra stop script: @0@'.format(get_option('halt-local')),
2581 'debug shell: @0@ @ @1@'.format(get_option('debug-shell'),
2582 get_option('debug-tty')),
2583 'TTY GID: @0@'.format(tty_gid),
Ikey Doherty84786b82017-12-03 12:28:23 +00002584 'users GID: @0@'.format(users_gid),
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002585 'maximum system UID: @0@'.format(system_uid_max),
2586 'maximum system GID: @0@'.format(system_gid_max),
Lennart Poettering87d5e4f2017-12-02 12:48:31 +01002587 'minimum dynamic UID: @0@'.format(dynamic_uid_min),
2588 'maximum dynamic UID: @0@'.format(dynamic_uid_max),
2589 'minimum container UID base: @0@'.format(container_uid_base_min),
2590 'maximum container UID base: @0@'.format(container_uid_base_max),
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002591 '/dev/kvm access mode: @0@'.format(get_option('dev-kvm-mode')),
Tom Stellard4e15a732017-10-31 08:46:24 -07002592 'render group access mode: @0@'.format(get_option('group-render-mode')),
Yu Watanabe359b4962017-11-25 20:35:24 +09002593 'certificate root directory: @0@'.format(get_option('certificate-root')),
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002594 'support URL: @0@'.format(support_url),
Lennart Poetteringafde4572017-12-05 11:00:24 +01002595 'nobody user name: @0@'.format(nobody_user),
2596 'nobody group name: @0@'.format(nobody_group),
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002597 'fallback hostname: @0@'.format(get_option('fallback-hostname')),
Zbigniew Jędrzejewski-Szmek5248e7e2017-07-11 02:15:08 -04002598 'symbolic gateway hostnames: @0@'.format(', '.join(gateway_hostnames)),
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002599
2600 'default DNSSEC mode: @0@'.format(default_dnssec),
2601 'default cgroup hierarchy: @0@'.format(default_hierarchy),
2602 'default KillUserProcesses setting: @0@'.format(kill_user_processes)]
2603
2604alt_dns_servers = '\n '.join(dns_servers.split(' '))
2605alt_ntp_servers = '\n '.join(ntp_servers.split(' '))
2606status += [
2607 'default DNS servers: @0@'.format(alt_dns_servers),
2608 'default NTP servers: @0@'.format(alt_ntp_servers)]
2609
2610alt_time_epoch = run_command('date', '-Is', '-u', '-d',
2611 '@@0@'.format(time_epoch)).stdout().strip()
2612status += [
2613 'time epoch: @0@ (@1@)'.format(time_epoch, alt_time_epoch)]
2614
2615# TODO:
2616# CFLAGS: ${OUR_CFLAGS} ${CFLAGS}
2617# CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
2618# LDFLAGS: ${OUR_LDFLAGS} ${LDFLAGS}
2619
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02002620if conf.get('ENABLE_EFI') == 1
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002621 status += [
2622 'efi arch: @0@'.format(efi_arch)]
2623
2624 if have_gnu_efi
2625 status += [
2626 'EFI machine type: @0@'.format(EFI_MACHINE_TYPE_NAME),
2627 'EFI CC @0@'.format(efi_cc),
Yu Watanabe359b4962017-11-25 20:35:24 +09002628 'EFI lib directory: @0@'.format(efi_libdir),
2629 'EFI lds directory: @0@'.format(efi_ldsdir),
2630 'EFI include directory: @0@'.format(efi_incdir)]
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002631 endif
2632endif
2633
2634found = []
2635missing = []
2636
2637foreach tuple : [
2638 ['libcryptsetup'],
2639 ['PAM'],
2640 ['AUDIT'],
2641 ['IMA'],
2642 ['AppArmor'],
2643 ['SELinux'],
2644 ['SECCOMP'],
2645 ['SMACK'],
2646 ['zlib'],
2647 ['xz'],
2648 ['lz4'],
2649 ['bzip2'],
2650 ['ACL'],
2651 ['gcrypt'],
2652 ['qrencode'],
2653 ['microhttpd'],
2654 ['gnutls'],
2655 ['libcurl'],
Zbigniew Jędrzejewski-Szmekd1bf5672017-06-16 09:16:28 -04002656 ['idn'],
Zbigniew Jędrzejewski-Szmek87057e22017-05-09 21:56:34 -04002657 ['libidn2'],
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002658 ['libidn'],
Waldemar Brodkorbe7e11bb2017-06-24 19:30:26 +02002659 ['nss-systemd'],
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002660 ['libiptc'],
2661 ['elfutils'],
2662 ['binfmt'],
2663 ['vconsole'],
2664 ['quotacheck'],
2665 ['tmpfiles'],
2666 ['environment.d'],
2667 ['sysusers'],
2668 ['firstboot'],
2669 ['randomseed'],
2670 ['backlight'],
2671 ['rfkill'],
2672 ['logind'],
2673 ['machined'],
2674 ['importd'],
2675 ['hostnamed'],
2676 ['timedated'],
2677 ['timesyncd'],
2678 ['localed'],
2679 ['networkd'],
Yu Watanabea7456af2017-10-06 16:33:21 +09002680 ['resolve'],
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002681 ['coredump'],
2682 ['polkit'],
2683 ['legacy pkla', install_polkit_pkla],
2684 ['efi'],
2685 ['gnu-efi', have_gnu_efi],
2686 ['kmod'],
2687 ['xkbcommon'],
2688 ['blkid'],
2689 ['dbus'],
2690 ['glib'],
Zbigniew Jędrzejewski-Szmek08cf5b82017-10-03 12:23:55 +02002691 ['nss-myhostname', conf.get('ENABLE_MYHOSTNAME') == 1],
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002692 ['hwdb'],
2693 ['tpm'],
2694 ['man pages', want_man],
2695 ['html pages', want_html],
2696 ['man page indices', want_man and have_lxml],
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02002697 ['split /usr', conf.get('HAVE_SPLIT_USR') == 1],
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002698 ['SysV compat'],
2699 ['utmp'],
2700 ['ldconfig'],
2701 ['hibernate'],
2702 ['adm group', get_option('adm-group')],
2703 ['wheel group', get_option('wheel-group')],
Franck Buib14e1b42017-05-09 14:02:37 +02002704 ['gshadow'],
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002705 ['debug hashmap'],
2706 ['debug mmap cache'],
2707]
2708
2709 cond = tuple.get(1, '')
2710 if cond == ''
2711 ident1 = 'HAVE_' + tuple[0].underscorify().to_upper()
2712 ident2 = 'ENABLE_' + tuple[0].underscorify().to_upper()
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02002713 cond = conf.get(ident1, 0) == 1 or conf.get(ident2, 0) == 1
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002714 endif
2715 if cond
2716 found += [tuple[0]]
2717 else
2718 missing += [tuple[0]]
2719 endif
2720endforeach
2721
2722status += [
Zbigniew Jędrzejewski-Szmek9d39c1b2017-07-26 14:14:44 -04002723 '',
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002724 'enabled features: @0@'.format(', '.join(found)),
Zbigniew Jędrzejewski-Szmek9d39c1b2017-07-26 14:14:44 -04002725 '',
2726 'disabled features: @0@'.format(', '.join(missing)),
2727 '']
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002728message('\n '.join(status))
Zbigniew Jędrzejewski-Szmek9a8e64b2017-11-28 21:46:53 +01002729
2730if rootprefixdir != rootprefix_default
2731 message('WARNING:\n' +
2732 ' Note that the installation prefix was changed to "@0@".\n'.format(rootprefixdir) +
2733 ' systemd used fixed names for unit file directories and other paths, so anything\n' +
2734 ' except the default ("@0@") is strongly discouraged.'.format(rootprefix_default))
2735endif