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