chiark / gitweb /
login: use BUS_DEFINE_PROPERTY_GET* macros
[elogind.git] / meson.build
1 # SPDX-License-Identifier: LGPL-2.1+
2 #
3 # Copyright 2017 Zbigniew JÄ™drzejewski-Szmek
4
5 project('elogind', 'c',
6         version : '238',
7         license : 'LGPLv2+',
8         default_options: [
9                 'c_std=gnu99',
10                 'prefix=/usr',
11                 'sysconfdir=/etc',
12                 'localstatedir=/var',
13         ],
14         meson_version : '>= 0.44',
15        )
16
17 #if 0 /// UNNEEDED by elogind - libudev is external
18 # libsystemd_version = '0.22.0'
19 # libudev_version = '1.6.10'
20 #else
21 libelogind_version = '0.22.0'
22 #endif // 0
23
24 # We need the same data in two different formats, ugh!
25 # Also, for hysterical reasons, we use different variable
26 # names, sometimes. Not all variables are included in every
27 # set. Ugh, ugh, ugh!
28 conf = configuration_data()
29 conf.set_quoted('PACKAGE_STRING',  meson.project_name() + ' ' + meson.project_version())
30 conf.set_quoted('PACKAGE_VERSION', meson.project_version())
31
32 substs = configuration_data()
33 #if 0 /// Set elogind Package PACKAGE_URL
34 # substs.set('PACKAGE_URL',          'https://www.freedesktop.org/wiki/Software/systemd')
35 #else
36 substs.set('PACKAGE_URL',          'https://github.com/elogind/elogind')
37 #endif // 0
38 substs.set('PACKAGE_VERSION',      meson.project_version())
39
40 #####################################################################
41 #if 0 /// elogind does not need this
42
43 # # Try to install the git pre-commit hook
44 # git_hook = run_command(join_paths(meson.source_root(), 'tools/add-git-hook.sh'))
45 # if git_hook.returncode() == 0
46 #         message(git_hook.stdout().strip())
47 # endif
48 #else
49 # elogind Note: We use precompiler masks for two reasons:
50 #               1) The masking is consistent with the sources
51 #               2) The git patch creator we use for preparing upstream patches
52 #                  manipulates commits to not take those masks out. Therefore
53 #                  it can be used to add commits updating the meson files, too.
54 #endif // 0
55
56 #####################################################################
57
58 if get_option('split-usr') == 'auto'
59         split_usr = run_command('test', '-L', '/bin').returncode() != 0
60 else
61         split_usr = get_option('split-usr') == 'true'
62 endif
63 conf.set10('HAVE_SPLIT_USR', split_usr,
64            description : '/usr/bin and /bin directories are separate')
65
66 if get_option('split-bin') == 'auto'
67         split_bin = run_command('test', '-L', '/usr/sbin').returncode() != 0
68 else
69         split_bin = get_option('split-bin') == 'true'
70 endif
71 conf.set10('HAVE_SPLIT_BIN', split_bin,
72            description : 'bin and sbin directories are separate')
73
74 rootprefixdir = get_option('rootprefix')
75 # Unusual rootprefixdir values are used by some distros
76 # (see https://github.com/systemd/systemd/pull/7461).
77 rootprefix_default = split_usr ? '/' : '/usr'
78 if rootprefixdir == ''
79         rootprefixdir = rootprefix_default
80 endif
81
82 #if 0 /// UNNEEDED by elogind
83 # sysvinit_path = get_option('sysvinit-path')
84 # sysvrcnd_path = get_option('sysvrcnd-path')
85 # conf.set10('HAVE_SYSV_COMPAT', sysvinit_path != '' and sysvrcnd_path != '',
86 #            description : 'SysV init scripts and rcN.d links are supported')
87 #endif // 0
88
89 # join_paths ignore the preceding arguments if an absolute component is
90 # encountered, so this should canonicalize various paths when they are
91 # absolute or relative.
92 prefixdir = get_option('prefix')
93 if not prefixdir.startswith('/')
94         error('Prefix is not absolute: "@0@"'.format(prefixdir))
95 endif
96 bindir = join_paths(prefixdir, get_option('bindir'))
97 libdir = join_paths(prefixdir, get_option('libdir'))
98 sysconfdir = join_paths(prefixdir, get_option('sysconfdir'))
99 includedir = join_paths(prefixdir, get_option('includedir'))
100 datadir = join_paths(prefixdir, get_option('datadir'))
101 localstatedir = join_paths('/', get_option('localstatedir'))
102
103 rootbindir = join_paths(rootprefixdir, 'bin')
104 rootsbindir = join_paths(rootprefixdir, split_bin ? 'sbin' : 'bin')
105 #if 0 /// elogind has a different default
106 # rootlibexecdir = join_paths(rootprefixdir, 'lib/systemd')
107 #else
108 rootlibexecdir = get_option('rootlibexecdir')
109 rootlibexecdir = rootlibexecdir != '' ? rootlibexecdir : join_paths(rootprefixdir, 'lib/elogind')
110 #endif // 0
111
112 rootlibdir = get_option('rootlibdir')
113 if rootlibdir == ''
114         rootlibdir = join_paths(rootprefixdir, libdir.split('/')[-1])
115 endif
116
117 # Dirs of external packages
118 pkgconfigdatadir = join_paths(datadir, 'pkgconfig')
119 pkgconfiglibdir = join_paths(libdir, 'pkgconfig')
120 polkitpolicydir = join_paths(datadir, 'polkit-1/actions')
121 polkitrulesdir = join_paths(datadir, 'polkit-1/rules.d')
122 polkitpkladir = join_paths(localstatedir, 'lib/polkit-1/localauthority/10-vendor.d')
123 varlogdir = join_paths(localstatedir, 'log')
124 #if 0 /// UNNEEDED by elogind
125 # xinitrcdir = join_paths(sysconfdir, 'X11/xinit/xinitrc.d')
126 # rpmmacrosdir = get_option('rpmmacrosdir')
127 # if rpmmacrosdir != 'no'
128 #         rpmmacrosdir = join_paths(prefixdir, rpmmacrosdir)
129 # endif
130 #endif // 0
131 modprobedir = join_paths(rootprefixdir, 'lib/modprobe.d')
132
133 # Our own paths
134 #if 0 /// elogind has a bit different layout and does not need all of theses
135 # pkgdatadir = join_paths(datadir, 'systemd')
136 # environmentdir = join_paths(prefixdir, 'lib/environment.d')
137 # pkgsysconfdir = join_paths(sysconfdir, 'systemd')
138 # userunitdir = join_paths(prefixdir, 'lib/systemd/user')
139 # userpresetdir = join_paths(prefixdir, 'lib/systemd/user-preset')
140 # tmpfilesdir = join_paths(prefixdir, 'lib/tmpfiles.d')
141 # sysusersdir = join_paths(prefixdir, 'lib/sysusers.d')
142 # sysctldir = join_paths(prefixdir, 'lib/sysctl.d')
143 # binfmtdir = join_paths(prefixdir, 'lib/binfmt.d')
144 # modulesloaddir = join_paths(prefixdir, 'lib/modules-load.d')
145 # networkdir = join_paths(rootprefixdir, 'lib/systemd/network')
146 # pkgincludedir = join_paths(includedir, 'systemd')
147 # systemgeneratordir = join_paths(rootlibexecdir, 'system-generators')
148 # usergeneratordir = join_paths(prefixdir, 'lib/systemd/user-generators')
149 # systemenvgeneratordir = join_paths(prefixdir, 'lib/systemd/system-environment-generators')
150 # userenvgeneratordir = join_paths(prefixdir, 'lib/systemd/user-environment-generators')
151 # systemshutdowndir = join_paths(rootlibexecdir, 'system-shutdown')
152 # systemsleepdir = join_paths(rootlibexecdir, 'system-sleep')
153 # systemunitdir = join_paths(rootprefixdir, 'lib/systemd/system')
154 # systempresetdir = join_paths(rootprefixdir, 'lib/systemd/system-preset')
155 # udevlibexecdir = join_paths(rootprefixdir, 'lib/udev')
156 # udevhomedir = udevlibexecdir
157 # udevrulesdir = join_paths(udevlibexecdir, 'rules.d')
158 # udevhwdbdir = join_paths(udevlibexecdir, 'hwdb.d')
159 # catalogdir = join_paths(prefixdir, 'lib/systemd/catalog')
160 # kernelinstalldir = join_paths(prefixdir, 'lib/kernel/install.d')
161 # factorydir = join_paths(datadir, 'factory')
162 # bootlibdir = join_paths(prefixdir, 'lib/systemd/boot/efi')
163 # testsdir = join_paths(prefixdir, 'lib/systemd/tests')
164 # systemdstatedir = join_paths(localstatedir, 'lib/systemd')
165 # catalogstatedir = join_paths(systemdstatedir, 'catalog')
166 # randomseeddir = join_paths(localstatedir, 'lib/systemd')
167
168 # docdir = get_option('docdir')
169 # if docdir == ''
170 #         docdir = join_paths(datadir, 'doc/systemd')
171 # endif
172 #else
173 pkgdatadir = join_paths(datadir, 'elogind')
174 pkgsysconfdir = join_paths(sysconfdir, 'elogind')
175 pkgincludedir = join_paths(includedir, 'elogind/systemd')
176 systemshutdowndir = join_paths(rootlibexecdir, 'system-shutdown')
177 systemsleepdir = join_paths(rootlibexecdir, 'system-sleep')
178
179 # in elogind, udev is external and thus configurable
180 udevlibexecdir = get_option('udevbindir')
181 udevlibexecdir = udevlibexecdir != '' ? udevlibexecdir : join_paths(rootprefixdir, 'lib/udev')
182 udevrulesdir = get_option('udevrulesdir')
183 udevrulesdir = udevrulesdir != '' ? udevrulesdir : join_paths(udevlibexecdir, 'rules.d')
184 udevhomedir = udevlibexecdir
185 factorydir = join_paths(datadir, 'factory')
186 docdir = get_option('docdir')
187 docdir = docdir != '' ? docdir: '-'.join([join_paths(datadir, 'doc/elogind'),
188                                           meson.project_version()])
189 testsdir = join_paths(prefixdir, 'lib/elogind/tests')
190 randomseeddir = join_paths(localstatedir, 'lib/elogind')
191 #endif // 0
192
193 dbuspolicydir = get_option('dbuspolicydir')
194 if dbuspolicydir == ''
195         dbuspolicydir = join_paths(datadir, 'dbus-1/system.d')
196 endif
197
198 dbussessionservicedir = get_option('dbussessionservicedir')
199 if dbussessionservicedir == ''
200         dbussessionservicedir = join_paths(datadir, 'dbus-1/services')
201 endif
202
203 dbussystemservicedir = get_option('dbussystemservicedir')
204 if dbussystemservicedir == ''
205         dbussystemservicedir = join_paths(datadir, 'dbus-1/system-services')
206 endif
207
208 pamlibdir = get_option('pamlibdir')
209 if pamlibdir == ''
210         pamlibdir = join_paths(rootlibdir, 'security')
211 endif
212
213 pamconfdir = get_option('pamconfdir')
214 if pamconfdir == ''
215         pamconfdir = join_paths(sysconfdir, 'pam.d')
216 endif
217
218 #if 0 /// UNNEEDED by elogind
219 # memory_accounting_default = get_option('memory-accounting-default')
220 #endif // 0
221
222 conf.set_quoted('PKGSYSCONFDIR',                              pkgsysconfdir)
223 conf.set_quoted('SYSTEM_CONFIG_UNIT_PATH',                    join_paths(pkgsysconfdir, 'system'))
224 #if 0 /// UNNEEDED by elogind
225 # conf.set_quoted('SYSTEM_DATA_UNIT_PATH',                      systemunitdir)
226 # conf.set_quoted('SYSTEM_SYSVINIT_PATH',                       sysvinit_path)
227 # conf.set_quoted('SYSTEM_SYSVRCND_PATH',                       sysvrcnd_path)
228 # conf.set_quoted('RC_LOCAL_SCRIPT_PATH_START',                 get_option('rc-local'))
229 # conf.set_quoted('RC_LOCAL_SCRIPT_PATH_STOP',                  get_option('halt-local'))
230
231 # conf.set('ANSI_OK_COLOR',                                     'ANSI_' + get_option('ok-color').underscorify().to_upper())
232
233 # conf.set_quoted('USER_CONFIG_UNIT_PATH',                      join_paths(pkgsysconfdir, 'user'))
234 # conf.set_quoted('USER_DATA_UNIT_PATH',                        userunitdir)
235 # conf.set_quoted('CERTIFICATE_ROOT',                           get_option('certificate-root'))
236 # conf.set_quoted('CATALOG_DATABASE',                           join_paths(catalogstatedir, 'database'))
237 # conf.set_quoted('SYSTEMD_CGROUP_AGENT_PATH',                  join_paths(rootlibexecdir, 'systemd-cgroups-agent'))
238 # conf.set_quoted('SYSTEMD_BINARY_PATH',                        join_paths(rootlibexecdir, 'systemd'))
239 # conf.set_quoted('SYSTEMD_FSCK_PATH',                          join_paths(rootlibexecdir, 'systemd-fsck'))
240 # conf.set_quoted('SYSTEMD_MAKEFS_PATH',                        join_paths(rootlibexecdir, 'systemd-makefs'))
241 # conf.set_quoted('SYSTEMD_GROWFS_PATH',                        join_paths(rootlibexecdir, 'systemd-growfs'))
242 # conf.set_quoted('SYSTEMD_SHUTDOWN_BINARY_PATH',               join_paths(rootlibexecdir, 'systemd-shutdown'))
243 # conf.set_quoted('SYSTEMD_SLEEP_BINARY_PATH',                  join_paths(rootlibexecdir, 'systemd-sleep'))
244 # conf.set_quoted('SYSTEMCTL_BINARY_PATH',                      join_paths(rootbindir, 'systemctl'))
245 # conf.set_quoted('SYSTEMD_TTY_ASK_PASSWORD_AGENT_BINARY_PATH', join_paths(rootbindir, 'systemd-tty-ask-password-agent'))
246 # conf.set_quoted('SYSTEMD_STDIO_BRIDGE_BINARY_PATH',           join_paths(bindir, 'systemd-stdio-bridge'))
247 #else
248 conf.set_quoted('SYSTEMD_CGROUP_AGENT_PATH',                  join_paths(rootlibexecdir, 'elogind-cgroups-agent'))
249 conf.set_quoted('ELOGIND_UACCESS_COMMAND_PATH',               join_paths(rootlibexecdir, 'elogind-uaccess-command'))
250 conf.set_quoted('SYSTEMD_BINARY_PATH',                        join_paths(rootlibexecdir, 'elogind'))
251 #endif // 0
252 conf.set_quoted('ROOTPREFIX',                                 rootprefixdir)
253 #if 0 /// UNNEEDED by elogind
254 # conf.set_quoted('RANDOM_SEED_DIR',                            randomseeddir)
255 # conf.set_quoted('RANDOM_SEED',                                join_paths(randomseeddir, 'random-seed'))
256 # conf.set_quoted('SYSTEMD_CRYPTSETUP_PATH',                    join_paths(rootlibexecdir, 'systemd-cryptsetup'))
257 # conf.set_quoted('SYSTEM_GENERATOR_PATH',                      systemgeneratordir)
258 # conf.set_quoted('USER_GENERATOR_PATH',                        usergeneratordir)
259 # conf.set_quoted('SYSTEM_ENV_GENERATOR_PATH',                  systemenvgeneratordir)
260 # conf.set_quoted('USER_ENV_GENERATOR_PATH',                    userenvgeneratordir)
261 #endif // 0
262 conf.set_quoted('SYSTEM_SHUTDOWN_PATH',                       systemshutdowndir)
263 conf.set_quoted('SYSTEM_SLEEP_PATH',                          systemsleepdir)
264 #if 0 /// UNNEEDED by elogind
265 # conf.set_quoted('SYSTEMD_KBD_MODEL_MAP',                      join_paths(pkgdatadir, 'kbd-model-map'))
266 # conf.set_quoted('SYSTEMD_LANGUAGE_FALLBACK_MAP',              join_paths(pkgdatadir, 'language-fallback-map'))
267 #endif // 0
268 conf.set_quoted('UDEVLIBEXECDIR',                             udevlibexecdir)
269 conf.set_quoted('POLKIT_AGENT_BINARY_PATH',                   join_paths(bindir, 'pkttyagent'))
270 conf.set_quoted('LIBDIR',                                     libdir)
271 conf.set_quoted('ROOTLIBDIR',                                 rootlibdir)
272 conf.set_quoted('ROOTLIBEXECDIR',                             rootlibexecdir)
273 #if 0 /// UNNEEDED by elogind
274 # conf.set_quoted('BOOTLIBDIR',                                 bootlibdir)
275 # conf.set_quoted('SYSTEMD_PULL_PATH',                          join_paths(rootlibexecdir, 'systemd-pull'))
276 # conf.set_quoted('SYSTEMD_IMPORT_PATH',                        join_paths(rootlibexecdir, 'systemd-import'))
277 # conf.set_quoted('SYSTEMD_EXPORT_PATH',                        join_paths(rootlibexecdir, 'systemd-export'))
278 # conf.set_quoted('VENDOR_KEYRING_PATH',                        join_paths(rootlibexecdir, 'import-pubring.gpg'))
279 # conf.set_quoted('USER_KEYRING_PATH',                          join_paths(pkgsysconfdir, 'import-pubring.gpg'))
280 # conf.set_quoted('DOCUMENT_ROOT',                              join_paths(pkgdatadir, 'gatewayd'))
281 # conf.set('MEMORY_ACCOUNTING_DEFAULT',                         memory_accounting_default ? 'true' : 'false')
282 #endif // 0
283 conf.set_quoted('MEMORY_ACCOUNTING_DEFAULT_YES_NO',           memory_accounting_default ? 'yes' : 'no')
284
285 conf.set_quoted('ABS_BUILD_DIR',                              meson.build_root())
286 conf.set_quoted('ABS_SRC_DIR',                                meson.source_root())
287
288 substs.set('prefix',                                          prefixdir)
289 substs.set('exec_prefix',                                     prefixdir)
290 substs.set('libdir',                                          libdir)
291 substs.set('rootlibdir',                                      rootlibdir)
292 substs.set('includedir',                                      includedir)
293 substs.set('pkgsysconfdir',                                   pkgsysconfdir)
294 substs.set('bindir',                                          bindir)
295 substs.set('rootbindir',                                      rootbindir)
296 substs.set('rootlibexecdir',                                  rootlibexecdir)
297 #if 0 /// UNNEEDED by elogind
298 # substs.set('systemunitdir',                                   systemunitdir)
299 # substs.set('userunitdir',                                     userunitdir)
300 # substs.set('systempresetdir',                                 systempresetdir)
301 # substs.set('userpresetdir',                                   userpresetdir)
302 # substs.set('udevhwdbdir',                                     udevhwdbdir)
303 #endif // 0
304 substs.set('udevrulesdir',                                    udevrulesdir)
305 substs.set('udevlibexecdir',                                  udevlibexecdir)
306 #if 0 /// UNNEEDED by elogind
307 # substs.set('catalogdir',                                      catalogdir)
308 # substs.set('tmpfilesdir',                                     tmpfilesdir)
309 # substs.set('sysusersdir',                                     sysusersdir)
310 # substs.set('sysctldir',                                       sysctldir)
311 # substs.set('binfmtdir',                                       binfmtdir)
312 # substs.set('modulesloaddir',                                  modulesloaddir)
313 # substs.set('systemgeneratordir',                              systemgeneratordir)
314 # substs.set('usergeneratordir',                                usergeneratordir)
315 # substs.set('systemenvgeneratordir',                           systemenvgeneratordir)
316 # substs.set('userenvgeneratordir',                             userenvgeneratordir)
317 #endif // 0
318 substs.set('systemshutdowndir',                               systemshutdowndir)
319 substs.set('systemsleepdir',                                  systemsleepdir)
320 substs.set('VARLOGDIR',                                       varlogdir)
321 #if 0 /// UNNEEDED by elogind
322 # substs.set('CERTIFICATEROOT',                                 get_option('certificate-root'))
323 # substs.set('SYSTEMCTL',                                       join_paths(rootbindir, 'systemctl'))
324 # substs.set('RANDOM_SEED',                                     join_paths(randomseeddir, 'random-seed'))
325 # substs.set('SYSTEM_SYSVINIT_PATH',                            sysvinit_path)
326 # substs.set('SYSTEM_SYSVRCND_PATH',                            sysvrcnd_path)
327 # substs.set('RC_LOCAL_SCRIPT_PATH_START',                      get_option('rc-local'))
328 # substs.set('RC_LOCAL_SCRIPT_PATH_STOP',                       get_option('halt-local'))
329 # substs.set('MEMORY_ACCOUNTING_DEFAULT',                       memory_accounting_default ? 'yes' : 'no')
330 #endif // 0
331
332 #####################################################################
333
334 cc = meson.get_compiler('c')
335 pkgconfig = import('pkgconfig')
336 check_compilation_sh = find_program('tools/meson-check-compilation.sh')
337 meson_build_sh = find_program('tools/meson-build.sh')
338
339 if get_option('tests') != 'false'
340         cxx = find_program('c++', required : false)
341         if cxx.found()
342                 #  Used only for tests
343                 add_languages('cpp')
344         endif
345 endif
346
347 #if 0 /// elogind does not support fuzz stress testing (, yet).
348 # want_ossfuzz = get_option('oss-fuzz')
349 # want_libfuzzer = get_option('llvm-fuzz')
350 # fuzzer_build = want_ossfuzz or want_libfuzzer
351 # if want_ossfuzz and want_libfuzzer
352 #         error('only one of oss-fuzz and llvm-fuzz can be specified')
353 # endif
354 # if want_libfuzzer
355 #         fuzzing_engine = meson.get_compiler('cpp').find_library('Fuzzer')
356 # endif
357 # if want_ossfuzz
358 #         fuzzing_engine = meson.get_compiler('cpp').find_library('FuzzingEngine')
359 # endif
360
361 # possible_cc_flags = [
362 #         '-Wextra',
363 #         '-Werror=undef',
364 #         '-Wlogical-op',
365 #         '-Wmissing-include-dirs',
366 #         '-Wold-style-definition',
367 #         '-Wpointer-arith',
368 #         '-Winit-self',
369 #         '-Wdeclaration-after-statement',
370 #         '-Wfloat-equal',
371 #         '-Wsuggest-attribute=noreturn',
372 #         '-Werror=missing-prototypes',
373 #         '-Werror=implicit-function-declaration',
374 #         '-Werror=missing-declarations',
375 #         '-Werror=return-type',
376 #         '-Werror=incompatible-pointer-types',
377 #         '-Werror=format=2',
378 #         '-Wstrict-prototypes',
379 #         '-Wredundant-decls',
380 #         '-Wmissing-noreturn',
381 #         '-Wimplicit-fallthrough=5',
382 #         '-Wshadow',
383 #         '-Wendif-labels',
384 #         '-Wstrict-aliasing=2',
385 #         '-Wwrite-strings',
386 #         '-Werror=overflow',
387 #         '-Wdate-time',
388 #         '-Wnested-externs',
389 #         '-ffast-math',
390 #         '-fno-common',
391 #         '-fdiagnostics-show-option',
392 #         '-fno-strict-aliasing',
393 #         '-fvisibility=hidden',
394 #         '-fstack-protector',
395 #         '-fstack-protector-strong',
396 #         '--param=ssp-buffer-size=4',
397 # ]
398
399 # # --as-needed and --no-undefined are provided by meson by default,
400 # # run mesonconf to see what is enabled
401 # possible_link_flags = [
402 #         '-Wl,-z,relro',
403 #         '-Wl,-z,now',
404 # ]
405 #else
406 fuzzer_build = false
407 #endif // 0
408
409 # the oss-fuzz fuzzers are not built with -fPIE, so don't
410 # enable it when we are linking against them
411 if not fuzzer_build
412         possible_cc_flags += '-fPIE'
413         possible_link_flags += '-pie'
414 endif
415
416 if cc.get_id() == 'clang'
417         possible_cc_flags += [
418                 '-Wno-typedef-redefinition',
419                 '-Wno-gnu-variable-sized-type-not-at-end',
420         ]
421 endif
422
423 if get_option('buildtype') != 'debug'
424         possible_cc_flags += [
425                 '-ffunction-sections',
426                 '-fdata-sections',
427         ]
428
429         possible_link_flags += '-Wl,--gc-sections'
430 endif
431
432 add_project_arguments(cc.get_supported_arguments(possible_cc_flags), language : 'c')
433
434 # "negative" arguments: gcc on purpose does not return an error for "-Wno-"
435 # arguments, just emits a warnings. So test for the "positive" version instead.
436 foreach arg : ['unused-parameter',
437                'missing-field-initializers',
438                'unused-result',
439                'format-signedness',
440                'error=nonnull', # work-around for gcc 7.1 turning this on on its own
441               ]
442         if cc.has_argument('-W' + arg)
443                 add_project_arguments('-Wno-' + arg, language : 'c')
444         endif
445 endforeach
446
447 if cc.compiles('''
448    #include <time.h>
449    #include <inttypes.h>
450    typedef uint64_t usec_t;
451    usec_t now(clockid_t clock);
452    int main(void) {
453            struct timespec now;
454            return 0;
455    }
456 ''', name : '-Werror=shadow with local shadowing')
457         add_project_arguments('-Werror=shadow', language : 'c')
458 endif
459
460 link_test_c = files('tools/meson-link-test.c')
461
462 foreach arg : possible_link_flags
463         have = run_command(check_compilation_sh,
464                            cc.cmd_array(), '-x', 'c', arg,
465                            '-include', link_test_c).returncode() == 0
466         message('Linking with @0@ supported: @1@'.format(arg, have ? 'yes' : 'no'))
467         if have
468                 add_project_link_arguments(arg, language : 'c')
469         endif
470 endforeach
471
472 cpp = ' '.join(cc.cmd_array()) + ' -E'
473
474 #####################################################################
475 # compilation result tests
476
477 conf.set('_GNU_SOURCE', true)
478 conf.set('__SANE_USERSPACE_TYPES__', true)
479
480 conf.set('SIZEOF_PID_T', cc.sizeof('pid_t', prefix : '#include <sys/types.h>'))
481 conf.set('SIZEOF_UID_T', cc.sizeof('uid_t', prefix : '#include <sys/types.h>'))
482 conf.set('SIZEOF_GID_T', cc.sizeof('gid_t', prefix : '#include <sys/types.h>'))
483 conf.set('SIZEOF_DEV_T', cc.sizeof('dev_t', prefix : '#include <sys/types.h>'))
484 conf.set('SIZEOF_INO_T', cc.sizeof('ino_t', prefix : '#include <sys/types.h>'))
485 conf.set('SIZEOF_TIME_T', cc.sizeof('time_t', prefix : '#include <sys/time.h>'))
486 conf.set('SIZEOF_RLIM_T', cc.sizeof('rlim_t', prefix : '#include <sys/resource.h>'))
487
488 decl_headers = '''
489 #include <uchar.h>
490 #include <linux/ethtool.h>
491 #include <linux/fib_rules.h>
492 //#include <linux/stat.h>
493 //#include <sys/stat.h>
494 '''
495 # FIXME: key_serial_t is only defined in keyutils.h, this is bound to fail
496
497 foreach decl : ['char16_t',
498                 'char32_t',
499                 'key_serial_t',
500                 'struct ethtool_link_settings',
501                 'struct fib_rule_uid_range',
502                 'struct statx',
503                ]
504
505         # We get -1 if the size cannot be determined
506         have = cc.sizeof(decl, prefix : decl_headers) > 0
507         conf.set10('HAVE_' + decl.underscorify().to_upper(), have)
508 endforeach
509
510 foreach decl : [['IFLA_INET6_ADDR_GEN_MODE',         'linux/if_link.h'],
511                 ['IN6_ADDR_GEN_MODE_STABLE_PRIVACY', 'linux/if_link.h'],
512                 ['IFLA_VRF_TABLE',                   'linux/if_link.h'],
513                 ['IFLA_MACVLAN_FLAGS',               'linux/if_link.h'],
514                 ['IFLA_IPVLAN_FLAGS',                'linux/if_link.h'],
515                 ['IFLA_PHYS_PORT_ID',                'linux/if_link.h'],
516                 ['IFLA_BOND_AD_INFO',                'linux/if_link.h'],
517                 ['IFLA_VLAN_PROTOCOL',               'linux/if_link.h'],
518                 ['IFLA_VXLAN_REMCSUM_NOPARTIAL',     'linux/if_link.h'],
519                 ['IFLA_VXLAN_GPE',                   'linux/if_link.h'],
520                 ['IFLA_GENEVE_LABEL',                'linux/if_link.h'],
521                 # if_tunnel.h is buggy and cannot be included on its own
522                 ['IFLA_VTI_REMOTE',                  'linux/if_tunnel.h', '#include <net/if.h>'],
523                 ['IFLA_IPTUN_ENCAP_DPORT',           'linux/if_tunnel.h', '#include <net/if.h>'],
524                 ['IFLA_GRE_ENCAP_DPORT',             'linux/if_tunnel.h', '#include <net/if.h>'],
525                 ['IFLA_BRIDGE_VLAN_INFO',            'linux/if_bridge.h'],
526                 ['IFLA_BRPORT_PROXYARP',             'linux/if_link.h'],
527                 ['IFLA_BRPORT_LEARNING_SYNC',        'linux/if_link.h'],
528                 ['IFLA_BR_VLAN_DEFAULT_PVID',        'linux/if_link.h'],
529                 ['IPVLAN_F_PRIVATE',                 'linux/if_link.h'],
530                 ['NDA_IFINDEX',                      'linux/neighbour.h'],
531                 ['IFA_FLAGS',                        'linux/if_addr.h'],
532                 ['FRA_UID_RANGE',                    'linux/fib_rules.h'],
533                 ['LO_FLAGS_PARTSCAN',                'linux/loop.h'],
534                 ['VXCAN_INFO_PEER',                  'linux/can/vxcan.h'],
535                ]
536         prefix = decl.length() > 2 ? decl[2] : ''
537         have = cc.has_header_symbol(decl[1], decl[0], prefix : prefix)
538         conf.set10('HAVE_' + decl[0], have)
539 endforeach
540
541 foreach ident : ['secure_getenv', '__secure_getenv']
542         conf.set10('HAVE_' + ident.to_upper(), cc.has_function(ident))
543 endforeach
544
545 foreach ident : [
546         ['memfd_create',      '''#include <sys/mman.h>'''],
547         ['gettid',            '''#include <sys/types.h>
548                                  #include <unistd.h>'''],
549         ['pivot_root',        '''#include <stdlib.h>
550                                  #include <unistd.h>'''],     # no known header declares pivot_root
551         ['name_to_handle_at', '''#include <sys/types.h>
552                                  #include <sys/stat.h>
553                                  #include <fcntl.h>'''],
554         ['setns',             '''#include <sched.h>'''],
555         ['renameat2',         '''#include <stdio.h>
556 //                                 #include <fcntl.h>'''],
557         ['kcmp',              '''#include <linux/kcmp.h>'''],
558         ['keyctl',            '''#include <sys/types.h>
559                                  #include <keyutils.h>'''],
560         ['copy_file_range',   '''#include <sys/syscall.h>
561                                  #include <unistd.h>'''],
562         ['bpf',               '''#include <sys/syscall.h>
563                                  #include <unistd.h>'''],
564         ['statx',             '''#include <sys/types.h>
565                                  #include <sys/stat.h>
566 //                                 #include <unistd.h>'''],
567         ['explicit_bzero' ,   '''#include <string.h>'''],
568         ['reallocarray',      '''#include <malloc.h>'''],
569 ]
570
571         have = cc.has_function(ident[0], prefix : ident[1], args : '-D_GNU_SOURCE')
572         conf.set10('HAVE_' + ident[0].to_upper(), have)
573 endforeach
574
575 if cc.has_function('getrandom', prefix : '''#include <sys/random.h>''', args : '-D_GNU_SOURCE')
576         conf.set10('USE_SYS_RANDOM_H', true)
577         conf.set10('HAVE_GETRANDOM', true)
578 else
579         have = cc.has_function('getrandom', prefix : '''#include <linux/random.h>''')
580         conf.set10('USE_SYS_RANDOM_H', false)
581         conf.set10('HAVE_GETRANDOM', have)
582 endif
583
584 #####################################################################
585
586 sed = find_program('sed')
587 awk = find_program('awk')
588 m4 = find_program('m4')
589 stat = find_program('stat')
590 git = find_program('git', required : false)
591 env = find_program('env')
592 perl = find_program('perl', required : false)
593
594 #if 0 /// elogind does not use this but needs a tool to symlink its installed headers.
595 # meson_make_symlink = meson.source_root() + '/tools/meson-make-symlink.sh'
596 #else /// Needed by elogind
597 meson_symlink_headers = meson.source_root() + '/tools/meson-symlink_headers.sh'
598 #endif // 0
599 mkdir_p = 'mkdir -p $DESTDIR/@0@'
600 #if 0 /// unneeded by elogind
601 # test_efi_create_disk_sh = find_program('test/test-efi-create-disk.sh')
602 # splash_bmp = files('test/splash.bmp')
603 #endif // 0
604
605 # if -Dxxx-path option is found, use that. Otherwise, check in $PATH,
606 # /usr/sbin, /sbin, and fall back to the default from middle column.
607 #if 0 /// elogind has a bit different list and some adaptions
608 # progs = [['quotaon',    '/usr/sbin/quotaon'    ],
609 #          ['quotacheck', '/usr/sbin/quotacheck' ],
610 #          ['kmod',       '/usr/bin/kmod'        ],
611 #          ['kexec',      '/usr/sbin/kexec'      ],
612 #          ['sulogin',    '/usr/sbin/sulogin'    ],
613 #          ['mount',      '/usr/bin/mount',      'MOUNT_PATH'],
614 #          ['umount',     '/usr/bin/umount',     'UMOUNT_PATH'],
615 #          ['loadkeys',   '/usr/bin/loadkeys',   'KBD_LOADKEYS'],
616 #          ['setfont',    '/usr/bin/setfont',    'KBD_SETFONT'],
617 #         ]
618 #else
619 progs = [['halt',       '/sbin/halt',          'HALT'],
620          ['kexec',      '/usr/sbin/kexec',     'KEXEC'],
621          ['poweroff',   '/sbin/poweroff',      'POWEROFF'],
622          ['reboot',     '/sbin/reboot',        'REBOOT'],
623         ]
624 #endif // 0
625 foreach prog : progs
626         path = get_option(prog[0] + '-path')
627         if path != ''
628                 message('Using @1@ for @0@'.format(prog[0], path))
629         else
630                 exe = find_program(prog[0],
631                                    '/usr/sbin/' + prog[0],
632                                    '/sbin/' + prog[0],
633                                    required: false)
634                 path = exe.found() ? exe.path() : prog[1]
635         endif
636         name = prog.length() > 2 ? prog[2] : prog[0].to_upper()
637         conf.set_quoted(name, path)
638         substs.set(name, path)
639 endforeach
640
641 #if 0 /// unneeded by elogind
642 # conf.set_quoted('TELINIT', get_option('telinit-path'))
643
644 # if run_command('ln', '--relative', '--help').returncode() != 0
645 #         error('ln does not support --relative (added in coreutils 8.16)')
646 # endif
647 #endif // 0
648
649 ############################################################
650
651 gperf = find_program('gperf')
652
653 gperf_test_format = '''
654 #include <string.h>
655 const char * in_word_set(const char *, @0@);
656 @1@
657 '''
658 gperf_snippet_format = 'echo foo,bar | @0@ -L ANSI-C'
659 gperf_snippet = run_command('sh', '-c', gperf_snippet_format.format(gperf.path()))
660 gperf_test = gperf_test_format.format('size_t', gperf_snippet.stdout())
661 if cc.compiles(gperf_test)
662         gperf_len_type = 'size_t'
663 else
664         gperf_test = gperf_test_format.format('unsigned', gperf_snippet.stdout())
665         if cc.compiles(gperf_test)
666                 gperf_len_type = 'unsigned'
667         else
668                 error('unable to determine gperf len type')
669         endif
670 endif
671 message('gperf len type is @0@'.format(gperf_len_type))
672 conf.set('GPERF_LEN_TYPE', gperf_len_type,
673          description : 'The type of gperf "len" parameter')
674
675 ############################################################
676
677 if not cc.has_header('sys/capability.h')
678         error('POSIX caps headers not found')
679 endif
680 foreach header : ['crypt.h',
681                   'linux/btrfs.h',
682                   'linux/memfd.h',
683                   'linux/vm_sockets.h',
684                   'sys/auxv.h',
685                   'valgrind/memcheck.h',
686                   'valgrind/valgrind.h',
687                  ]
688
689         conf.set10('HAVE_' + header.underscorify().to_upper(),
690                    cc.has_header(header))
691 endforeach
692
693 ############################################################
694
695 conf.set_quoted('FALLBACK_HOSTNAME', get_option('fallback-hostname'))
696 #if 0 /// UNNEEDED by elogind
697 # conf.set10('ENABLE_COMPAT_GATEWAY_HOSTNAME', get_option('compat-gateway-hostname'))
698 # gateway_hostnames = ['_gateway'] + (conf.get('ENABLE_COMPAT_GATEWAY_HOSTNAME') == 1 ? ['gateway'] : [])
699 #endif // 0
700
701 default_hierarchy = get_option('default-hierarchy')
702 conf.set_quoted('DEFAULT_HIERARCHY_NAME', default_hierarchy,
703                 description : 'default cgroup hierarchy as string')
704 if default_hierarchy == 'legacy'
705         conf.set('DEFAULT_HIERARCHY', 'CGROUP_UNIFIED_NONE')
706 elif default_hierarchy == 'hybrid'
707         conf.set('DEFAULT_HIERARCHY', 'CGROUP_UNIFIED_SYSTEMD')
708 else
709         conf.set('DEFAULT_HIERARCHY', 'CGROUP_UNIFIED_ALL')
710 endif
711
712 #if 0 /// UNNEEDED by elogind
713 # time_epoch = get_option('time-epoch')
714 # if time_epoch == ''
715 #         NEWS = files('NEWS')
716 #         time_epoch = run_command(stat, '-c', '%Y', NEWS).stdout()
717 # endif
718 # time_epoch = time_epoch.to_int()
719 # conf.set('TIME_EPOCH', time_epoch)
720 #else
721 ############################################################
722 # elogind needs to know which cgroups controller to follow.
723 get_cg_ctrl_sh = find_program('tools/meson-get-cg-controller.sh')
724 with_cgroupctrl = get_option('cgroup-controller')
725 if with_cgroupctrl == '' or with_cgroupctrl == 'auto'
726         with_cgroupctrl = run_command(get_cg_ctrl_sh, []).stdout().strip()
727 elif with_cgroupctrl == 'none'
728         with_cgroupctrl = 'elogind'
729 endif
730
731 # No controller now is a problem:
732 if with_cgroupctrl == ''
733         error('Unable to determine cgroup controller, but cgroups support is mandatory!')
734 endif
735
736 conf.set_quoted('SYSTEMD_CGROUP_CONTROLLER', '_'.join(['',with_cgroupctrl]),
737                 description : 'name of the cgroup controller to use')
738 conf.set_quoted('SYSTEMD_CGROUP_CONTROLLER_LEGACY',
739                 '='.join(['name', with_cgroupctrl]))
740 conf.set_quoted('SYSTEMD_CGROUP_CONTROLLER_HYBRID',
741                 '='.join(['name', with_cgroupctrl]))
742 ############################################################
743 #endif // 0
744
745 system_uid_max = get_option('system-uid-max')
746 if system_uid_max == ''
747         system_uid_max = run_command(
748                 awk,
749                 '/^\s*SYS_UID_MAX\s+/ { uid=$2 } END { print uid }',
750                 '/etc/login.defs').stdout().strip()
751         if system_uid_max == ''
752                 system_uid_max = '999'
753         endif
754 endif
755 system_uid_max = system_uid_max.to_int()
756 conf.set('SYSTEM_UID_MAX', system_uid_max)
757 substs.set('systemuidmax', system_uid_max)
758 message('maximum system UID is @0@'.format(system_uid_max))
759
760 system_gid_max = get_option('system-gid-max')
761 if system_gid_max == ''
762         system_gid_max = run_command(
763                 awk,
764                 '/^\s*SYS_GID_MAX\s+/ { gid=$2 } END { print gid }',
765                 '/etc/login.defs').stdout().strip()
766         if system_gid_max == ''
767                 system_gid_max = '999'
768         endif
769 endif
770 system_gid_max = system_gid_max.to_int()
771 conf.set('SYSTEM_GID_MAX', system_gid_max)
772 substs.set('systemgidmax', system_gid_max)
773 message('maximum system GID is @0@'.format(system_gid_max))
774
775 #if 0 /// UNNEEDED by elogind
776 # dynamic_uid_min = get_option('dynamic-uid-min').to_int()
777 # dynamic_uid_max = get_option('dynamic-uid-max').to_int()
778 # conf.set('DYNAMIC_UID_MIN', dynamic_uid_min)
779 # conf.set('DYNAMIC_UID_MAX', dynamic_uid_max)
780 # substs.set('dynamicuidmin', dynamic_uid_min)
781 # substs.set('dynamicuidmax', dynamic_uid_max)
782
783 # container_uid_base_min = get_option('container-uid-base-min').to_int()
784 # container_uid_base_max = get_option('container-uid-base-max').to_int()
785 # conf.set('CONTAINER_UID_BASE_MIN', container_uid_base_min)
786 # conf.set('CONTAINER_UID_BASE_MAX', container_uid_base_max)
787 # substs.set('containeruidbasemin', container_uid_base_min)
788 # substs.set('containeruidbasemax', container_uid_base_max)
789 #endif // 0
790
791 nobody_user = get_option('nobody-user')
792 nobody_group = get_option('nobody-group')
793
794 getent_result = run_command('getent', 'passwd', '65534')
795 if getent_result.returncode() == 0
796         name = getent_result.stdout().split(':')[0]
797         if name != nobody_user
798                 warning('\n' +
799                         '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) +
800                         'Your build will result in an user table setup that is incompatible with the local system.')
801         endif
802 endif
803 id_result = run_command('id', '-u', nobody_user)
804 if id_result.returncode() == 0
805         id = id_result.stdout().to_int()
806         if id != 65534
807                 warning('\n' +
808                         '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) +
809                         'Your build will result in an user table setup that is incompatible with the local system.')
810         endif
811 endif
812
813 getent_result = run_command('getent', 'group', '65534')
814 if getent_result.returncode() == 0
815         name = getent_result.stdout().split(':')[0]
816         if name != nobody_group
817                 warning('\n' +
818                         '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) +
819                         'Your build will result in an group table setup that is incompatible with the local system.')
820         endif
821 endif
822 id_result = run_command('id', '-g', nobody_group)
823 if id_result.returncode() == 0
824         id = id_result.stdout().to_int()
825         if id != 65534
826                 warning('\n' +
827                         '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) +
828                         'Your build will result in an group table setup that is incompatible with the local system.')
829         endif
830 endif
831 if nobody_user != nobody_group and not (nobody_user == 'nobody' and nobody_group == 'nogroup')
832         warning('\n' +
833                 'The configured user name "@0@" and group name "@0@" of the nobody user/group are not equivalent.\n'.format(nobody_user, nobody_group) +
834                 'Please re-check that both "nobody-user" and "nobody-group" options are correctly set.')
835 endif
836
837 conf.set_quoted('NOBODY_USER_NAME', nobody_user)
838 conf.set_quoted('NOBODY_GROUP_NAME', nobody_group)
839 substs.set('NOBODY_USER_NAME', nobody_user)
840 substs.set('NOBODY_GROUP_NAME', nobody_group)
841
842 tty_gid = get_option('tty-gid')
843 conf.set('TTY_GID', tty_gid)
844 substs.set('TTY_GID', tty_gid)
845
846 #if 0 /// UNNEEDED by elogind
847 # # Ensure provided GID argument is numeric, otherwise fallback to default assignment
848 # if get_option('users-gid') != ''
849 #         users_gid = get_option('users-gid').to_int()
850 # else
851 #         users_gid = '-'
852 # endif
853 # substs.set('USERS_GID', users_gid)
854
855 # conf.set10('ENABLE_ADM_GROUP', get_option('adm-group'))
856 # conf.set10('ENABLE_WHEEL_GROUP', get_option('wheel-group'))
857
858 # substs.set('DEV_KVM_MODE', get_option('dev-kvm-mode'))
859 # substs.set('GROUP_RENDER_MODE', get_option('group-render-mode'))
860 #endif // 0
861
862 kill_user_processes = get_option('default-kill-user-processes')
863 conf.set10('KILL_USER_PROCESSES', kill_user_processes)
864 conf.set_quoted('KILL_USER_PROCESSES_YES_NO', kill_user_processes ? 'yes' : 'no')
865 substs.set('KILL_USER_PROCESSES', kill_user_processes ? 'yes' : 'no')
866
867 #if 0 /// UNNEEDED by elogind
868 # dns_servers = get_option('dns-servers')
869 # conf.set_quoted('DNS_SERVERS', dns_servers)
870 # substs.set('DNS_SERVERS', dns_servers)
871
872 # ntp_servers = get_option('ntp-servers')
873 # conf.set_quoted('NTP_SERVERS', ntp_servers)
874 # substs.set('NTP_SERVERS', ntp_servers)
875 #endif // 0
876
877 conf.set_quoted('GETTEXT_PACKAGE', meson.project_name())
878
879 #if 0 /// UNNEEDED by elogind
880 # substs.set('SUSHELL', get_option('debug-shell'))
881 # substs.set('DEBUGTTY', get_option('debug-tty'))
882 #endif // 0
883
884 enable_debug_hashmap = false
885 enable_debug_mmap_cache = false
886 #if 1 /// additional elogind debug mode
887 enable_debug_elogind = false
888 #endif // 1
889 #if 1 /// additional elogind debug mode
890                 elif name == 'elogind'
891                         enable_debug_elogind = true
892 #endif // 1
893 foreach name : get_option('debug')
894         if name == 'hashmap'
895                 enable_debug_hashmap = true
896         elif name == 'mmap-cache'
897                 enable_debug_mmap_cache = true
898         else
899                 message('unknown debug option "@0@", ignoring'.format(name))
900         endif
901 endforeach
902 conf.set10('ENABLE_DEBUG_HASHMAP', enable_debug_hashmap)
903 conf.set10('ENABLE_DEBUG_MMAP_CACHE', enable_debug_mmap_cache)
904 #if 1 /// additional elogind debug mode
905 conf.set10('ENABLE_DEBUG_ELOGIND', enable_debug_elogind)
906 #endif // 1
907
908 conf.set10('VALGRIND', get_option('valgrind'))
909
910 #####################################################################
911
912 threads = dependency('threads')
913 librt = cc.find_library('rt')
914 libm = cc.find_library('m')
915 libdl = cc.find_library('dl')
916 libcrypt = cc.find_library('crypt')
917
918 libcap = dependency('libcap', required : false)
919 if not libcap.found()
920         # Compat with Ubuntu 14.04 which ships libcap w/o .pc file
921         libcap = cc.find_library('cap')
922 endif
923
924 #if 0 /// UNNEEDED by elogind
925 # libmount = dependency('mount',
926 #                       version : fuzzer_build ? '>= 0' : '>= 2.30')
927
928 # want_seccomp = get_option('seccomp')
929 # if want_seccomp != 'false' and not fuzzer_build
930 #         libseccomp = dependency('libseccomp',
931 #                                 version : '>= 2.3.1',
932 #                                 required : want_seccomp == 'true')
933 #         have = libseccomp.found()
934 # else
935 #         have = false
936 #         libseccomp = []
937 # endif
938 #else
939 libseccomp = []
940 #endif // 0
941 conf.set10('HAVE_SECCOMP', have)
942
943 want_selinux = get_option('selinux')
944 if want_selinux != 'false' and not fuzzer_build
945         libselinux = dependency('libselinux',
946                                 version : '>= 2.1.9',
947                                 required : want_selinux == 'true')
948         have = libselinux.found()
949 else
950         have = false
951         libselinux = []
952 endif
953 conf.set10('HAVE_SELINUX', have)
954
955 #if 0 /// UNNEEDED by elogind
956 # want_apparmor = get_option('apparmor')
957 # if want_apparmor != 'false' and not fuzzer_build
958 #         libapparmor = dependency('libapparmor',
959 #                                  required : want_apparmor == 'true')
960 #         have = libapparmor.found()
961 # else
962 #         have = false
963 #         libapparmor = []
964 # endif
965 #else
966 libapparmor = []
967 #endif // 0
968 conf.set10('HAVE_APPARMOR', have)
969
970 smack_run_label = get_option('smack-run-label')
971 if smack_run_label != ''
972         conf.set_quoted('SMACK_RUN_LABEL', smack_run_label)
973 endif
974
975 want_polkit = get_option('polkit')
976 install_polkit = false
977 install_polkit_pkla = false
978 if want_polkit != 'false' and not fuzzer_build
979         install_polkit = true
980
981         libpolkit = dependency('polkit-gobject-1',
982                                required : false)
983         if libpolkit.found() and libpolkit.version().version_compare('< 0.106')
984                 message('Old polkit detected, will install pkla files')
985                 install_polkit_pkla = true
986         endif
987 endif
988 conf.set10('ENABLE_POLKIT', install_polkit)
989
990 want_acl = get_option('acl')
991 if want_acl != 'false' and not fuzzer_build
992         libacl = cc.find_library('acl', required : want_acl == 'true')
993         have = libacl.found()
994 else
995         have = false
996         libacl = []
997 endif
998 conf.set10('HAVE_ACL', have)
999
1000 want_audit = get_option('audit')
1001 if want_audit != 'false' and not fuzzer_build
1002         libaudit = dependency('audit', required : want_audit == 'true')
1003         have = libaudit.found()
1004 else
1005         have = false
1006         libaudit = []
1007 endif
1008 conf.set10('HAVE_AUDIT', have)
1009
1010 #if 0 /// UNNEEDED by elogind
1011 # want_blkid = get_option('blkid')
1012 # if want_blkid != 'false' and not fuzzer_build
1013 #         libblkid = dependency('blkid', required : want_blkid == 'true')
1014 #         have = libblkid.found()
1015 # else
1016 #         have = false
1017 #         libblkid = []
1018 # endif
1019 # conf.set10('HAVE_BLKID', have)
1020
1021 # want_kmod = get_option('kmod')
1022 # if want_kmod != 'false' and not fuzzer_build
1023 #         libkmod = dependency('libkmod',
1024 #                              version : '>= 15',
1025 #                              required : want_kmod == 'true')
1026 #         have = libkmod.found()
1027 # else
1028 #         have = false
1029 #         libkmod = []
1030 # endif
1031 # conf.set10('HAVE_KMOD', have)
1032 #else
1033 libblkid = []
1034 libkmod = []
1035 #endif // 0
1036
1037 want_pam = get_option('pam')
1038 if want_pam != 'false' and not fuzzer_build
1039         libpam = cc.find_library('pam', required : want_pam == 'true')
1040         libpam_misc = cc.find_library('pam_misc', required : want_pam == 'true')
1041         have = libpam.found() and libpam_misc.found()
1042 else
1043         have = false
1044         libpam = []
1045         libpam_misc = []
1046 endif
1047 conf.set10('HAVE_PAM', have)
1048
1049 #if 0 /// UNNEEDED by elogind
1050 # want_microhttpd = get_option('microhttpd')
1051 # if want_microhttpd != 'false' and not fuzzer_build
1052 #         libmicrohttpd = dependency('libmicrohttpd',
1053 #                                    version : '>= 0.9.33',
1054 #                                    required : want_microhttpd == 'true')
1055 #         have = libmicrohttpd.found()
1056 # else
1057 #         have = false
1058 #         libmicrohttpd = []
1059 # endif
1060 # conf.set10('HAVE_MICROHTTPD', have)
1061
1062 # want_libcryptsetup = get_option('libcryptsetup')
1063 # if want_libcryptsetup != 'false' and not fuzzer_build
1064 #         libcryptsetup = dependency('libcryptsetup',
1065 #                                    version : '>= 1.6.0',
1066 #                                    required : want_libcryptsetup == 'true')
1067 #         have = libcryptsetup.found()
1068 # else
1069 #         have = false
1070 #         libcryptsetup = []
1071 # endif
1072 # conf.set10('HAVE_LIBCRYPTSETUP', have)
1073
1074 # want_libcurl = get_option('libcurl')
1075 # if want_libcurl != 'false' and not fuzzer_build
1076 #         libcurl = dependency('libcurl',
1077 #                              version : '>= 7.32.0',
1078 #                              required : want_libcurl == 'true')
1079 #         have = libcurl.found()
1080 # else
1081 #         have = false
1082 #         libcurl = []
1083 # endif
1084 # conf.set10('HAVE_LIBCURL', have)
1085
1086 # want_libidn = get_option('libidn')
1087 # want_libidn2 = get_option('libidn2')
1088 # if want_libidn == 'true' and want_libidn2 == 'true'
1089 #         error('libidn and libidn2 cannot be requested simultaneously')
1090 # endif
1091
1092 # if want_libidn != 'false' and want_libidn2 != 'true' and not fuzzer_build
1093 #         libidn = dependency('libidn',
1094 #                             required : want_libidn == 'true')
1095 #         have = libidn.found()
1096 # else
1097 #         have = false
1098 #         libidn = []
1099 # endif
1100 # conf.set10('HAVE_LIBIDN', have)
1101 # if not have and want_libidn2 != 'false' and not fuzzer_build
1102 #         # libidn is used for both libidn and libidn2 objects
1103 #         libidn = dependency('libidn2',
1104 #                             required : want_libidn2 == 'true')
1105 #         have = libidn.found()
1106 # else
1107 #         have = false
1108 # endif
1109 # conf.set10('HAVE_LIBIDN2', have)
1110
1111 # want_libiptc = get_option('libiptc')
1112 # if want_libiptc != 'false' and not fuzzer_build
1113 #         libiptc = dependency('libiptc',
1114 #                              required : want_libiptc == 'true')
1115 #         have = libiptc.found()
1116 # else
1117 #         have = false
1118 #         libiptc = []
1119 # endif
1120 # conf.set10('HAVE_LIBIPTC', have)
1121
1122 # want_qrencode = get_option('qrencode')
1123 # if want_qrencode != 'false' and not fuzzer_build
1124 #         libqrencode = dependency('libqrencode',
1125 #                                  required : want_qrencode == 'true')
1126 #         have = libqrencode.found()
1127 # else
1128 #         have = false
1129 #         libqrencode = []
1130 # endif
1131 # conf.set10('HAVE_QRENCODE', have)
1132
1133 # want_gcrypt = get_option('gcrypt')
1134 # if want_gcrypt != 'false' and not fuzzer_build
1135 #         libgcrypt = cc.find_library('gcrypt', required : want_gcrypt == 'true')
1136 #         libgpg_error = cc.find_library('gpg-error', required : want_gcrypt == 'true')
1137 #         have = libgcrypt.found() and libgpg_error.found()
1138 # else
1139 #         have = false
1140 # endif
1141 # if not have
1142 #         # link to neither of the libs if one is not found
1143 #         libgcrypt = []
1144 #         libgpg_error = []
1145 # endif
1146 # conf.set10('HAVE_GCRYPT', have)
1147
1148 # want_gnutls = get_option('gnutls')
1149 # if want_gnutls != 'false' and not fuzzer_build
1150 #         libgnutls = dependency('gnutls',
1151 #                                version : '>= 3.1.4',
1152 #                                required : want_gnutls == 'true')
1153 #         have = libgnutls.found()
1154 # else
1155 #         have = false
1156 #         libgnutls = []
1157 # endif
1158 # conf.set10('HAVE_GNUTLS', have)
1159
1160 # want_elfutils = get_option('elfutils')
1161 # if want_elfutils != 'false' and not fuzzer_build
1162 #         libdw = dependency('libdw',
1163 #                            required : want_elfutils == 'true')
1164 #         have = libdw.found()
1165 # else
1166 #         have = false
1167 #         libdw = []
1168 # endif
1169 # conf.set10('HAVE_ELFUTILS', have)
1170
1171 # want_zlib = get_option('zlib')
1172 # if want_zlib != 'false' and not fuzzer_build
1173 #         libz = dependency('zlib',
1174 #                           required : want_zlib == 'true')
1175 #         have = libz.found()
1176 # else
1177 #         have = false
1178 #         libz = []
1179 # endif
1180 # conf.set10('HAVE_ZLIB', have)
1181
1182 # want_bzip2 = get_option('bzip2')
1183 # if want_bzip2 != 'false' and not fuzzer_build
1184 #         libbzip2 = cc.find_library('bz2',
1185 #                                    required : want_bzip2 == 'true')
1186 #         have = libbzip2.found()
1187 # else
1188 #         have = false
1189 #         libbzip2 = []
1190 # endif
1191 # conf.set10('HAVE_BZIP2', have)
1192
1193 # want_xz = get_option('xz')
1194 # if want_xz != 'false' and not fuzzer_build
1195 #         libxz = dependency('liblzma',
1196 #                            required : want_xz == 'true')
1197 #         have = libxz.found()
1198 # else
1199 #         have = false
1200 #         libxz = []
1201 # endif
1202 # conf.set10('HAVE_XZ', have)
1203
1204 # want_lz4 = get_option('lz4')
1205 # if want_lz4 != 'false' and not fuzzer_build
1206 #         liblz4 = dependency('liblz4',
1207 #                             required : want_lz4 == 'true')
1208 #         have = liblz4.found()
1209 # else
1210 #         have = false
1211 #         liblz4 = []
1212 # endif
1213 # conf.set10('HAVE_LZ4', have)
1214
1215 # want_xkbcommon = get_option('xkbcommon')
1216 # if want_xkbcommon != 'false' and not fuzzer_build
1217 #         libxkbcommon = dependency('xkbcommon',
1218 #                                   version : '>= 0.3.0',
1219 #                                   required : want_xkbcommon == 'true')
1220 #         have = libxkbcommon.found()
1221 # else
1222 #         have = false
1223 #         libxkbcommon = []
1224 # endif
1225 #else
1226 libmicrohttpd = []
1227 libcryptsetup = []
1228 libcurl = []
1229 libidn = []
1230 libiptc = []
1231 libqrencode = []
1232 libgcrypt = []
1233 libgpg_error = []
1234 libgnutls = []
1235 libdw = []
1236 libz = []
1237 libbzip2 = []
1238 libxz = []
1239 liblz4 = []
1240 libxkbcommon = []
1241 #endif // 0
1242 conf.set10('HAVE_XKBCOMMON', have)
1243
1244 want_pcre2 = get_option('pcre2')
1245 if want_pcre2 != 'false'
1246         libpcre2 = dependency('libpcre2-8',
1247                               required : want_pcre2 == 'true')
1248         have = libpcre2.found()
1249 else
1250         have = false
1251         libpcre2 = []
1252 endif
1253 conf.set10('HAVE_PCRE2', have)
1254
1255 want_glib = get_option('glib')
1256 if want_glib != 'false' and not fuzzer_build
1257         libglib =    dependency('glib-2.0',
1258                                 version : '>= 2.22.0',
1259                                 required : want_glib == 'true')
1260         libgobject = dependency('gobject-2.0',
1261                                 version : '>= 2.22.0',
1262                                 required : want_glib == 'true')
1263         libgio =     dependency('gio-2.0',
1264                                 required : want_glib == 'true')
1265         have = libglib.found() and libgobject.found() and libgio.found()
1266 else
1267         have = false
1268         libglib = []
1269         libgobject = []
1270         libgio = []
1271 endif
1272 conf.set10('HAVE_GLIB', have)
1273
1274 want_dbus = get_option('dbus')
1275 if want_dbus != 'false' and not fuzzer_build
1276         libdbus = dependency('dbus-1',
1277                              version : '>= 1.3.2',
1278                              required : want_dbus == 'true')
1279         have = libdbus.found()
1280 else
1281         have = false
1282         libdbus = []
1283 endif
1284 conf.set10('HAVE_DBUS', have)
1285
1286 #if 0 /// UNNEEDED by elogind
1287 # default_dnssec = get_option('default-dnssec')
1288 # if fuzzer_build
1289 #         default_dnssec = 'no'
1290 # endif
1291 # if default_dnssec != 'no' and conf.get('HAVE_GCRYPT') == 0
1292 #         message('default-dnssec cannot be set to yes or allow-downgrade when gcrypt is disabled. Setting default-dnssec to no.')
1293 #         default_dnssec = 'no'
1294 # endif
1295 # conf.set('DEFAULT_DNSSEC_MODE',
1296 #          'DNSSEC_' + default_dnssec.underscorify().to_upper())
1297 # substs.set('DEFAULT_DNSSEC_MODE', default_dnssec)
1298
1299 # want_importd = get_option('importd')
1300 # if want_importd != 'false'
1301 #         have = (conf.get('HAVE_LIBCURL') == 1 and
1302 #                 conf.get('HAVE_ZLIB') == 1 and
1303 #                 conf.get('HAVE_BZIP2') == 1 and
1304 #                 conf.get('HAVE_XZ') == 1 and
1305 #                 conf.get('HAVE_GCRYPT') == 1)
1306 #         if want_importd == 'true' and not have
1307 #                 error('importd support was requested, but dependencies are not available')
1308 #         endif
1309 # else
1310 #         have = false
1311 # endif
1312 # conf.set10('ENABLE_IMPORTD', have)
1313
1314 # want_remote = get_option('remote')
1315 # if want_remote != 'false'
1316 #         have_deps = [conf.get('HAVE_MICROHTTPD') == 1,
1317 #                      conf.get('HAVE_LIBCURL') == 1]
1318 #         # sd-j-remote requires Âµhttpd, and sd-j-upload requires libcurl, so
1319 #         # it's possible to build one without the other. Complain only if
1320 #         # support was explictly requested. The auxiliary files like sysusers
1321 #         # config should be installed when any of the programs are built.
1322 #         if want_remote == 'true' and not (have_deps[0] and have_deps[1])
1323 #                 error('remote support was requested, but dependencies are not available')
1324 #         endif
1325 #         have = have_deps[0] or have_deps[1]
1326 # else
1327 #         have = false
1328 # endif
1329 #endif // 0
1330 conf.set10('ENABLE_REMOTE', have)
1331
1332 foreach term : ['utmp',
1333 #if 0 /// UNNEEDED by elogind
1334 #                 'hibernate',
1335 #                 'environment-d',
1336 #                 'binfmt',
1337 #                 'coredump',
1338 #                 'resolve',
1339 #                 'logind',
1340 #                 'hostnamed',
1341 #                 'localed',
1342 #                 'machined',
1343 #                 'networkd',
1344 #                 'timedated',
1345 #                 'timesyncd',
1346 #                 'myhostname',
1347 #                 'firstboot',
1348 #                 'randomseed',
1349 #                 'backlight',
1350 #                 'vconsole',
1351 #                 'quotacheck',
1352 #                 'sysusers',
1353 #                 'tmpfiles',
1354 #                 'hwdb',
1355 #                 'rfkill',
1356 #                 'ldconfig',
1357 #                 'efi',
1358 #                 'tpm',
1359 #                 'ima',
1360 #                 'smack',
1361 #                 'gshadow',
1362 #                 'idn',
1363 #                 'nss-systemd']
1364 #else
1365                 'smack']
1366 #endif // 0
1367         have = get_option(term)
1368         name = 'ENABLE_' + term.underscorify().to_upper()
1369         conf.set10(name, have)
1370 endforeach
1371
1372 conf.set10('ENABLE_TIMEDATECTL', get_option('timedated') or get_option('timesyncd'))
1373
1374 want_tests = get_option('tests')
1375 install_tests = get_option('install-tests')
1376 slow_tests = get_option('slow-tests')
1377 tests = []
1378 fuzzers = []
1379
1380 conf.set10('SYSTEMD_SLOW_TESTS_DEFAULT', slow_tests)
1381
1382 #####################################################################
1383
1384 #if 0 /// UNNEEDED by elogind
1385 # if get_option('efi')
1386 #         efi_arch = host_machine.cpu_family()
1387
1388 #         if efi_arch == 'x86'
1389 #                 EFI_MACHINE_TYPE_NAME = 'ia32'
1390 #                 gnu_efi_arch = 'ia32'
1391 #         elif efi_arch == 'x86_64'
1392 #                 EFI_MACHINE_TYPE_NAME = 'x64'
1393 #                 gnu_efi_arch = 'x86_64'
1394 #         elif efi_arch == 'arm'
1395 #                 EFI_MACHINE_TYPE_NAME = 'arm'
1396 #                 gnu_efi_arch = 'arm'
1397 #         elif efi_arch == 'aarch64'
1398 #                 EFI_MACHINE_TYPE_NAME = 'aa64'
1399 #                 gnu_efi_arch = 'aarch64'
1400 #         else
1401 #                 EFI_MACHINE_TYPE_NAME = ''
1402 #                 gnu_efi_arch = ''
1403 #         endif
1404
1405 #         have = true
1406 #         conf.set_quoted('EFI_MACHINE_TYPE_NAME', EFI_MACHINE_TYPE_NAME)
1407
1408 #         conf.set('SD_TPM_PCR', get_option('tpm-pcrindex').to_int())
1409 # else
1410 #         have = false
1411 # endif
1412 #endif // 0
1413 conf.set10('ENABLE_EFI', have)
1414
1415 #####################################################################
1416
1417 config_h = configure_file(
1418         output : 'config.h',
1419         configuration : conf)
1420
1421 meson_apply_m4 = find_program('tools/meson-apply-m4.sh')
1422
1423 includes = include_directories('src/basic',
1424                                'src/shared',
1425                                'src/systemd',
1426 #if 0 /// UNNEEDED by elogind
1427 #                                'src/journal',
1428 #                                'src/resolve',
1429 #                                'src/timesync',
1430 #endif // 0
1431                                'src/time-wait-sync',
1432                                'src/login',
1433 #if 0 /// UNNEEDED by elogind
1434 #                                'src/udev',
1435 #                                'src/libudev',
1436 #endif // 0
1437                                'src/core',
1438 #if 0 /// elogind has a different list
1439 #                                'src/libsystemd/sd-bus',
1440 #                                'src/libsystemd/sd-device',
1441 #                                'src/libsystemd/sd-hwdb',
1442 #                                'src/libsystemd/sd-id128',
1443 #                                'src/libsystemd/sd-netlink',
1444 #                                'src/libsystemd/sd-network',
1445 #                                'src/libsystemd-network',
1446 #else
1447                                'src/libelogind/sd-bus',
1448                                'src/libelogind/sd-id128',
1449                                'src/sleep',
1450                                'src/update-utmp',
1451 #endif // 0
1452                                '.')
1453
1454 add_project_arguments('-include', 'config.h', language : 'c')
1455
1456 subdir('po')
1457 #if 0 /// UNNEEDED by elogind
1458 # subdir('catalog')
1459 #endif // 0
1460 subdir('src/systemd')
1461 subdir('src/basic')
1462 #if 0 /// UNNEEDED by elogind
1463 # subdir('src/libsystemd')
1464 # subdir('src/libsystemd-network')
1465 # subdir('src/journal')
1466 #else
1467 subdir('src/core')
1468 subdir('src/libelogind')
1469 subdir('src/sleep')
1470 subdir('src/update-utmp')
1471 #endif // 0
1472 subdir('src/login')
1473
1474 #if 0 /// UNNEEDED by elogind
1475 # libjournal_core = static_library(
1476 #         'journal-core',
1477 #         libjournal_core_sources,
1478 #         journald_gperf_c,
1479 #         include_directories : includes,
1480 #         install : false)
1481 #endif // 0
1482
1483 libelogind_sym_path = '@0@/@1@'.format(meson.current_source_dir(), libelogind_sym)
1484 libelogind = shared_library(
1485         'elogind',
1486         'src/systemd/sd-id128.h', # pick a header file at random to work around old meson bug
1487         version : libelogind_version,
1488         include_directories : includes,
1489         link_args : ['-shared',
1490                      '-Wl,--version-script=' + libelogind_sym_path],
1491 #if 0 /// elogind does not need gcrypt or libjournal_client, only threads.
1492 #         link_with : [libbasic,
1493 #                      libbasic_gcrypt],
1494 #         link_whole : [libsystemd_static,
1495 #                       libjournal_client],
1496 #         dependencies : [threads,
1497 #                         librt,
1498 #                         libxz,
1499 #                         liblz4],
1500 #         link_depends : libsystemd_sym,
1501 #else
1502         link_with : [libbasic],
1503         link_whole : [libelogind_static],
1504         dependencies : [threads],
1505         link_depends : libelogind_sym,
1506 #endif // 0
1507         install : true,
1508         install_dir : rootlibdir)
1509
1510 static_libelogind = get_option('static-libelogind')
1511 static_libelogind_pic = static_libelogind == 'true' or static_libelogind == 'pic'
1512
1513 install_libelogind_static = static_library(
1514         'elogind',
1515         libelogind_sources,
1516         journal_client_sources,
1517         basic_sources,
1518         basic_gcrypt_sources,
1519         include_directories : includes,
1520         build_by_default : static_libelogind != 'false',
1521         install : static_libelogind != 'false',
1522         install_dir : rootlibdir,
1523         pic : static_libelogind == 'true' or static_libelogind == 'pic',
1524         dependencies : [threads,
1525                         librt,
1526                         libxz,
1527                         liblz4,
1528                         libcap,
1529                         libblkid,
1530                         libmount,
1531                         libselinux,
1532                         libgcrypt],
1533         c_args : libelogind_c_args + (static_libelogind_pic ? [] : ['-fno-PIC']))
1534
1535 ############################################################
1536
1537 # binaries that have --help and are intended for use by humans,
1538 # usually, but not always, installed in /bin.
1539 public_programs = []
1540
1541 #if 0 /// UNNEEDED by elogind
1542 # subdir('src/libudev')
1543 #else
1544 # elogind depends on external libudev:
1545 libudev = dependency('libudev', required : true)
1546 #endif // 0
1547 subdir('src/shared')
1548 #if 0 /// UNNEEDED by elogind
1549 # subdir('src/core')
1550 # subdir('src/udev')
1551 # subdir('src/network')
1552
1553 # subdir('src/analyze')
1554 # subdir('src/journal-remote')
1555 # subdir('src/coredump')
1556 # subdir('src/hostname')
1557 # subdir('src/import')
1558 # subdir('src/kernel-install')
1559 # subdir('src/locale')
1560 # subdir('src/machine')
1561 # subdir('src/nspawn')
1562 # subdir('src/resolve')
1563 # subdir('src/timedate')
1564 # subdir('src/timesync')
1565 # subdir('src/vconsole')
1566 # subdir('src/boot/efi')
1567 #endif // 0
1568
1569 subdir('src/test')
1570 #if 0 /// UNNEEDED by elogind
1571 # subdir('src/fuzz')
1572 # subdir('rules')
1573 # subdir('test')
1574 #endif // 0
1575
1576 ############################################################
1577
1578 # only static linking apart from libdl, to make sure that the
1579 # module is linked to all libraries that it uses.
1580 test_dlopen = executable(
1581         'test-dlopen',
1582         test_dlopen_c,
1583         include_directories : includes,
1584         link_with : [libbasic],
1585         dependencies : [libdl])
1586
1587 #if 0 /// UNNEEDED by elogind
1588 # foreach tuple : [['myhostname', 'ENABLE_MYHOSTNAME'],
1589 #                  ['systemd',    'ENABLE_NSS_SYSTEMD'],
1590 #                  ['mymachines', 'ENABLE_MACHINED'],
1591 #                  ['resolve',    'ENABLE_RESOLVE']]
1592
1593 #         condition = tuple[1] == '' or conf.get(tuple[1]) == 1
1594 #         if condition
1595 #                 module = tuple[0]
1596
1597 #                 sym = 'src/nss-@0@/nss-@0@.sym'.format(module)
1598 #                 version_script_arg = join_paths(meson.current_source_dir(), sym)
1599
1600 #                 nss = shared_library(
1601 #                         'nss_' + module,
1602 #                         'src/nss-@0@/nss-@0@.c'.format(module),
1603 #                         version : '2',
1604 #                         include_directories : includes,
1605 #                         # Note that we link NSS modules with '-z nodelete' so that mempools never get orphaned
1606 #                         link_args : ['-Wl,-z,nodelete',
1607 #                                      '-shared',
1608 #                                      '-Wl,--version-script=' + version_script_arg,
1609 #                                      '-Wl,--undefined'],
1610 #                         link_with : [libsystemd_static,
1611 #                                      libbasic],
1612 #                         dependencies : [threads,
1613 #                                         librt],
1614 #                         link_depends : sym,
1615 #                         install : true,
1616 #                         install_dir : rootlibdir)
1617
1618 #                 # We cannot use shared_module because it does not support version suffix.
1619 #                 # Unfortunately shared_library insists on creating the symlink…
1620 #                 meson.add_install_script('sh', '-c',
1621 #                                          'rm $DESTDIR@0@/libnss_@1@.so'
1622 #                                          .format(rootlibdir, module))
1623
1624 #                 test('dlopen-nss_' + module,
1625 #                      test_dlopen,
1626 #                      args : [nss.full_path()]) # path to dlopen must include a slash
1627 #         endif
1628 # endforeach
1629 #endif // 0
1630
1631 ############################################################
1632
1633 #if 0 /// UNNEEDED by elogind
1634 # executable('systemd',
1635 #            systemd_sources,
1636 #            include_directories : includes,
1637 #            link_with : [libcore,
1638 #                         libshared],
1639 #            dependencies : [threads,
1640 #                            librt,
1641 #                            libseccomp,
1642 #                            libselinux,
1643 #                            libmount,
1644 #                            libblkid],
1645 #            install_rpath : rootlibexecdir,
1646 #            install : true,
1647 #            install_dir : rootlibexecdir)
1648
1649 # meson.add_install_script(meson_make_symlink,
1650 #                          join_paths(rootlibexecdir, 'systemd'),
1651 #                          join_paths(rootsbindir, 'init'))
1652
1653 # exe = executable('systemd-analyze',
1654 #                  systemd_analyze_sources,
1655 #                  include_directories : includes,
1656 #                  link_with : [libcore,
1657 #                               libshared],
1658 #                  dependencies : [threads,
1659 #                                  librt,
1660 #                                  libseccomp,
1661 #                                  libselinux,
1662 #                                  libmount,
1663 #                                  libblkid],
1664 #                  install_rpath : rootlibexecdir,
1665 #                  install : true)
1666 # public_programs += [exe]
1667
1668 # executable('systemd-journald',
1669 #            systemd_journald_sources,
1670 #            include_directories : includes,
1671 #            link_with : [libjournal_core,
1672 #                         libshared],
1673 #            dependencies : [threads,
1674 #                            libxz,
1675 #                            liblz4,
1676 #                            libselinux],
1677 #            install_rpath : rootlibexecdir,
1678 #            install : true,
1679 #            install_dir : rootlibexecdir)
1680
1681 # exe = executable('systemd-cat',
1682 #                  systemd_cat_sources,
1683 #                  include_directories : includes,
1684 #                  link_with : [libjournal_core,
1685 #                               libshared],
1686 #                  dependencies : [threads],
1687 #                  install_rpath : rootlibexecdir,
1688 #                  install : true)
1689 # public_programs += [exe]
1690
1691 # exe = executable('journalctl',
1692 #                  journalctl_sources,
1693 #                  include_directories : includes,
1694 #                  link_with : [libshared],
1695 #                  dependencies : [threads,
1696 #                                  libqrencode,
1697 #                                  libxz,
1698 #                                  liblz4,
1699 #                                  libpcre2],
1700 #                  install_rpath : rootlibexecdir,
1701 #                  install : true,
1702 #                  install_dir : rootbindir)
1703 # public_programs += [exe]
1704
1705 # executable('systemd-getty-generator',
1706 #            'src/getty-generator/getty-generator.c',
1707 #            include_directories : includes,
1708 #            link_with : [libshared],
1709 #            install_rpath : rootlibexecdir,
1710 #            install : true,
1711 #            install_dir : systemgeneratordir)
1712
1713 # executable('systemd-debug-generator',
1714 #            'src/debug-generator/debug-generator.c',
1715 #            include_directories : includes,
1716 #            link_with : [libshared],
1717 #            install_rpath : rootlibexecdir,
1718 #            install : true,
1719 #            install_dir : systemgeneratordir)
1720
1721 # executable('systemd-fstab-generator',
1722 #            'src/fstab-generator/fstab-generator.c',
1723 #            'src/core/mount-setup.c',
1724 #            include_directories : includes,
1725 #            link_with : [libshared],
1726 #            install_rpath : rootlibexecdir,
1727 #            install : true,
1728 #            install_dir : systemgeneratordir)
1729
1730 # if conf.get('ENABLE_ENVIRONMENT_D') == 1
1731 #         executable('30-systemd-environment-d-generator',
1732 #                    'src/environment-d-generator/environment-d-generator.c',
1733 #                    include_directories : includes,
1734 #                    link_with : [libshared],
1735 #                    install_rpath : rootlibexecdir,
1736 #                    install : true,
1737 #                    install_dir : userenvgeneratordir)
1738
1739 #         meson.add_install_script(meson_make_symlink,
1740 #                                  join_paths(sysconfdir, 'environment'),
1741 #                                  join_paths(environmentdir, '99-environment.conf'))
1742 # endif
1743
1744 # if conf.get('ENABLE_HIBERNATE') == 1
1745 #         executable('systemd-hibernate-resume-generator',
1746 #                    'src/hibernate-resume/hibernate-resume-generator.c',
1747 #                    include_directories : includes,
1748 #                    link_with : [libshared],
1749 #                    install_rpath : rootlibexecdir,
1750 #                    install : true,
1751 #                    install_dir : systemgeneratordir)
1752
1753 #         executable('systemd-hibernate-resume',
1754 #                    'src/hibernate-resume/hibernate-resume.c',
1755 #                    include_directories : includes,
1756 #                    link_with : [libshared],
1757 #                    install_rpath : rootlibexecdir,
1758 #                    install : true,
1759 #                    install_dir : rootlibexecdir)
1760 # endif
1761
1762 # if conf.get('HAVE_BLKID') == 1
1763 #         executable('systemd-gpt-auto-generator',
1764 #                    'src/gpt-auto-generator/gpt-auto-generator.c',
1765 #                    'src/basic/blkid-util.h',
1766 #                    include_directories : includes,
1767 #                    link_with : [libshared],
1768 #                    dependencies : libblkid,
1769 #                    install_rpath : rootlibexecdir,
1770 #                    install : true,
1771 #                    install_dir : systemgeneratordir)
1772
1773 #         exe = executable('systemd-dissect',
1774 #                          'src/dissect/dissect.c',
1775 #                          include_directories : includes,
1776 #                          link_with : [libshared],
1777 #                          install_rpath : rootlibexecdir,
1778 #                          install : true,
1779 #                          install_dir : rootlibexecdir)
1780 #         public_programs += [exe]
1781 # endif
1782
1783 # if conf.get('ENABLE_RESOLVE') == 1
1784 #         executable('systemd-resolved',
1785 #                    systemd_resolved_sources,
1786 #                    include_directories : includes,
1787 #                    link_with : [libshared,
1788 #                                 libbasic_gcrypt,
1789 #                                 libsystemd_resolve_core],
1790 #                    dependencies : [threads,
1791 #                                    libgpg_error,
1792 #                                    libm,
1793 #                                    libidn],
1794 #                    install_rpath : rootlibexecdir,
1795 #                    install : true,
1796 #                    install_dir : rootlibexecdir)
1797
1798 #         exe = executable('resolvectl',
1799 #                          resolvectl_sources,
1800 #                          include_directories : includes,
1801 #                          link_with : [libshared,
1802 #                                       libbasic_gcrypt,
1803 #                                       libsystemd_resolve_core],
1804 #                          dependencies : [threads,
1805 #                                          libgpg_error,
1806 #                                          libm,
1807 #                                          libidn],
1808 #                          install_rpath : rootlibexecdir,
1809 #                          install : true)
1810 #         public_programs += [exe]
1811
1812 #         meson.add_install_script(meson_make_symlink,
1813 #                          join_paths(bindir, 'resolvectl'),
1814 #                          join_paths(rootsbindir, 'resolvconf'))
1815
1816 #         meson.add_install_script(meson_make_symlink,
1817 #                          join_paths(bindir, 'resolvectl'),
1818 #                          join_paths(bindir, 'systemd-resolve'))
1819 # endif
1820
1821 # if conf.get('ENABLE_LOGIND') == 1
1822 #         executable('systemd-logind',
1823 #                    systemd_logind_sources,
1824 #                    include_directories : includes,
1825 #                    link_with : [liblogind_core,
1826 #                                 libshared],
1827 #                    dependencies : [threads,
1828 #                                    libacl],
1829 #                    install_rpath : rootlibexecdir,
1830 #                    install : true,
1831 #                    install_dir : rootlibexecdir)
1832
1833 #         exe = executable('loginctl',
1834 #                          loginctl_sources,
1835 #                          include_directories : includes,
1836 #                          link_with : [libshared],
1837 #                          dependencies : [threads,
1838 #                                          liblz4,
1839 #                                          libxz],
1840 #                          install_rpath : rootlibexecdir,
1841 #                          install : true,
1842 #                          install_dir : rootbindir)
1843 #         public_programs += [exe]
1844
1845 #         exe = executable('systemd-inhibit',
1846 #                          'src/login/inhibit.c',
1847 #                          include_directories : includes,
1848 #                          link_with : [libshared],
1849 #                          install_rpath : rootlibexecdir,
1850 #                          install : true,
1851 #                          install_dir : rootbindir)
1852 #         public_programs += [exe]
1853
1854 #         if conf.get('HAVE_PAM') == 1
1855 #                 version_script_arg = join_paths(meson.current_source_dir(), pam_systemd_sym)
1856 #                 pam_systemd = shared_library(
1857 #                         'pam_systemd',
1858 #                         pam_systemd_c,
1859 #                         name_prefix : '',
1860 #                         include_directories : includes,
1861 #                         link_args : ['-shared',
1862 #                                      '-Wl,--version-script=' + version_script_arg],
1863 #                         link_with : [libsystemd_static,
1864 #                                      libshared_static],
1865 #                         dependencies : [threads,
1866 #                                         libpam,
1867 #                                         libpam_misc],
1868 #                         link_depends : pam_systemd_sym,
1869 #                         install : true,
1870 #                         install_dir : pamlibdir)
1871
1872 #                 test('dlopen-pam_systemd',
1873 #                      test_dlopen,
1874 #                      args : [pam_systemd.full_path()]) # path to dlopen must include a slash
1875 #         endif
1876 # endif
1877
1878 #else
1879
1880 executable('elogind',
1881                 elogind_sources,
1882                 include_directories : includes,
1883                 link_with : [liblogind_core,
1884                              libshared],
1885                 dependencies : [threads,
1886                                 libacl,
1887                                 libudev],
1888                 install_rpath : rootlibexecdir,
1889                 install : true,
1890                 install_dir : rootlibexecdir)
1891
1892 exe = executable('loginctl',
1893                         loginctl_sources,
1894                         include_directories : includes,
1895                         link_with : [libshared],
1896                         dependencies : [threads,
1897                                         libudev],
1898                         install_rpath : rootlibexecdir,
1899                         install : true,
1900                         install_dir : rootbindir)
1901 public_programs += [exe]
1902
1903 exe = executable('elogind-inhibit',
1904                         'src/login/inhibit.c',
1905                         include_directories : includes,
1906                         link_with : [libshared],
1907                         dependencies : [threads],
1908                         install_rpath : rootlibexecdir,
1909                         install : true,
1910                         install_dir : rootbindir)
1911 public_programs += [exe]
1912 executable('elogind-user-runtime-dir',
1913 executable('elogind-user-runtime-dir',
1914 executable('elogind-user-runtime-dir',
1915 executable('elogind-user-runtime-dir',
1916            user_runtime_dir_sources,
1917            include_directories : includes,
1918            link_with : [libshared, liblogind_core],
1919            install_rpath : rootlibexecdir,
1920            install : true,
1921            install_dir : rootlibexecdir)
1922
1923 if conf.get('HAVE_PAM') == 1
1924         version_script_arg = join_paths(meson.current_source_dir(), pam_elogind_sym)
1925         pam_elogind = shared_library(
1926                 'pam_elogind',
1927                 pam_elogind_c,
1928                 name_prefix : '',
1929                 include_directories : includes,
1930                 link_args : ['-shared',
1931                                 '-Wl,--version-script=' + version_script_arg],
1932                 link_with : [libelogind_static,
1933                              libshared_static],
1934                 dependencies : [threads,
1935                                 libpam,
1936                                 libpam_misc],
1937                 link_depends : pam_elogind_sym,
1938                 install : true,
1939                 install_dir : pamlibdir)
1940
1941         test('dlopen-pam_elogind',
1942              test_dlopen,
1943              args : [pam_elogind.full_path()]) # path to dlopen must include a slash
1944 endif
1945 #endif // 0
1946 #if 0 /// UNNEEDED by elogind
1947 #         executable('systemd-user-sessions',
1948 #                    'src/user-sessions/user-sessions.c',
1949 #                    include_directories : includes,
1950 #                    link_with : [libshared],
1951 #                    install_rpath : rootlibexecdir,
1952 #                    install : true,
1953 #                    install_dir : rootlibexecdir)
1954 # endif
1955
1956 # if conf.get('ENABLE_EFI') == 1 and conf.get('HAVE_BLKID') == 1
1957 #         exe = executable('bootctl',
1958 #                          'src/boot/bootctl.c',
1959 #                          include_directories : includes,
1960 #                          link_with : [libshared],
1961 #                          dependencies : [libblkid],
1962 #                          install_rpath : rootlibexecdir,
1963 #                          install : true)
1964 #         public_programs += [exe]
1965 # endif
1966
1967 # exe = executable('systemd-socket-activate', 'src/activate/activate.c',
1968 #                  include_directories : includes,
1969 #                  link_with : [libshared],
1970 #                  dependencies : [threads],
1971 #                  install_rpath : rootlibexecdir,
1972 #                  install : true)
1973 # public_programs += [exe]
1974
1975 # exe = executable('systemctl', 'src/systemctl/systemctl.c',
1976 #                  include_directories : includes,
1977 #                  link_with : [libshared],
1978 #                  dependencies : [threads,
1979 #                                  libcap,
1980 #                                  libselinux,
1981 #                                  libxz,
1982 #                                  liblz4],
1983 #                  install_rpath : rootlibexecdir,
1984 #                  install : true,
1985 #                  install_dir : rootbindir)
1986 # public_programs += [exe]
1987
1988 # foreach alias : ['halt', 'poweroff', 'reboot', 'runlevel', 'shutdown', 'telinit']
1989 #         meson.add_install_script(meson_make_symlink,
1990 #                                  join_paths(rootbindir, 'systemctl'),
1991 #                                  join_paths(rootsbindir, alias))
1992 # endforeach
1993
1994 # if conf.get('ENABLE_BACKLIGHT') == 1
1995 #         executable('systemd-backlight',
1996 #                    'src/backlight/backlight.c',
1997 #                    include_directories : includes,
1998 #                    link_with : [libshared],
1999 #                    install_rpath : rootlibexecdir,
2000 #                    install : true,
2001 #                    install_dir : rootlibexecdir)
2002 # endif
2003
2004 # if conf.get('ENABLE_RFKILL') == 1
2005 #         executable('systemd-rfkill',
2006 #                    'src/rfkill/rfkill.c',
2007 #                    include_directories : includes,
2008 #                    link_with : [libshared],
2009 #                    install_rpath : rootlibexecdir,
2010 #                    install : true,
2011 #                    install_dir : rootlibexecdir)
2012 # endif
2013
2014 # executable('systemd-system-update-generator',
2015 #            'src/system-update-generator/system-update-generator.c',
2016 #            include_directories : includes,
2017 #            link_with : [libshared],
2018 #            install_rpath : rootlibexecdir,
2019 #            install : true,
2020 #            install_dir : systemgeneratordir)
2021
2022 # if conf.get('HAVE_LIBCRYPTSETUP') == 1
2023 #         executable('systemd-cryptsetup',
2024 #                    'src/cryptsetup/cryptsetup.c',
2025 #                    include_directories : includes,
2026 #                    link_with : [libshared],
2027 #                    dependencies : [libcryptsetup],
2028 #                    install_rpath : rootlibexecdir,
2029 #                    install : true,
2030 #                    install_dir : rootlibexecdir)
2031
2032 #         executable('systemd-cryptsetup-generator',
2033 #                    'src/cryptsetup/cryptsetup-generator.c',
2034 #                    include_directories : includes,
2035 #                    link_with : [libshared],
2036 #                    dependencies : [libcryptsetup],
2037 #                    install_rpath : rootlibexecdir,
2038 #                    install : true,
2039 #                    install_dir : systemgeneratordir)
2040
2041 #         executable('systemd-veritysetup',
2042 #                    'src/veritysetup/veritysetup.c',
2043 #                    include_directories : includes,
2044 #                    link_with : [libshared],
2045 #                    dependencies : [libcryptsetup],
2046 #                    install_rpath : rootlibexecdir,
2047 #                    install : true,
2048 #                    install_dir : rootlibexecdir)
2049
2050 #         executable('systemd-veritysetup-generator',
2051 #                    'src/veritysetup/veritysetup-generator.c',
2052 #                    include_directories : includes,
2053 #                    link_with : [libshared],
2054 #                    dependencies : [libcryptsetup],
2055 #                    install_rpath : rootlibexecdir,
2056 #                    install : true,
2057 #                    install_dir : systemgeneratordir)
2058 # endif
2059
2060 # if conf.get('HAVE_SYSV_COMPAT') == 1
2061 #         executable('systemd-sysv-generator',
2062 #                    'src/sysv-generator/sysv-generator.c',
2063 #                    include_directories : includes,
2064 #                    link_with : [libshared],
2065 #                    install_rpath : rootlibexecdir,
2066 #                    install : true,
2067 #                    install_dir : systemgeneratordir)
2068
2069 #         executable('systemd-rc-local-generator',
2070 #                    'src/rc-local-generator/rc-local-generator.c',
2071 #                    include_directories : includes,
2072 #                    link_with : [libshared],
2073 #                    install_rpath : rootlibexecdir,
2074 #                    install : true,
2075 #                    install_dir : systemgeneratordir)
2076 # endif
2077
2078 # if conf.get('ENABLE_HOSTNAMED') == 1
2079 #         executable('systemd-hostnamed',
2080 #                    'src/hostname/hostnamed.c',
2081 #                    include_directories : includes,
2082 #                    link_with : [libshared],
2083 #                    install_rpath : rootlibexecdir,
2084 #                    install : true,
2085 #                    install_dir : rootlibexecdir)
2086
2087 #         exe = executable('hostnamectl',
2088 #                          'src/hostname/hostnamectl.c',
2089 #                          include_directories : includes,
2090 #                          link_with : [libshared],
2091 #                          install_rpath : rootlibexecdir,
2092 #                          install : true)
2093 #         public_programs += [exe]
2094 # endif
2095
2096 # if conf.get('ENABLE_LOCALED') == 1
2097 #         if conf.get('HAVE_XKBCOMMON') == 1
2098 #                 # logind will load libxkbcommon.so dynamically on its own
2099 #                 deps = [libdl]
2100 #         else
2101 #                 deps = []
2102 #         endif
2103
2104 #         executable('systemd-localed',
2105 #                    systemd_localed_sources,
2106 #                    include_directories : includes,
2107 #                    link_with : [libshared],
2108 #                    dependencies : deps,
2109 #                    install_rpath : rootlibexecdir,
2110 #                    install : true,
2111 #                    install_dir : rootlibexecdir)
2112
2113 #         exe = executable('localectl',
2114 #                          localectl_sources,
2115 #                          include_directories : includes,
2116 #                          link_with : [libshared],
2117 #                          install_rpath : rootlibexecdir,
2118 #                          install : true)
2119 #         public_programs += [exe]
2120 # endif
2121
2122 # if conf.get('ENABLE_TIMEDATED') == 1
2123 #         executable('systemd-timedated',
2124 #                    'src/timedate/timedated.c',
2125 #                    include_directories : includes,
2126 #                    link_with : [libshared],
2127 #                    install_rpath : rootlibexecdir,
2128 #                    install : true,
2129 #                    install_dir : rootlibexecdir)
2130 # endif
2131
2132 # if conf.get('ENABLE_TIMEDATECTL') == 1
2133 #         exe = executable('timedatectl',
2134 #                          'src/timedate/timedatectl.c',
2135 #                          include_directories : includes,
2136 #                          install_rpath : rootlibexecdir,
2137 #                          link_with : [libshared],
2138 #                          dependencies : [libm],
2139 #                          install : true)
2140 #         public_programs += [exe]
2141 # endif
2142
2143 # if conf.get('ENABLE_TIMESYNCD') == 1
2144 #         executable('systemd-timesyncd',
2145 #                    systemd_timesyncd_sources,
2146 #                    include_directories : includes,
2147 #                    link_with : [libshared],
2148 #                    dependencies : [threads,
2149 #                                    libm],
2150 #                    install_rpath : rootlibexecdir,
2151 #                    install : true,
2152 #                    install_dir : rootlibexecdir)
2153
2154 #         executable('systemd-time-wait-sync',
2155 #                    'src/time-wait-sync/time-wait-sync.c',
2156 #                    include_directories : includes,
2157 #                    link_with : [libshared],
2158 #                    install_rpath : rootlibexecdir,
2159 #                    install : true,
2160 #                    install_dir : rootlibexecdir)
2161 # endif
2162
2163 # if conf.get('ENABLE_MACHINED') == 1
2164 #         executable('systemd-machined',
2165 #                    systemd_machined_sources,
2166 #                    include_directories : includes,
2167 #                    link_with : [libmachine_core,
2168 #                                 libshared],
2169 #                    install_rpath : rootlibexecdir,
2170 #                    install : true,
2171 #                    install_dir : rootlibexecdir)
2172
2173 #         exe = executable('machinectl',
2174 #                          'src/machine/machinectl.c',
2175 #                          include_directories : includes,
2176 #                          link_with : [libshared],
2177 #                          dependencies : [threads,
2178 #                                          libxz,
2179 #                                          liblz4],
2180 #                          install_rpath : rootlibexecdir,
2181 #                          install : true,
2182 #                          install_dir : rootbindir)
2183 #         public_programs += [exe]
2184 # endif
2185
2186 # if conf.get('ENABLE_IMPORTD') == 1
2187 #         executable('systemd-importd',
2188 #                    systemd_importd_sources,
2189 #                    include_directories : includes,
2190 #                    link_with : [libshared],
2191 #                    dependencies : [threads],
2192 #                    install_rpath : rootlibexecdir,
2193 #                    install : true,
2194 #                    install_dir : rootlibexecdir)
2195
2196 #         systemd_pull = executable('systemd-pull',
2197 #                                   systemd_pull_sources,
2198 #                                   include_directories : includes,
2199 #                                   link_with : [libshared],
2200 #                                   dependencies : [libcurl,
2201 #                                                   libz,
2202 #                                                   libbzip2,
2203 #                                                   libxz,
2204 #                                                   libgcrypt],
2205 #                                   install_rpath : rootlibexecdir,
2206 #                                   install : true,
2207 #                                   install_dir : rootlibexecdir)
2208
2209 #         systemd_import = executable('systemd-import',
2210 #                                     systemd_import_sources,
2211 #                                     include_directories : includes,
2212 #                                     link_with : [libshared],
2213 #                                     dependencies : [libcurl,
2214 #                                                     libz,
2215 #                                                     libbzip2,
2216 #                                                     libxz],
2217 #                                     install_rpath : rootlibexecdir,
2218 #                                     install : true,
2219 #                                     install_dir : rootlibexecdir)
2220
2221 #         systemd_export = executable('systemd-export',
2222 #                                     systemd_export_sources,
2223 #                                     include_directories : includes,
2224 #                                     link_with : [libshared],
2225 #                                     dependencies : [libcurl,
2226 #                                                     libz,
2227 #                                                     libbzip2,
2228 #                                                     libxz],
2229 #                                     install_rpath : rootlibexecdir,
2230 #                                     install : true,
2231 #                                     install_dir : rootlibexecdir)
2232 #         public_programs += [systemd_pull, systemd_import, systemd_export]
2233 # endif
2234
2235 # if conf.get('ENABLE_REMOTE') == 1 and conf.get('HAVE_LIBCURL') == 1
2236 #         exe = executable('systemd-journal-upload',
2237 #                          systemd_journal_upload_sources,
2238 #                          include_directories : includes,
2239 #                          link_with : [libshared],
2240 #                          dependencies : [threads,
2241 #                                          libcurl,
2242 #                                          libgnutls,
2243 #                                          libxz,
2244 #                                          liblz4],
2245 #                          install_rpath : rootlibexecdir,
2246 #                          install : true,
2247 #                          install_dir : rootlibexecdir)
2248 #         public_programs += [exe]
2249 # endif
2250
2251 # if conf.get('ENABLE_REMOTE') == 1 and conf.get('HAVE_MICROHTTPD') == 1
2252 #         s_j_remote = executable('systemd-journal-remote',
2253 #                                 systemd_journal_remote_sources,
2254 #                                 include_directories : includes,
2255 #                                 link_with : [libshared],
2256 #                                 dependencies : [threads,
2257 #                                                 libmicrohttpd,
2258 #                                                 libgnutls,
2259 #                                                 libxz,
2260 #                                                 liblz4],
2261 #                                 install_rpath : rootlibexecdir,
2262 #                                 install : true,
2263 #                                 install_dir : rootlibexecdir)
2264
2265 #         s_j_gatewayd = executable('systemd-journal-gatewayd',
2266 #                                   systemd_journal_gatewayd_sources,
2267 #                                   include_directories : includes,
2268 #                                   link_with : [libshared],
2269 #                                   dependencies : [threads,
2270 #                                                   libmicrohttpd,
2271 #                                                   libgnutls,
2272 #                                                   libxz,
2273 #                                                   liblz4],
2274 #                                   install_rpath : rootlibexecdir,
2275 #                                   install : true,
2276 #                                   install_dir : rootlibexecdir)
2277 #         public_programs += [s_j_remote, s_j_gatewayd]
2278 # endif
2279
2280 # if conf.get('ENABLE_COREDUMP') == 1
2281 #         executable('systemd-coredump',
2282 #                    systemd_coredump_sources,
2283 #                    include_directories : includes,
2284 #                    link_with : [libshared],
2285 #                    dependencies : [threads,
2286 #                                    libacl,
2287 #                                    libdw,
2288 #                                    libxz,
2289 #                                    liblz4],
2290 #                    install_rpath : rootlibexecdir,
2291 #                    install : true,
2292 #                    install_dir : rootlibexecdir)
2293
2294 #         exe = executable('coredumpctl',
2295 #                          coredumpctl_sources,
2296 #                          include_directories : includes,
2297 #                          link_with : [libshared],
2298 #                          dependencies : [threads,
2299 #                                          libxz,
2300 #                                          liblz4],
2301 #                          install_rpath : rootlibexecdir,
2302 #                          install : true)
2303 #         public_programs += [exe]
2304 # endif
2305
2306 # if conf.get('ENABLE_BINFMT') == 1
2307 #         exe = executable('systemd-binfmt',
2308 #                          'src/binfmt/binfmt.c',
2309 #                          include_directories : includes,
2310 #                          link_with : [libshared],
2311 #                          install_rpath : rootlibexecdir,
2312 #                          install : true,
2313 #                          install_dir : rootlibexecdir)
2314 #         public_programs += [exe]
2315
2316 #         meson.add_install_script('sh', '-c',
2317 #                                  mkdir_p.format(binfmtdir))
2318 #         meson.add_install_script('sh', '-c',
2319 #                                  mkdir_p.format(join_paths(sysconfdir, 'binfmt.d')))
2320 # endif
2321
2322 # if conf.get('ENABLE_VCONSOLE') == 1
2323 #         executable('systemd-vconsole-setup',
2324 #                    'src/vconsole/vconsole-setup.c',
2325 #                    include_directories : includes,
2326 #                    link_with : [libshared],
2327 #                    install_rpath : rootlibexecdir,
2328 #                    install : true,
2329 #                    install_dir : rootlibexecdir)
2330 # endif
2331
2332 # if conf.get('ENABLE_RANDOMSEED') == 1
2333 #         executable('systemd-random-seed',
2334 #                    'src/random-seed/random-seed.c',
2335 #                    include_directories : includes,
2336 #                    link_with : [libshared],
2337 #                    install_rpath : rootlibexecdir,
2338 #                    install : true,
2339 #                    install_dir : rootlibexecdir)
2340 # endif
2341
2342 # if conf.get('ENABLE_FIRSTBOOT') == 1
2343 #         executable('systemd-firstboot',
2344 #                    'src/firstboot/firstboot.c',
2345 #                    include_directories : includes,
2346 #                    link_with : [libshared],
2347 #                    dependencies : [libcrypt],
2348 #                    install_rpath : rootlibexecdir,
2349 #                    install : true,
2350 #                    install_dir : rootbindir)
2351 # endif
2352
2353 # executable('systemd-remount-fs',
2354 #            'src/remount-fs/remount-fs.c',
2355 #            'src/core/mount-setup.c',
2356 #            'src/core/mount-setup.h',
2357 #            include_directories : includes,
2358 #            link_with : [libshared],
2359 #            install_rpath : rootlibexecdir,
2360 #            install : true,
2361 #            install_dir : rootlibexecdir)
2362
2363 # executable('systemd-machine-id-setup',
2364 #            'src/machine-id-setup/machine-id-setup-main.c',
2365 #            'src/core/machine-id-setup.c',
2366 #            'src/core/machine-id-setup.h',
2367 #            include_directories : includes,
2368 #            link_with : [libshared],
2369 #            install_rpath : rootlibexecdir,
2370 #            install : true,
2371 #            install_dir : rootbindir)
2372
2373 # executable('systemd-fsck',
2374 #            'src/fsck/fsck.c',
2375 #            include_directories : includes,
2376 #            link_with : [libshared],
2377 #            install_rpath : rootlibexecdir,
2378 #            install : true,
2379 #            install_dir : rootlibexecdir)
2380
2381 # executable('elogind-growfs',
2382 #            'src/partition/growfs.c',
2383 #            include_directories : includes,
2384 #            link_with : [libshared],
2385 #            dependencies : [libcryptsetup],
2386 #            install_rpath : rootlibexecdir,
2387 #            install : true,
2388 #            install_dir : rootlibexecdir)
2389
2390 # executable('elogind-makefs',
2391 #            'src/partition/makefs.c',
2392 #            include_directories : includes,
2393 #            link_with : [libshared],
2394 #            install_rpath : rootlibexecdir,
2395 #            install : true,
2396 #            install_dir : rootlibexecdir)
2397
2398 # executable('systemd-sleep',
2399 #            'src/sleep/sleep.c',
2400 #            include_directories : includes,
2401 #            link_with : [libshared],
2402 #            install_rpath : rootlibexecdir,
2403 #            install : true,
2404 #            install_dir : rootlibexecdir)
2405
2406 # exe = executable('systemd-sysctl',
2407 #                  'src/sysctl/sysctl.c',
2408 #                  include_directories : includes,
2409 #                  link_with : [libshared],
2410 #                  install_rpath : rootlibexecdir,
2411 #                  install : true,
2412 #                  install_dir : rootlibexecdir)
2413 # public_programs += [exe]
2414
2415 # executable('systemd-ac-power',
2416 #            'src/ac-power/ac-power.c',
2417 #            include_directories : includes,
2418 #            link_with : [libshared],
2419 #            install_rpath : rootlibexecdir,
2420 #            install : true,
2421 #            install_dir : rootlibexecdir)
2422
2423 # exe = executable('systemd-detect-virt',
2424 #                  'src/detect-virt/detect-virt.c',
2425 #                  include_directories : includes,
2426 #                  link_with : [libshared],
2427 #                  install_rpath : rootlibexecdir,
2428 #                  install : true)
2429 # public_programs += [exe]
2430
2431 # exe = executable('systemd-delta',
2432 #                  'src/delta/delta.c',
2433 #                  include_directories : includes,
2434 #                  link_with : [libshared],
2435 #                  install_rpath : rootlibexecdir,
2436 #                  install : true)
2437 # public_programs += [exe]
2438
2439 # exe = executable('systemd-escape',
2440 #                  'src/escape/escape.c',
2441 #                  include_directories : includes,
2442 #                  link_with : [libshared],
2443 #                  install_rpath : rootlibexecdir,
2444 #                  install : true,
2445 #                  install_dir : rootbindir)
2446 # public_programs += [exe]
2447
2448 # exe = executable('systemd-notify',
2449 #                  'src/notify/notify.c',
2450 #                  include_directories : includes,
2451 #                  link_with : [libshared],
2452 #                  install_rpath : rootlibexecdir,
2453 #                  install : true,
2454 #                  install_dir : rootbindir)
2455 # public_programs += [exe]
2456
2457 # executable('systemd-volatile-root',
2458 #            'src/volatile-root/volatile-root.c',
2459 #            include_directories : includes,
2460 #            link_with : [libshared],
2461 #            install_rpath : rootlibexecdir,
2462 #            install : true,
2463 #            install_dir : rootlibexecdir)
2464
2465 # executable('systemd-cgroups-agent',
2466 #            'src/cgroups-agent/cgroups-agent.c',
2467 #            include_directories : includes,
2468 #            link_with : [libshared],
2469 #            install_rpath : rootlibexecdir,
2470 #            install : true,
2471 #            install_dir : rootlibexecdir)
2472 #else
2473 executable('elogind-cgroups-agent',
2474            'src/cgroups-agent/cgroups-agent.c',
2475            include_directories : includes,
2476            link_with : [libshared],
2477            install_rpath : rootlibexecdir,
2478            install : true,
2479            install_dir : rootlibexecdir)
2480 #endif // 0
2481
2482 #if 0 /// UNNEEDED by elogind
2483 # exe = executable('systemd-path',
2484 #                  'src/path/path.c',
2485 #                  include_directories : includes,
2486 #                  link_with : [libshared],
2487 #                  install_rpath : rootlibexecdir,
2488 #                  install : true)
2489 # public_programs += [exe]
2490
2491 # exe = executable('systemd-ask-password',
2492 #                  'src/ask-password/ask-password.c',
2493 #                  include_directories : includes,
2494 #                  link_with : [libshared],
2495 #                  install_rpath : rootlibexecdir,
2496 #                  install : true,
2497 #                  install_dir : rootbindir)
2498 # public_programs += [exe]
2499
2500 # executable('systemd-reply-password',
2501 #            'src/reply-password/reply-password.c',
2502 #            include_directories : includes,
2503 #            link_with : [libshared],
2504 #            install_rpath : rootlibexecdir,
2505 #            install : true,
2506 #            install_dir : rootlibexecdir)
2507
2508 # exe = executable('systemd-tty-ask-password-agent',
2509 #                  'src/tty-ask-password-agent/tty-ask-password-agent.c',
2510 #                  include_directories : includes,
2511 #                  link_with : [libshared],
2512 #                  install_rpath : rootlibexecdir,
2513 #                  install : true,
2514 #                  install_dir : rootbindir)
2515 # public_programs += [exe]
2516
2517 # exe = executable('systemd-cgls',
2518 #                  'src/cgls/cgls.c',
2519 #                  include_directories : includes,
2520 #                  link_with : [libshared],
2521 #                  install_rpath : rootlibexecdir,
2522 #                  install : true)
2523 # public_programs += [exe]
2524
2525 # exe = executable('systemd-cgtop',
2526 #                  'src/cgtop/cgtop.c',
2527 #                  include_directories : includes,
2528 #                  link_with : [libshared],
2529 #                  install_rpath : rootlibexecdir,
2530 #                  install : true)
2531 # public_programs += [exe]
2532
2533 # executable('systemd-initctl',
2534 #            'src/initctl/initctl.c',
2535 #            include_directories : includes,
2536 #            link_with : [libshared],
2537 #            install_rpath : rootlibexecdir,
2538 #            install : true,
2539 #            install_dir : rootlibexecdir)
2540
2541 # exe = executable('systemd-mount',
2542 #                  'src/mount/mount-tool.c',
2543 #                  include_directories : includes,
2544 #                  link_with : [libshared],
2545 #                  install_rpath : rootlibexecdir,
2546 #                  install : true)
2547 # public_programs += [exe]
2548
2549 # meson.add_install_script(meson_make_symlink,
2550 #                          'systemd-mount', join_paths(bindir, 'systemd-umount'))
2551
2552 # exe = executable('systemd-run',
2553 #                  'src/run/run.c',
2554 #                  include_directories : includes,
2555 #                  link_with : [libshared],
2556 #                  install_rpath : rootlibexecdir,
2557 #                  install : true)
2558 # public_programs += [exe]
2559
2560 # exe = executable('systemd-stdio-bridge',
2561 #                  'src/stdio-bridge/stdio-bridge.c',
2562 #                  include_directories : includes,
2563 #                  link_with : [libshared],
2564 #                  install_rpath : rootlibexecdir,
2565 #                  install : true)
2566 # public_programs += [exe]
2567
2568 # exe = executable('busctl',
2569 #                  'src/busctl/busctl.c',
2570 #                  'src/busctl/busctl-introspect.c',
2571 #                  'src/busctl/busctl-introspect.h',
2572 #                  include_directories : includes,
2573 #                  link_with : [libshared],
2574 #                  install_rpath : rootlibexecdir,
2575 #                  install : true)
2576 # public_programs += [exe]
2577
2578 # if conf.get('ENABLE_SYSUSERS') == 1
2579 #         exe = executable('systemd-sysusers',
2580 #                          'src/sysusers/sysusers.c',
2581 #                          include_directories : includes,
2582 #                          link_with : [libshared],
2583 #                          install_rpath : rootlibexecdir,
2584 #                          install : true,
2585 #                          install_dir : rootbindir)
2586 #         public_programs += [exe]
2587 # endif
2588
2589 # if conf.get('ENABLE_TMPFILES') == 1
2590 #         exe = executable('systemd-tmpfiles',
2591 #                          'src/tmpfiles/tmpfiles.c',
2592 #                          include_directories : includes,
2593 #                          link_with : [libshared],
2594 #                          dependencies : [libacl],
2595 #                          install_rpath : rootlibexecdir,
2596 #                          install : true,
2597 #                          install_dir : rootbindir)
2598 #         public_programs += [exe]
2599
2600 #         test('test-systemd-tmpfiles',
2601 #              test_systemd_tmpfiles_py,
2602 #              args : exe.full_path())
2603 #         # https://github.com/mesonbuild/meson/issues/2681
2604 # endif
2605
2606 # if conf.get('ENABLE_HWDB') == 1
2607 #         exe = executable('systemd-hwdb',
2608 #                          'src/hwdb/hwdb.c',
2609 #                          'src/libsystemd/sd-hwdb/hwdb-internal.h',
2610 #                          include_directories : includes,
2611 #                          link_with : [libudev_static],
2612 #                          install_rpath : udev_rpath,
2613 #                          install : true,
2614 #                          install_dir : rootbindir)
2615 #         public_programs += [exe]
2616 # endif
2617
2618 # if conf.get('ENABLE_QUOTACHECK') == 1
2619 #         executable('systemd-quotacheck',
2620 #                    'src/quotacheck/quotacheck.c',
2621 #                    include_directories : includes,
2622 #                    link_with : [libshared],
2623 #                    install_rpath : rootlibexecdir,
2624 #                    install : true,
2625 #                    install_dir : rootlibexecdir)
2626 # endif
2627
2628 # exe = executable('systemd-socket-proxyd',
2629 #                  'src/socket-proxy/socket-proxyd.c',
2630 #                  include_directories : includes,
2631 #                  link_with : [libshared],
2632 #                  dependencies : [threads],
2633 #                  install_rpath : rootlibexecdir,
2634 #                  install : true,
2635 #                  install_dir : rootlibexecdir)
2636 # public_programs += [exe]
2637
2638 # exe = executable('systemd-udevd',
2639 #                  systemd_udevd_sources,
2640 #                  include_directories : includes,
2641 #                  c_args : ['-DLOG_REALM=LOG_REALM_UDEV'],
2642 #                  link_with : [libudev_core,
2643 #                               libsystemd_network,
2644 #                               libudev_static],
2645 #                  dependencies : [threads,
2646 #                                  libkmod,
2647 #                                  libidn,
2648 #                                  libacl,
2649 #                                  libblkid],
2650 #                  install_rpath : udev_rpath,
2651 #                  install : true,
2652 #                  install_dir : rootlibexecdir)
2653 # public_programs += [exe]
2654
2655 # exe = executable('udevadm',
2656 #                  udevadm_sources,
2657 #                  c_args : ['-DLOG_REALM=LOG_REALM_UDEV'],
2658 #                  include_directories : includes,
2659 #                  link_with : [libudev_core,
2660 #                               libsystemd_network,
2661 #                               libudev_static],
2662 #                  dependencies : [threads,
2663 #                                  libkmod,
2664 #                                  libidn,
2665 #                                  libacl,
2666 #                                  libblkid],
2667 #                  install_rpath : udev_rpath,
2668 #                  install : true,
2669 #                  install_dir : rootbindir)
2670 # public_programs += [exe]
2671
2672 # executable('systemd-shutdown',
2673 #            systemd_shutdown_sources,
2674 #            include_directories : includes,
2675 #            link_with : [libshared],
2676 #            dependencies : [libmount],
2677 #            install_rpath : rootlibexecdir,
2678 #            install : true,
2679 #            install_dir : rootlibexecdir)
2680
2681 # executable('systemd-update-done',
2682 #            'src/update-done/update-done.c',
2683 #            include_directories : includes,
2684 #            link_with : [libshared],
2685 #            install_rpath : rootlibexecdir,
2686 #            install : true,
2687 #            install_dir : rootlibexecdir)
2688
2689 # executable('systemd-update-utmp',
2690 #            'src/update-utmp/update-utmp.c',
2691 #            include_directories : includes,
2692 #            link_with : [libshared],
2693 #            dependencies : [libaudit],
2694 #            install_rpath : rootlibexecdir,
2695 #            install : true,
2696 #            install_dir : rootlibexecdir)
2697
2698 # if conf.get('HAVE_KMOD') == 1
2699 #         executable('systemd-modules-load',
2700 #                    'src/modules-load/modules-load.c',
2701 #                    include_directories : includes,
2702 #                    link_with : [libshared],
2703 #                    dependencies : [libkmod],
2704 #                    install_rpath : rootlibexecdir,
2705 #                    install : true,
2706 #                    install_dir : rootlibexecdir)
2707
2708 #         meson.add_install_script('sh', '-c',
2709 #                                  mkdir_p.format(modulesloaddir))
2710 #         meson.add_install_script('sh', '-c',
2711 #                                  mkdir_p.format(join_paths(sysconfdir, 'modules-load.d')))
2712 # endif
2713
2714 # exe = executable('systemd-nspawn',
2715 #                  systemd_nspawn_sources,
2716 #                  'src/core/mount-setup.c', # FIXME: use a variable?
2717 #                  'src/core/mount-setup.h',
2718 #                  'src/core/loopback-setup.c',
2719 #                  'src/core/loopback-setup.h',
2720 #                  include_directories : [includes, include_directories('src/nspawn')],
2721 #                  link_with : [libshared],
2722 #                  dependencies : [libacl,
2723 #                                  libblkid,
2724 #                                  libseccomp,
2725 #                                  libselinux],
2726 #                  install_rpath : rootlibexecdir,
2727 #                  install : true)
2728 # public_programs += [exe]
2729
2730 # if conf.get('ENABLE_NETWORKD') == 1
2731 #         executable('systemd-networkd',
2732 #                    systemd_networkd_sources,
2733 #                    include_directories : includes,
2734 #                    link_with : [libnetworkd_core,
2735 #                                 libsystemd_network,
2736 #                                 libudev_static,
2737 #                                 libshared],
2738 #                    dependencies : [threads],
2739 #                    install_rpath : rootlibexecdir,
2740 #                    install : true,
2741 #                    install_dir : rootlibexecdir)
2742
2743 #         executable('systemd-networkd-wait-online',
2744 #                    systemd_networkd_wait_online_sources,
2745 #                    include_directories : includes,
2746 #                    link_with : [libnetworkd_core,
2747 #                                 libshared],
2748 #                    install_rpath : rootlibexecdir,
2749 #                    install : true,
2750 #                    install_dir : rootlibexecdir)
2751
2752 #         exe = executable('networkctl',
2753 #                    networkctl_sources,
2754 #                    include_directories : includes,
2755 #                    link_with : [libsystemd_network,
2756 #                               libshared],
2757 #                    install_rpath : rootlibexecdir,
2758 #                    install : true,
2759 #                    install_dir : rootbindir)
2760 #         public_programs += [exe]
2761 # endif
2762
2763 # executable('systemd-sulogin-shell',
2764 #            ['src/sulogin-shell/sulogin-shell.c'],
2765 #            include_directories : includes,
2766 #            link_with : [libshared],
2767 #            install_rpath : rootlibexecdir,
2768 #            install : true,
2769 #            install_dir : rootlibexecdir)
2770 #else
2771 executable('elogind-uaccess-command',
2772            'src/uaccess-command/uaccess-command.c',
2773            include_directories : includes,
2774            link_with : [liblogind_core,
2775                         libshared],
2776            dependencies: [libacl,
2777                           libudev],
2778            install_rpath : rootlibexecdir,
2779            install : true,
2780            install_dir : rootlibexecdir)
2781 #endif // 0
2782
2783 ############################################################
2784
2785 foreach tuple : tests
2786         sources = tuple[0]
2787         link_with = tuple[1].length() > 0 ? tuple[1] : [libshared]
2788         dependencies = tuple[2]
2789         condition = tuple.length() >= 4 ? tuple[3] : ''
2790         type = tuple.length() >= 5 ? tuple[4] : ''
2791         defs = tuple.length() >= 6 ? tuple[5] : []
2792         incs = tuple.length() >= 7 ? tuple[6] : includes
2793         timeout = 30
2794
2795         name = sources[0].split('/')[-1].split('.')[0]
2796         if type.startswith('timeout=')
2797                 timeout = type.split('=')[1].to_int()
2798                 type = ''
2799         endif
2800         if want_tests == 'false'
2801                 message('Not compiling @0@ because tests is set to false'.format(name))
2802         elif condition == '' or conf.get(condition) == 1
2803                 exe = executable(
2804                         name,
2805                         sources,
2806                         include_directories : incs,
2807                         link_with : link_with,
2808                         dependencies : dependencies,
2809                         c_args : defs,
2810                         install_rpath : rootlibexecdir,
2811                         install : install_tests,
2812                         install_dir : join_paths(testsdir, type))
2813
2814                 if type == 'manual'
2815                         message('@0@ is a manual test'.format(name))
2816                 elif type == 'unsafe' and want_tests != 'unsafe'
2817                         message('@0@ is an unsafe test'.format(name))
2818                 else
2819                         test(name, exe,
2820                              env : test_env,
2821                              timeout : timeout)
2822                 endif
2823         else
2824                 message('Not compiling @0@ because @1@ is not true'.format(name, condition))
2825         endif
2826 endforeach
2827
2828 #if 0 /// UNNEEDED by elogind
2829 # exe = executable(
2830 #         'test-libsystemd-sym',
2831 #         test_libsystemd_sym_c,
2832 #         include_directories : includes,
2833 #         link_with : [libsystemd],
2834 #         install : install_tests,
2835 #         install_dir : testsdir)
2836 # test('test-libsystemd-sym', exe)
2837
2838 # exe = executable(
2839 #         'test-libsystemd-static-sym',
2840 #         test_libsystemd_sym_c,
2841 #         include_directories : includes,
2842 #         link_with : [install_libsystemd_static],
2843 #         dependencies : [threads], # threads is already included in dependencies on the library,
2844 #                                   # but does not seem to get propagated. Add here as a work-around.
2845 #         build_by_default : static_libsystemd_pic,
2846 #         install : install_tests and static_libsystemd_pic,
2847 #         install_dir : testsdir)
2848 # if static_libsystemd_pic
2849 #         test('test-libsystemd-static-sym', exe)
2850 # endif
2851
2852 # exe = executable(
2853 #         'test-libudev-sym',
2854 #         test_libudev_sym_c,
2855 #         include_directories : includes,
2856 #         c_args : ['-Wno-deprecated-declarations'],
2857 #         link_with : [libudev],
2858 #         install : install_tests,
2859 #         install_dir : testsdir)
2860 # test('test-libudev-sym', exe)
2861
2862 # exe = executable(
2863 #         'test-libudev-static-sym',
2864 #         test_libudev_sym_c,
2865 #         include_directories : includes,
2866 #         c_args : ['-Wno-deprecated-declarations'],
2867 #         link_with : [install_libudev_static],
2868 #         build_by_default : static_libudev_pic,
2869 #         install : install_tests and static_libudev_pic,
2870 #         install_dir : testsdir)
2871 # if static_libudev_pic
2872 #         test('test-libudev-static-sym', exe)
2873 # endif
2874
2875 # ############################################################
2876
2877 # fuzzer_exes = []
2878
2879 # foreach tuple : fuzzers
2880 #         sources = tuple[0]
2881 #         link_with = tuple[1].length() > 0 ? tuple[1] : [libshared]
2882 #         dependencies = tuple[2]
2883 #         defs = tuple.length() >= 4 ? tuple[3] : []
2884 #         incs = tuple.length() >= 5 ? tuple[4] : includes
2885
2886 #         if fuzzer_build
2887 #                 dependencies += fuzzing_engine
2888 #         else
2889 #                 sources += 'src/fuzz/fuzz-main.c'
2890 #         endif
2891
2892 #         name = sources[0].split('/')[-1].split('.')[0]
2893
2894 #         fuzzer_exes += executable(
2895 #                 name,
2896 #                 sources,
2897 #                 include_directories : [incs, include_directories('src/fuzz')],
2898 #                 link_with : link_with,
2899 #                 dependencies : dependencies,
2900 #                 c_args : defs,
2901 #                 install : false)
2902 # endforeach
2903
2904 # run_target('fuzzers',
2905 #         depends : fuzzer_exes,
2906 #         command : ['true'])
2907
2908 # ############################################################
2909
2910 #else
2911 test_libelogind_sym = executable(
2912         'test-libelogind-sym',
2913         test_libelogind_sym_c,
2914         include_directories : includes,
2915         link_with : [libelogind],
2916         install : install_tests,
2917         install_dir : testsdir)
2918 test('test-libelogind-sym',
2919      test_libelogind_sym)
2920 #endif // 0
2921 make_directive_index_py = find_program('tools/make-directive-index.py')
2922 make_man_index_py = find_program('tools/make-man-index.py')
2923 xml_helper_py = find_program('tools/xml_helper.py')
2924 #if 0 /// UNNEEDED by elogind
2925 # hwdb_update_sh = find_program('tools/meson-hwdb-update.sh')
2926
2927 # subdir('units')
2928 # subdir('sysctl.d')
2929 # subdir('sysusers.d')
2930 # subdir('tmpfiles.d')
2931 # subdir('presets')
2932 # subdir('hwdb')
2933 # subdir('network')
2934 #endif // 0
2935 subdir('man')
2936 subdir('shell-completion/bash')
2937 subdir('shell-completion/zsh')
2938 #if 0 /// UNNEEDED by elogind
2939 #endif // 0
2940 subdir('doc/sysvinit')
2941 subdir('doc/var-log')
2942
2943 # FIXME: figure out if the warning is true:
2944 # https://github.com/mesonbuild/meson/wiki/Reference-manual#install_subdir
2945 install_subdir('factory/etc',
2946                install_dir : factorydir)
2947
2948
2949 #if 0 /// UNNEEDED by elogind
2950 # install_data('xorg/50-systemd-user.sh',
2951 #              install_dir : xinitrcdir)
2952 # install_data('modprobe.d/systemd.conf',
2953 #              install_dir : modprobedir)
2954 #endif // 0
2955 install_data('LICENSE.GPL2',
2956              'LICENSE.LGPL2.1',
2957              'NEWS',
2958              'README',
2959              'doc/CODING_STYLE',
2960 #if 0 /// irrelevant for elogind
2961 #              'doc/DISTRO_PORTING',
2962 #              'doc/ENVIRONMENT.md',
2963 #              'doc/HACKING',
2964 #              'doc/TRANSIENT-SETTINGS.md',
2965 #              'doc/TRANSLATORS',
2966 #              'doc/UIDS-GIDS.md',
2967 #endif // 0
2968              'src/libelogind/sd-bus/GVARIANT-SERIALIZATION',
2969              install_dir : docdir)
2970
2971 #if 0 /// UNNEEDED by elogind
2972 # meson.add_install_script('sh', '-c', mkdir_p.format(systemdstatedir))
2973 #endif // 0
2974 meson.add_install_script('sh', '-c', 'touch $DESTDIR@0@'.format(prefixdir))
2975
2976 ############################################################
2977
2978 meson_check_help = find_program('tools/meson-check-help.sh')
2979
2980 foreach exec : public_programs
2981         name = exec.full_path().split('/')[-1]
2982         test('check-help-' + name,
2983              meson_check_help,
2984              args : [exec.full_path()])
2985 endforeach
2986
2987 ############################################################
2988
2989 #if 0 /// fuzz regression tests are not supported by elogind
2990 # # Enable tests for all supported sanitizers
2991 # foreach tuple : sanitizers
2992 #         sanitizer = tuple[0]
2993 #         build = tuple[1]
2994
2995 #         have = run_command(check_compilation_sh,
2996 #                            cc.cmd_array(), '-x', 'c',
2997 #                            '-fsanitize=@0@'.format(sanitizer),
2998 #                            '-include', link_test_c).returncode() == 0
2999 #         message('@0@ sanitizer supported: @1@'.format(sanitizer, have ? 'yes' : 'no'))
3000
3001 #         if have
3002 #                 prev = ''
3003 #                 foreach p : fuzz_regression_tests
3004 #                         b = p.split('/')[-2]
3005 #                         c = p.split('/')[-1]
3006
3007 #                         name = '@0@:@1@'.format(b, sanitizer)
3008
3009 #                         if name != prev
3010 #                                 if want_tests == 'false'
3011 #                                         message('Not compiling @0@ because tests is set to false'.format(name))
3012 #                                 elif slow_tests
3013 #                                         exe = custom_target(
3014 #                                                 name,
3015 #                                                 output : name,
3016 #                                                 depends : build,
3017 #                                                 command : [env, 'ln', '-fs',
3018 #                                                            join_paths(build.full_path(), b),
3019 #                                                            '@OUTPUT@'],
3020 #                                                 build_by_default : true)
3021 #                                 else
3022 #                                         message('Not compiling @0@ because slow-tests is set to false'.format(name))
3023 #                                 endif
3024 #                         endif
3025 #                         prev = name
3026
3027 #                         if want_tests != 'false' and slow_tests
3028 #                                 test('@0@:@1@:@2@'.format(b, c, sanitizer),
3029 #                                      env,
3030 #                                      args : [exe.full_path(),
3031 #                                              join_paths(meson.source_root(),
3032 #                                                         'test/fuzz-regressions',
3033 #                                                         p)])
3034 #                         endif
3035 #                 endforeach
3036 #         endif
3037 # endforeach
3038 #endif // 0
3039
3040
3041 ############################################################
3042
3043 if git.found()
3044         all_files = run_command(
3045                 git,
3046                 ['--git-dir=@0@/.git'.format(meson.current_source_dir()),
3047                  'ls-files',
3048                  ':/*.[ch]'])
3049         all_files = files(all_files.stdout().split())
3050
3051         custom_target(
3052                 'tags',
3053                 output : 'tags',
3054                 command : [env, 'etags', '-o', '@0@/TAGS'.format(meson.current_source_dir())] + all_files)
3055         custom_target(
3056                 'ctags',
3057                 output : 'ctags',
3058                 command : [env, 'ctags', '-o', '@0@/tags'.format(meson.current_source_dir())] + all_files)
3059 endif
3060
3061 #if 0 /// UNNEEDED by elogind
3062 # if git.found()
3063 #         meson_git_contrib_sh = find_program('tools/meson-git-contrib.sh')
3064 #         run_target(
3065 #                 'git-contrib',
3066 #                 command : [meson_git_contrib_sh])
3067 # endif
3068 #endif // 0
3069
3070 if git.found()
3071         git_head = run_command(
3072                 git,
3073                 ['--git-dir=@0@/.git'.format(meson.current_source_dir()),
3074                  'rev-parse', 'HEAD']).stdout().strip()
3075         git_head_short = run_command(
3076                 git,
3077                 ['--git-dir=@0@/.git'.format(meson.current_source_dir()),
3078                  'rev-parse', '--short=7', 'HEAD']).stdout().strip()
3079
3080         run_target(
3081                 'git-snapshot',
3082                 command : ['git', 'archive',
3083                            '-o', '@0@/systemd-@1@.tar.gz'.format(meson.current_source_dir(),
3084                                                                  git_head_short),
3085                            '--prefix', 'systemd-@0@/'.format(git_head),
3086                            'HEAD'])
3087 endif
3088
3089 ############################################################
3090
3091 meson_check_api_docs_sh = find_program('tools/meson-check-api-docs.sh')
3092 run_target(
3093         'check-api-docs',
3094 #if 0 /// libudev is external, elogind does not need to document it.
3095 #         depends : [man, libsystemd, libudev],
3096 #         command : [meson_check_api_docs_sh, libsystemd.full_path(), libudev.full_path()])
3097 #else
3098         depends : [man, libelogind],
3099         command : [meson_check_api_docs_sh, libelogind.full_path()])
3100 #endif // 0
3101
3102 ############################################################
3103
3104 status = [
3105         '@0@ @1@'.format(meson.project_name(), meson.project_version()),
3106
3107         'split /usr:                        @0@'.format(split_usr),
3108         'split bin-sbin:                    @0@'.format(split_bin),
3109 #if 0 /// UNSUPPORTED by elogind
3110 #         'prefix directory:                  @0@'.format(prefixdir),
3111 #         'rootprefix directory:              @0@'.format(rootprefixdir),
3112 #         'sysconf directory:                 @0@'.format(sysconfdir),
3113 #         'include directory:                 @0@'.format(includedir),
3114 #         'lib directory:                     @0@'.format(libdir),
3115 #         'rootlib directory:                 @0@'.format(rootlibdir),
3116 #         'SysV init scripts:                 @0@'.format(sysvinit_path),
3117 #         'SysV rc?.d directories:            @0@'.format(sysvrcnd_path),
3118 #else
3119         'rootexeclib dir:                   @0@'.format(rootlibexecdir),
3120 #endif // 0
3121 #if 0 /// UNSUPPORTED by elogind
3122 #         'PAM modules directory:             @0@'.format(pamlibdir),
3123 #         'PAM configuration directory:       @0@'.format(pamconfdir),
3124 #         'RPM macros directory:              @0@'.format(rpmmacrosdir),
3125 #         'modprobe.d directory:              @0@'.format(modprobedir),
3126 #         'D-Bus policy directory:            @0@'.format(dbuspolicydir),
3127 #         'D-Bus session directory:           @0@'.format(dbussessionservicedir),
3128 #         'D-Bus system directory:            @0@'.format(dbussystemservicedir),
3129 #         'bash completions directory:        @0@'.format(bashcompletiondir),
3130 #         'zsh completions directory:         @0@'.format(zshcompletiondir),
3131 #         'extra start script:                @0@'.format(get_option('rc-local')),
3132 #         'extra stop script:                 @0@'.format(get_option('halt-local')),
3133 #         'debug shell:                       @0@ @ @1@'.format(get_option('debug-shell'),
3134 #                                                               get_option('debug-tty')),
3135 #endif // 0
3136         'TTY GID:                           @0@'.format(tty_gid),
3137 #if 0 /// UNSUPPORTED by elogind
3138 #         'users GID:                         @0@'.format(users_gid),
3139 #endif // 0
3140         'maximum system UID:                @0@'.format(system_uid_max),
3141         'maximum system GID:                @0@'.format(system_gid_max),
3142 #if 0 /// UNSUPPORTED by elogind
3143 #         'minimum dynamic UID:               @0@'.format(dynamic_uid_min),
3144 #         'maximum dynamic UID:               @0@'.format(dynamic_uid_max),
3145 #         'minimum container UID base:        @0@'.format(container_uid_base_min),
3146 #         'maximum container UID base:        @0@'.format(container_uid_base_max),
3147 #         '/dev/kvm access mode:              @0@'.format(get_option('dev-kvm-mode')),
3148 #         'render group access mode:          @0@'.format(get_option('group-render-mode')),
3149 #         'certificate root directory:        @0@'.format(get_option('certificate-root')),
3150 #         'support URL:                       @0@'.format(support_url),
3151 #         'nobody user name:                  @0@'.format(nobody_user),
3152 #         'nobody group name:                 @0@'.format(nobody_group),
3153 #         'fallback hostname:                 @0@'.format(get_option('fallback-hostname')),
3154 #         'symbolic gateway hostnames:        @0@'.format(', '.join(gateway_hostnames)),
3155
3156 #         'default DNSSEC mode:               @0@'.format(default_dnssec),
3157 #         'default cgroup hierarchy:          @0@'.format(default_hierarchy),
3158 #endif // 0
3159         'default KillUserProcesses setting: @0@'.format(kill_user_processes)]
3160
3161 #if 0 /// UNSUPPORTED by elogind
3162 # alt_dns_servers = '\n                                            '.join(dns_servers.split(' '))
3163 # alt_ntp_servers = '\n                                            '.join(ntp_servers.split(' '))
3164 # status += [
3165 #         'default DNS servers:               @0@'.format(alt_dns_servers),
3166 #         'default NTP servers:               @0@'.format(alt_ntp_servers)]
3167
3168 # alt_time_epoch = run_command('date', '-Is', '-u', '-d',
3169 #                              '@@0@'.format(time_epoch)).stdout().strip()
3170 # status += [
3171 #         'time epoch:                        @0@ (@1@)'.format(time_epoch, alt_time_epoch)]
3172 #endif // 0
3173
3174 # TODO:
3175 # CFLAGS:   ${OUR_CFLAGS} ${CFLAGS}
3176 # CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
3177 # LDFLAGS:  ${OUR_LDFLAGS} ${LDFLAGS}
3178
3179 #if 0 /// UNNEEDED by elogind
3180 # if conf.get('ENABLE_EFI') == 1
3181 #         status += [
3182 #                 'efi arch:                          @0@'.format(efi_arch)]
3183
3184 #         if have_gnu_efi
3185 #                 status += [
3186 #                         'EFI machine type:                  @0@'.format(EFI_MACHINE_TYPE_NAME),
3187 #                         'EFI CC                             @0@'.format(efi_cc),
3188 #                         'EFI lib directory:                 @0@'.format(efi_libdir),
3189 #                         'EFI lds directory:                 @0@'.format(efi_ldsdir),
3190 #                         'EFI include directory:             @0@'.format(efi_incdir)]
3191 #         endif
3192 # endif
3193 #endif // 0
3194
3195 found = []
3196 missing = []
3197
3198 foreach tuple : [
3199 #if 0 /// UNNEEDED by elogind
3200 #         ['libcryptsetup'],
3201 #endif // 0
3202         ['PAM'],
3203         ['AUDIT'],
3204 #if 0 /// UNNEEDED by elogind
3205 #         ['IMA'],
3206 #         ['AppArmor'],
3207 #endif // 0
3208         ['SELinux'],
3209 #if 0 /// UNNEEDED by elogind
3210 #         ['SECCOMP'],
3211 #endif // 0
3212         ['SMACK'],
3213 #if 0 /// UNNEEDED by elogind
3214 #         ['zlib'],
3215 #         ['xz'],
3216 #         ['lz4'],
3217 #         ['bzip2'],
3218 #endif // 0
3219         ['ACL'],
3220 #if 0 /// UNNEEDED by elogind
3221 #         ['gcrypt'],
3222 #         ['qrencode'],
3223 #         ['microhttpd'],
3224 #         ['gnutls'],
3225 #         ['libcurl'],
3226 #         ['idn'],
3227 #         ['libidn2'],
3228 #         ['libidn'],
3229 #         ['nss-systemd'],
3230 #         ['libiptc'],
3231 #         ['elfutils'],
3232 #         ['binfmt'],
3233 #         ['vconsole'],
3234 #         ['quotacheck'],
3235 #         ['tmpfiles'],
3236 #         ['environment.d'],
3237 #         ['sysusers'],
3238 #         ['firstboot'],
3239 #         ['randomseed'],
3240 #         ['backlight'],
3241 #         ['rfkill'],
3242 #         ['logind'],
3243 #         ['machined'],
3244 #         ['importd'],
3245 #         ['hostnamed'],
3246 #         ['timedated'],
3247 #         ['timesyncd'],
3248 #         ['localed'],
3249 #         ['networkd'],
3250 #         ['resolve'],
3251 #         ['coredump'],
3252 #endif // 0
3253         ['polkit'],
3254         ['legacy pkla',      install_polkit_pkla],
3255 #if 0 /// UNNEEDED by elogind
3256 #         ['efi'],
3257 #         ['gnu-efi',          have_gnu_efi],
3258 #         ['kmod'],
3259 #         ['xkbcommon'],
3260 #         ['pcre2'],
3261 #         ['blkid'],
3262 #endif // 0
3263         ['dbus'],
3264         ['glib'],
3265 #if 0 /// UNNEEDED by elogind
3266 #         ['nss-myhostname',   conf.get('ENABLE_MYHOSTNAME') == 1],
3267 #         ['hwdb'],
3268 #         ['tpm'],
3269 #endif // 0
3270         ['man pages',        want_man],
3271         ['html pages',       want_html],
3272         ['man page indices', want_man and have_lxml],
3273 #if 0 /// UNNEEDED by elogind
3274 #         ['SysV compat'],
3275 #endif // 0
3276         ['utmp'],
3277 #if 0 /// UNNEEDED by elogind
3278 #         ['ldconfig'],
3279 #         ['hibernate'],
3280 #         ['adm group',        get_option('adm-group')],
3281 #         ['wheel group',      get_option('wheel-group')],
3282 #         ['gshadow'],
3283 #         ['valgrind',         conf.get('VALGRIND') == 1],
3284 #else
3285         ['debug elogind'],
3286 #endif // 0
3287         ['debug hashmap'],
3288         ['debug mmap cache'],
3289 ]
3290
3291         if tuple.length() >= 2
3292                 cond = tuple[1]
3293         else
3294                 ident1 = 'HAVE_' + tuple[0].underscorify().to_upper()
3295                 ident2 = 'ENABLE_' + tuple[0].underscorify().to_upper()
3296                 cond = conf.get(ident1, 0) == 1 or conf.get(ident2, 0) == 1
3297         endif
3298         if cond
3299                 found += [tuple[0]]
3300         else
3301                 missing += [tuple[0]]
3302         endif
3303 endforeach
3304
3305 status += [
3306         '',
3307         'enabled features: @0@'.format(', '.join(found)),
3308         '',
3309         'disabled features: @0@'.format(', '.join(missing)),
3310         '']
3311 message('\n         '.join(status))
3312
3313 if rootprefixdir != rootprefix_default
3314         warning('\n' +
3315                 'Note that the installation prefix was changed to "@0@".\n'.format(rootprefixdir) +
3316                 'elogind used fixed names for unit file directories and other paths, so anything\n' +
3317                 'except the default ("@0@") is strongly discouraged.'.format(rootprefix_default))
3318 endif