1 # SPDX-License-Identifier: LGPL-2.1+
3 # Copyright 2017 Zbigniew Jędrzejewski-Szmek
5 project('elogind', 'c',
14 meson_version : '>= 0.41',
17 #if 0 /// UNNEEDED by elogind - libudev is external
18 # libsystemd_version = '0.22.0'
19 # libudev_version = '1.6.10'
21 libelogind_version = '0.22.0'
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
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())
32 substs = configuration_data()
33 #if 0 /// Set elogind Package PACKAGE_URL
34 # substs.set('PACKAGE_URL', 'https://www.freedesktop.org/wiki/Software/systemd')
36 substs.set('PACKAGE_URL', 'https://github.com/elogind/elogind')
38 substs.set('PACKAGE_VERSION', meson.project_version())
42 #####################################################################
43 #if 0 /// elogind does not need this
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())
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.
58 #####################################################################
60 if get_option('split-usr') == 'auto'
61 split_usr = run_command('test', '-L', '/bin').returncode() != 0
63 split_usr = get_option('split-usr') == 'true'
65 conf.set10('HAVE_SPLIT_USR', split_usr,
66 description : '/usr/bin and /bin directories are separate')
68 if get_option('split-bin') == 'auto'
69 split_bin = run_command('test', '-L', '/usr/sbin').returncode() != 0
71 split_bin = get_option('split-bin') == 'true'
73 conf.set10('HAVE_SPLIT_BIN', split_bin,
74 description : 'bin and sbin directories are separate')
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
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'] : []
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))
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'))
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')
112 rootlibexecdir = get_option('rootlibexecdir')
113 rootlibexecdir = rootlibexecdir != '' ? rootlibexecdir : join_paths(rootprefixdir, 'lib/elogind')
116 rootlibdir = get_option('rootlibdir')
118 rootlibdir = join_paths(rootprefixdir, libdir.split('/')[-1])
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)
135 modprobedir = join_paths(rootprefixdir, 'lib/modprobe.d')
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')
172 # docdir = get_option('docdir')
174 # docdir = join_paths(datadir, 'doc/systemd')
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')
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')
197 dbuspolicydir = get_option('dbuspolicydir')
198 if dbuspolicydir == ''
199 dbuspolicydir = join_paths(datadir, 'dbus-1/system.d')
202 dbussessionservicedir = get_option('dbussessionservicedir')
203 if dbussessionservicedir == ''
204 dbussessionservicedir = join_paths(datadir, 'dbus-1/services')
207 dbussystemservicedir = get_option('dbussystemservicedir')
208 if dbussystemservicedir == ''
209 dbussystemservicedir = join_paths(datadir, 'dbus-1/system-services')
212 pamlibdir = get_option('pamlibdir')
214 pamlibdir = join_paths(rootlibdir, 'security')
217 pamconfdir = get_option('pamconfdir')
219 pamconfdir = join_paths(sysconfdir, 'pam.d')
222 #if 0 /// UNNEEDED by elogind
223 # memory_accounting_default = get_option('memory-accounting-default')
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'))
235 # conf.set('ANSI_OK_COLOR', 'ANSI_' + get_option('ok-color').underscorify().to_upper())
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'))
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'))
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)
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'))
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')
287 conf.set_quoted('MEMORY_ACCOUNTING_DEFAULT_YES_NO', memory_accounting_default ? 'yes' : 'no')
289 conf.set_quoted('ABS_BUILD_DIR', meson.build_root())
290 conf.set_quoted('ABS_SRC_DIR', meson.source_root())
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)
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)
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')
336 #####################################################################
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')
343 if get_option('tests') != 'false'
344 cxx = find_program('c++', required : false)
346 # Used only for tests
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')
359 # fuzzing_engine = meson.get_compiler('cpp').find_library('Fuzzer')
362 # fuzzing_engine = meson.get_compiler('cpp').find_library('FuzzingEngine')
368 foreach arg : ['-Wextra',
371 '-Wmissing-include-dirs',
372 '-Wold-style-definition',
375 '-Wdeclaration-after-statement',
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',
384 '-Wstrict-prototypes',
386 '-Wmissing-noreturn',
387 '-Wimplicit-fallthrough=5',
390 '-Wstrict-aliasing=2',
397 '-fdiagnostics-show-option',
398 '-fno-strict-aliasing',
399 '-fvisibility=hidden',
401 '-fstack-protector-strong',
402 '--param=ssp-buffer-size=4',
404 if cc.has_argument(arg)
405 add_project_arguments(arg, language : 'c')
409 # the oss-fuzz fuzzers are not built with -fPIE, so don't
410 # enable it when we are linking against them
412 if cc.has_argument('-fPIE')
413 add_project_arguments('-fPIE', language : 'c')
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',
423 'error=nonnull', # work-around for gcc 7.1 turning this on on its own
425 if cc.has_argument('-W' + arg)
426 add_project_arguments('-Wno-' + arg, language : 'c')
432 #include <inttypes.h>
433 typedef uint64_t usec_t;
434 usec_t now(clockid_t clock);
439 ''', name : '-Werror=shadow with local shadowing')
440 add_project_arguments('-Werror=shadow', language : 'c')
443 if cc.get_id() == 'clang'
444 foreach arg : ['-Wno-typedef-redefinition',
445 '-Wno-gnu-variable-sized-type-not-at-end',
447 if cc.has_argument(arg,
448 name : '@0@ is supported'.format(arg))
449 add_project_arguments(arg, language : 'c')
454 link_test_c = files('tools/meson-link-test.c')
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',
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')
472 if get_option('buildtype') != 'debug'
473 foreach arg : ['-ffunction-sections',
475 if cc.has_argument(arg,
476 name : '@0@ is supported'.format(arg))
477 add_project_arguments(arg, language : 'c')
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'))
487 add_project_link_arguments(arg, language : 'c')
492 cpp = ' '.join(cc.cmd_array()) + ' -E'
494 #####################################################################
495 # compilation result tests
497 conf.set('_GNU_SOURCE', true)
498 conf.set('__SANE_USERSPACE_TYPES__', true)
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>'))
510 #include <linux/ethtool.h>
511 #include <linux/fib_rules.h>
512 //#include <linux/stat.h>
513 //#include <sys/stat.h>
515 # FIXME: key_serial_t is only defined in keyutils.h, this is bound to fail
517 foreach decl : ['char16_t',
520 'struct ethtool_link_settings',
521 'struct fib_rule_uid_range',
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)
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'],
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)
561 foreach ident : ['secure_getenv', '__secure_getenv']
562 conf.set10('HAVE_' + ident.to_upper(), cc.has_function(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>'''],
591 have = cc.has_function(ident[0], prefix : ident[1], args : '-D_GNU_SOURCE')
592 conf.set10('HAVE_' + ident[0].to_upper(), have)
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)
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)
604 #####################################################################
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)
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'
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')
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'],
639 progs = [['halt', '/sbin/halt', 'HALT'],
640 ['kexec', '/usr/sbin/kexec', 'KEXEC'],
641 ['poweroff', '/sbin/poweroff', 'POWEROFF'],
642 ['reboot', '/sbin/reboot', 'REBOOT'],
646 path = get_option(prog[0] + '-path')
648 message('Using @1@ for @0@'.format(prog[0], path))
650 exe = find_program(prog[0],
651 '/usr/sbin/' + prog[0],
654 path = exe.found() ? exe.path() : prog[1]
656 name = prog.length() > 2 ? prog[2] : prog[0].to_upper()
657 conf.set_quoted(name, path)
658 substs.set(name, path)
661 #if 0 /// unneeded by elogind
662 # conf.set_quoted('TELINIT', get_option('telinit-path'))
664 # if run_command('ln', '--relative', '--help').returncode() != 0
665 # error('ln does not support --relative (added in coreutils 8.16)')
669 ############################################################
671 gperf = find_program('gperf')
673 gperf_test_format = '''
675 const char * in_word_set(const char *, @0@);
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'
684 gperf_test = gperf_test_format.format('unsigned', gperf_snippet.stdout())
685 if cc.compiles(gperf_test)
686 gperf_len_type = 'unsigned'
688 error('unable to determine gperf len type')
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')
695 ############################################################
697 if not cc.has_header('sys/capability.h')
698 error('POSIX caps headers not found')
700 foreach header : ['crypt.h',
703 'linux/vm_sockets.h',
705 'valgrind/memcheck.h',
706 'valgrind/valgrind.h',
709 conf.set10('HAVE_' + header.underscorify().to_upper(),
710 cc.has_header(header))
713 ############################################################
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'] : [])
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')
729 conf.set('DEFAULT_HIERARCHY', 'CGROUP_UNIFIED_ALL')
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()
738 # time_epoch = time_epoch.to_int()
739 # conf.set('TIME_EPOCH', time_epoch)
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'
751 # No controller now is a problem:
752 if with_cgroupctrl == ''
753 error('Unable to determine cgroup controller, but cgroups support is mandatory!')
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 ############################################################
765 system_uid_max = get_option('system-uid-max')
766 if system_uid_max == ''
767 system_uid_max = run_command(
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'
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))
780 system_gid_max = get_option('system-gid-max')
781 if system_gid_max == ''
782 system_gid_max = run_command(
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'
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))
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)
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)
811 nobody_user = get_option('nobody-user')
812 nobody_group = get_option('nobody-group')
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.')
823 id_result = run_command('id', '-u', nobody_user)
824 if id_result.returncode() == 0
825 id = id_result.stdout().to_int()
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.')
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.')
842 id_result = run_command('id', '-g', nobody_group)
843 if id_result.returncode() == 0
844 id = id_result.stdout().to_int()
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.')
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.')
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)
862 tty_gid = get_option('tty-gid')
863 conf.set('TTY_GID', tty_gid)
864 substs.set('TTY_GID', tty_gid)
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()
873 # substs.set('USERS_GID', users_gid)
875 # if get_option('adm-group')
876 # m4_defines += ['-DENABLE_ADM_GROUP']
879 # if get_option('wheel-group')
880 # m4_defines += ['-DENABLE_WHEEL_GROUP']
883 # substs.set('DEV_KVM_MODE', get_option('dev-kvm-mode'))
884 # substs.set('GROUP_RENDER_MODE', get_option('group-render-mode'))
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')
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)
897 # ntp_servers = get_option('ntp-servers')
898 # conf.set_quoted('NTP_SERVERS', ntp_servers)
899 # substs.set('NTP_SERVERS', ntp_servers)
902 conf.set_quoted('GETTEXT_PACKAGE', meson.project_name())
904 #if 0 /// UNNEEDED by elogind
905 # substs.set('SUSHELL', get_option('debug-shell'))
906 # substs.set('DEBUGTTY', get_option('debug-tty'))
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
916 foreach name : debug.split(',')
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
926 message('unknown debug option "@0@", ignoring'.format(name))
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)
936 #####################################################################
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')
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')
950 #if 0 /// UNNEEDED by elogind
951 # libmount = dependency('mount',
952 # version : fuzzer_build ? '>= 0' : '>= 2.30')
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()
967 conf.set10('HAVE_SECCOMP', have)
968 m4_defines += have ? ['-DHAVE_SECCOMP'] : []
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()
980 conf.set10('HAVE_SELINUX', have)
981 m4_defines += have ? ['-DHAVE_SELINUX'] : []
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()
996 conf.set10('HAVE_APPARMOR', have)
997 m4_defines += have ? ['-DHAVE_APPARMOR'] : []
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']
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
1011 libpolkit = dependency('polkit-gobject-1',
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
1018 conf.set10('ENABLE_POLKIT', install_polkit)
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()
1028 conf.set10('HAVE_ACL', have)
1029 m4_defines += have ? ['-DHAVE_ACL'] : []
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()
1039 conf.set10('HAVE_AUDIT', have)
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()
1050 # conf.set10('HAVE_BLKID', have)
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()
1062 # conf.set10('HAVE_KMOD', have)
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()
1078 conf.set10('HAVE_PAM', have)
1079 m4_defines += have ? ['-DHAVE_PAM'] : []
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()
1090 # libmicrohttpd = []
1092 # conf.set10('HAVE_MICROHTTPD', have)
1093 # m4_defines += have ? ['-DHAVE_MICROHTTPD'] : []
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()
1103 # libcryptsetup = []
1105 # conf.set10('HAVE_LIBCRYPTSETUP', have)
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()
1117 # conf.set10('HAVE_LIBCURL', have)
1118 # m4_defines += have ? ['-DHAVE_LIBCURL'] : []
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')
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()
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()
1144 # conf.set10('HAVE_LIBIDN2', have)
1145 # m4_defines += have ? ['-DHAVE_LIBIDN2'] : []
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()
1156 # conf.set10('HAVE_LIBIPTC', have)
1157 # m4_defines += have ? ['-DHAVE_LIBIPTC'] : []
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()
1168 # conf.set10('HAVE_QRENCODE', have)
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()
1179 # # link to neither of the libs if one is not found
1183 # conf.set10('HAVE_GCRYPT', have)
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()
1195 # conf.set10('HAVE_GNUTLS', have)
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()
1206 # conf.set10('HAVE_ELFUTILS', have)
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()
1217 # conf.set10('HAVE_ZLIB', have)
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()
1228 # conf.set10('HAVE_BZIP2', have)
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()
1239 # conf.set10('HAVE_XZ', have)
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()
1250 # conf.set10('HAVE_LZ4', have)
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()
1279 conf.set10('HAVE_XKBCOMMON', have)
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()
1290 conf.set10('HAVE_PCRE2', have)
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()
1309 conf.set10('HAVE_GLIB', have)
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()
1321 conf.set10('HAVE_DBUS', have)
1323 #if 0 /// UNNEEDED by elogind
1324 # default_dnssec = get_option('default-dnssec')
1326 # default_dnssec = 'no'
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'
1332 # conf.set('DEFAULT_DNSSEC_MODE',
1333 # 'DNSSEC_' + default_dnssec.underscorify().to_upper())
1334 # substs.set('DEFAULT_DNSSEC_MODE', default_dnssec)
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')
1349 # conf.set10('ENABLE_IMPORTD', have)
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')
1362 # have = have_deps[0] or have_deps[1]
1367 conf.set10('ENABLE_REMOTE', have)
1369 foreach term : ['utmp',
1370 #if 0 /// UNNEEDED by elogind
1404 have = get_option(term)
1405 name = 'ENABLE_' + term.underscorify().to_upper()
1406 conf.set10(name, have)
1407 m4_defines += have ? ['-D' + name] : []
1410 want_tests = get_option('tests')
1411 install_tests = get_option('install-tests')
1412 slow_tests = get_option('slow-tests')
1416 conf.set10('SYSTEMD_SLOW_TESTS_DEFAULT', slow_tests)
1418 #####################################################################
1420 #if 0 /// UNNEEDED by elogind
1421 # if get_option('efi')
1422 # efi_arch = host_machine.cpu_family()
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'
1437 # EFI_MACHINE_TYPE_NAME = ''
1442 # conf.set_quoted('EFI_MACHINE_TYPE_NAME', EFI_MACHINE_TYPE_NAME)
1444 # conf.set('SD_TPM_PCR', get_option('tpm-pcrindex').to_int())
1449 conf.set10('ENABLE_EFI', have)
1451 #####################################################################
1453 config_h = configure_file(
1454 output : 'config.h',
1455 configuration : conf)
1457 includes = include_directories('src/basic',
1460 #if 0 /// UNNEEDED by elogind
1465 'src/time-wait-sync',
1467 #if 0 /// UNNEEDED by elogind
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',
1481 'src/libelogind/sd-bus',
1482 'src/libelogind/sd-id128',
1488 add_project_arguments('-include', 'config.h', language : 'c')
1491 #if 0 /// UNNEEDED by elogind
1494 subdir('src/systemd')
1496 #if 0 /// UNNEEDED by elogind
1497 # subdir('src/libsystemd')
1498 # subdir('src/libsystemd-network')
1499 # subdir('src/journal')
1502 subdir('src/libelogind')
1504 subdir('src/update-utmp')
1508 #if 0 /// UNNEEDED by elogind
1509 # libjournal_core = static_library(
1511 # libjournal_core_sources,
1513 # include_directories : includes,
1517 libelogind_sym_path = '@0@/@1@'.format(meson.current_source_dir(), libelogind_sym)
1518 libelogind = shared_library(
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,
1528 # link_whole : [libsystemd_static,
1529 # libjournal_client],
1530 # dependencies : [threads,
1534 # link_depends : libsystemd_sym,
1536 link_with : [libbasic],
1537 link_whole : [libelogind_static],
1538 dependencies : [threads],
1539 link_depends : libelogind_sym,
1542 install_dir : rootlibdir)
1544 ############################################################
1546 # binaries that have --help and are intended for use by humans,
1547 # usually, but not always, installed in /bin.
1548 public_programs = []
1550 #if 0 /// UNNEEDED by elogind
1551 # subdir('src/libudev')
1553 # elogind depends on external libudev:
1554 libudev = dependency('libudev', required : true)
1556 subdir('src/shared')
1557 #if 0 /// UNNEEDED by elogind
1558 # subdir('src/core')
1559 # subdir('src/udev')
1560 # subdir('src/network')
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')
1579 #if 0 /// UNNEEDED by elogind
1580 # subdir('src/fuzz')
1585 ############################################################
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(
1592 include_directories : includes,
1593 link_with : [libbasic],
1594 dependencies : [libdl])
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']]
1602 # condition = tuple[1] == '' or conf.get(tuple[1]) == 1
1606 # sym = 'src/nss-@0@/nss-@0@.sym'.format(module)
1607 # version_script_arg = join_paths(meson.current_source_dir(), sym)
1609 # nss = shared_library(
1611 # 'src/nss-@0@/nss-@0@.c'.format(module),
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',
1617 # '-Wl,--version-script=' + version_script_arg,
1618 # '-Wl,--undefined'],
1619 # link_with : [libsystemd_static,
1621 # dependencies : [threads,
1623 # link_depends : sym,
1625 # install_dir : rootlibdir)
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))
1633 # test('dlopen-nss_' + module,
1635 # args : [nss.full_path()]) # path to dlopen must include a slash
1640 ############################################################
1642 #if 0 /// UNNEEDED by elogind
1643 # executable('systemd',
1645 # include_directories : includes,
1646 # link_with : [libcore,
1648 # dependencies : [threads,
1654 # install_rpath : rootlibexecdir,
1656 # install_dir : rootlibexecdir)
1658 # meson.add_install_script(meson_make_symlink,
1659 # join_paths(rootlibexecdir, 'systemd'),
1660 # join_paths(rootsbindir, 'init'))
1662 # exe = executable('systemd-analyze',
1663 # systemd_analyze_sources,
1664 # include_directories : includes,
1665 # link_with : [libcore,
1667 # dependencies : [threads,
1673 # install_rpath : rootlibexecdir,
1675 # public_programs += [exe]
1677 # executable('systemd-journald',
1678 # systemd_journald_sources,
1679 # include_directories : includes,
1680 # link_with : [libjournal_core,
1682 # dependencies : [threads,
1686 # install_rpath : rootlibexecdir,
1688 # install_dir : rootlibexecdir)
1690 # exe = executable('systemd-cat',
1691 # systemd_cat_sources,
1692 # include_directories : includes,
1693 # link_with : [libjournal_core,
1695 # dependencies : [threads],
1696 # install_rpath : rootlibexecdir,
1698 # public_programs += [exe]
1700 # exe = executable('journalctl',
1701 # journalctl_sources,
1702 # include_directories : includes,
1703 # link_with : [libshared],
1704 # dependencies : [threads,
1709 # install_rpath : rootlibexecdir,
1711 # install_dir : rootbindir)
1712 # public_programs += [exe]
1714 # executable('systemd-getty-generator',
1715 # 'src/getty-generator/getty-generator.c',
1716 # include_directories : includes,
1717 # link_with : [libshared],
1718 # install_rpath : rootlibexecdir,
1720 # install_dir : systemgeneratordir)
1722 # executable('systemd-debug-generator',
1723 # 'src/debug-generator/debug-generator.c',
1724 # include_directories : includes,
1725 # link_with : [libshared],
1726 # install_rpath : rootlibexecdir,
1728 # install_dir : systemgeneratordir)
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,
1737 # install_dir : systemgeneratordir)
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,
1746 # install_dir : userenvgeneratordir)
1748 # meson.add_install_script(meson_make_symlink,
1749 # join_paths(sysconfdir, 'environment'),
1750 # join_paths(environmentdir, '99-environment.conf'))
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,
1760 # install_dir : systemgeneratordir)
1762 # executable('systemd-hibernate-resume',
1763 # 'src/hibernate-resume/hibernate-resume.c',
1764 # include_directories : includes,
1765 # link_with : [libshared],
1766 # install_rpath : rootlibexecdir,
1768 # install_dir : rootlibexecdir)
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,
1780 # install_dir : systemgeneratordir)
1782 # exe = executable('systemd-dissect',
1783 # 'src/dissect/dissect.c',
1784 # include_directories : includes,
1785 # link_with : [libshared],
1786 # install_rpath : rootlibexecdir,
1788 # install_dir : rootlibexecdir)
1789 # public_programs += [exe]
1792 # if conf.get('ENABLE_RESOLVE') == 1
1793 # executable('systemd-resolved',
1794 # systemd_resolved_sources,
1795 # include_directories : includes,
1796 # link_with : [libshared,
1798 # libsystemd_resolve_core],
1799 # dependencies : [threads,
1803 # install_rpath : rootlibexecdir,
1805 # install_dir : rootlibexecdir)
1807 # exe = executable('systemd-resolve',
1808 # systemd_resolve_sources,
1809 # include_directories : includes,
1810 # link_with : [libshared,
1812 # libsystemd_resolve_core],
1813 # dependencies : [threads,
1817 # install_rpath : rootlibexecdir,
1819 # public_programs += [exe]
1821 # meson.add_install_script(meson_make_symlink,
1822 # join_paths(bindir, 'systemd-resolve'),
1823 # join_paths(rootsbindir, 'resolvconf'))
1826 # if conf.get('ENABLE_LOGIND') == 1
1827 # executable('systemd-logind',
1828 # systemd_logind_sources,
1829 # include_directories : includes,
1830 # link_with : [liblogind_core,
1832 # dependencies : [threads,
1834 # install_rpath : rootlibexecdir,
1836 # install_dir : rootlibexecdir)
1838 # exe = executable('loginctl',
1840 # include_directories : includes,
1841 # link_with : [libshared],
1842 # dependencies : [threads,
1845 # install_rpath : rootlibexecdir,
1847 # install_dir : rootbindir)
1848 # public_programs += [exe]
1850 # exe = executable('systemd-inhibit',
1851 # 'src/login/inhibit.c',
1852 # include_directories : includes,
1853 # link_with : [libshared],
1854 # install_rpath : rootlibexecdir,
1856 # install_dir : rootbindir)
1857 # public_programs += [exe]
1859 # if conf.get('HAVE_PAM') == 1
1860 # version_script_arg = join_paths(meson.current_source_dir(), pam_systemd_sym)
1861 # pam_systemd = shared_library(
1865 # include_directories : includes,
1866 # link_args : ['-shared',
1867 # '-Wl,--version-script=' + version_script_arg],
1868 # link_with : [libsystemd_static,
1869 # libshared_static],
1870 # dependencies : [threads,
1873 # link_depends : pam_systemd_sym,
1875 # install_dir : pamlibdir)
1877 # test('dlopen-pam_systemd',
1879 # args : [pam_systemd.full_path()]) # path to dlopen must include a slash
1884 executable('elogind',
1886 include_directories : includes,
1887 link_with : [liblogind_core,
1889 dependencies : [threads,
1892 install_rpath : rootlibexecdir,
1894 install_dir : rootlibexecdir)
1896 exe = executable('loginctl',
1898 include_directories : includes,
1899 link_with : [libshared],
1900 dependencies : [threads,
1902 install_rpath : rootlibexecdir,
1904 install_dir : rootbindir)
1905 public_programs += [exe]
1907 exe = executable('elogind-inhibit',
1908 'src/login/inhibit.c',
1909 include_directories : includes,
1910 link_with : [libshared],
1911 dependencies : [threads],
1912 install_rpath : rootlibexecdir,
1914 install_dir : rootbindir)
1915 public_programs += [exe]
1917 if conf.get('HAVE_PAM') == 1
1918 version_script_arg = join_paths(meson.current_source_dir(), pam_elogind_sym)
1919 pam_elogind = shared_library(
1923 include_directories : includes,
1924 link_args : ['-shared',
1925 '-Wl,--version-script=' + version_script_arg],
1926 link_with : [libelogind_static,
1928 dependencies : [threads,
1931 link_depends : pam_elogind_sym,
1933 install_dir : pamlibdir)
1935 test('dlopen-pam_elogind',
1937 args : [pam_elogind.full_path()]) # path to dlopen must include a slash
1940 #if 0 /// UNNEEDED by elogind
1941 # executable('systemd-user-sessions',
1942 # 'src/user-sessions/user-sessions.c',
1943 # include_directories : includes,
1944 # link_with : [libshared],
1945 # install_rpath : rootlibexecdir,
1947 # install_dir : rootlibexecdir)
1950 # if conf.get('ENABLE_EFI') == 1 and conf.get('HAVE_BLKID') == 1
1951 # exe = executable('bootctl',
1952 # 'src/boot/bootctl.c',
1953 # include_directories : includes,
1954 # link_with : [libshared],
1955 # dependencies : [libblkid],
1956 # install_rpath : rootlibexecdir,
1958 # public_programs += [exe]
1961 # exe = executable('systemd-socket-activate', 'src/activate/activate.c',
1962 # include_directories : includes,
1963 # link_with : [libshared],
1964 # dependencies : [threads],
1965 # install_rpath : rootlibexecdir,
1967 # public_programs += [exe]
1969 # exe = executable('systemctl', 'src/systemctl/systemctl.c',
1970 # include_directories : includes,
1971 # link_with : [libshared],
1972 # dependencies : [threads,
1977 # install_rpath : rootlibexecdir,
1979 # install_dir : rootbindir)
1980 # public_programs += [exe]
1982 # foreach alias : ['halt', 'poweroff', 'reboot', 'runlevel', 'shutdown', 'telinit']
1983 # meson.add_install_script(meson_make_symlink,
1984 # join_paths(rootbindir, 'systemctl'),
1985 # join_paths(rootsbindir, alias))
1988 # if conf.get('ENABLE_BACKLIGHT') == 1
1989 # executable('systemd-backlight',
1990 # 'src/backlight/backlight.c',
1991 # include_directories : includes,
1992 # link_with : [libshared],
1993 # install_rpath : rootlibexecdir,
1995 # install_dir : rootlibexecdir)
1998 # if conf.get('ENABLE_RFKILL') == 1
1999 # executable('systemd-rfkill',
2000 # 'src/rfkill/rfkill.c',
2001 # include_directories : includes,
2002 # link_with : [libshared],
2003 # install_rpath : rootlibexecdir,
2005 # install_dir : rootlibexecdir)
2008 # executable('systemd-system-update-generator',
2009 # 'src/system-update-generator/system-update-generator.c',
2010 # include_directories : includes,
2011 # link_with : [libshared],
2012 # install_rpath : rootlibexecdir,
2014 # install_dir : systemgeneratordir)
2016 # if conf.get('HAVE_LIBCRYPTSETUP') == 1
2017 # executable('systemd-cryptsetup',
2018 # 'src/cryptsetup/cryptsetup.c',
2019 # include_directories : includes,
2020 # link_with : [libshared],
2021 # dependencies : [libcryptsetup],
2022 # install_rpath : rootlibexecdir,
2024 # install_dir : rootlibexecdir)
2026 # executable('systemd-cryptsetup-generator',
2027 # 'src/cryptsetup/cryptsetup-generator.c',
2028 # include_directories : includes,
2029 # link_with : [libshared],
2030 # dependencies : [libcryptsetup],
2031 # install_rpath : rootlibexecdir,
2033 # install_dir : systemgeneratordir)
2035 # executable('systemd-veritysetup',
2036 # 'src/veritysetup/veritysetup.c',
2037 # include_directories : includes,
2038 # link_with : [libshared],
2039 # dependencies : [libcryptsetup],
2040 # install_rpath : rootlibexecdir,
2042 # install_dir : rootlibexecdir)
2044 # executable('systemd-veritysetup-generator',
2045 # 'src/veritysetup/veritysetup-generator.c',
2046 # include_directories : includes,
2047 # link_with : [libshared],
2048 # dependencies : [libcryptsetup],
2049 # install_rpath : rootlibexecdir,
2051 # install_dir : systemgeneratordir)
2054 # if conf.get('HAVE_SYSV_COMPAT') == 1
2055 # executable('systemd-sysv-generator',
2056 # 'src/sysv-generator/sysv-generator.c',
2057 # include_directories : includes,
2058 # link_with : [libshared],
2059 # install_rpath : rootlibexecdir,
2061 # install_dir : systemgeneratordir)
2063 # executable('systemd-rc-local-generator',
2064 # 'src/rc-local-generator/rc-local-generator.c',
2065 # include_directories : includes,
2066 # link_with : [libshared],
2067 # install_rpath : rootlibexecdir,
2069 # install_dir : systemgeneratordir)
2072 # if conf.get('ENABLE_HOSTNAMED') == 1
2073 # executable('systemd-hostnamed',
2074 # 'src/hostname/hostnamed.c',
2075 # include_directories : includes,
2076 # link_with : [libshared],
2077 # install_rpath : rootlibexecdir,
2079 # install_dir : rootlibexecdir)
2081 # exe = executable('hostnamectl',
2082 # 'src/hostname/hostnamectl.c',
2083 # include_directories : includes,
2084 # link_with : [libshared],
2085 # install_rpath : rootlibexecdir,
2087 # public_programs += [exe]
2090 # if conf.get('ENABLE_LOCALED') == 1
2091 # if conf.get('HAVE_XKBCOMMON') == 1
2092 # # logind will load libxkbcommon.so dynamically on its own
2098 # executable('systemd-localed',
2099 # systemd_localed_sources,
2100 # include_directories : includes,
2101 # link_with : [libshared],
2102 # dependencies : deps,
2103 # install_rpath : rootlibexecdir,
2105 # install_dir : rootlibexecdir)
2107 # exe = executable('localectl',
2108 # localectl_sources,
2109 # include_directories : includes,
2110 # link_with : [libshared],
2111 # install_rpath : rootlibexecdir,
2113 # public_programs += [exe]
2116 # if conf.get('ENABLE_TIMEDATED') == 1
2117 # executable('systemd-timedated',
2118 # 'src/timedate/timedated.c',
2119 # include_directories : includes,
2120 # link_with : [libshared],
2121 # install_rpath : rootlibexecdir,
2123 # install_dir : rootlibexecdir)
2125 # exe = executable('timedatectl',
2126 # 'src/timedate/timedatectl.c',
2127 # include_directories : includes,
2128 # install_rpath : rootlibexecdir,
2129 # link_with : [libshared],
2131 # public_programs += [exe]
2134 # if conf.get('ENABLE_TIMESYNCD') == 1
2135 # executable('systemd-timesyncd',
2136 # systemd_timesyncd_sources,
2137 # include_directories : includes,
2138 # link_with : [libshared],
2139 # dependencies : [threads,
2141 # install_rpath : rootlibexecdir,
2143 # install_dir : rootlibexecdir)
2145 # executable('systemd-time-wait-sync',
2146 # 'src/time-wait-sync/time-wait-sync.c',
2147 # include_directories : includes,
2148 # link_with : [libshared],
2149 # install_rpath : rootlibexecdir,
2151 # install_dir : rootlibexecdir)
2154 # if conf.get('ENABLE_MACHINED') == 1
2155 # executable('systemd-machined',
2156 # systemd_machined_sources,
2157 # include_directories : includes,
2158 # link_with : [libmachine_core,
2160 # install_rpath : rootlibexecdir,
2162 # install_dir : rootlibexecdir)
2164 # exe = executable('machinectl',
2165 # 'src/machine/machinectl.c',
2166 # include_directories : includes,
2167 # link_with : [libshared],
2168 # dependencies : [threads,
2171 # install_rpath : rootlibexecdir,
2173 # install_dir : rootbindir)
2174 # public_programs += [exe]
2177 # if conf.get('ENABLE_IMPORTD') == 1
2178 # executable('systemd-importd',
2179 # systemd_importd_sources,
2180 # include_directories : includes,
2181 # link_with : [libshared],
2182 # dependencies : [threads],
2183 # install_rpath : rootlibexecdir,
2185 # install_dir : rootlibexecdir)
2187 # systemd_pull = executable('systemd-pull',
2188 # systemd_pull_sources,
2189 # include_directories : includes,
2190 # link_with : [libshared],
2191 # dependencies : [libcurl,
2196 # install_rpath : rootlibexecdir,
2198 # install_dir : rootlibexecdir)
2200 # systemd_import = executable('systemd-import',
2201 # systemd_import_sources,
2202 # include_directories : includes,
2203 # link_with : [libshared],
2204 # dependencies : [libcurl,
2208 # install_rpath : rootlibexecdir,
2210 # install_dir : rootlibexecdir)
2212 # systemd_export = executable('systemd-export',
2213 # systemd_export_sources,
2214 # include_directories : includes,
2215 # link_with : [libshared],
2216 # dependencies : [libcurl,
2220 # install_rpath : rootlibexecdir,
2222 # install_dir : rootlibexecdir)
2223 # public_programs += [systemd_pull, systemd_import, systemd_export]
2226 # if conf.get('ENABLE_REMOTE') == 1 and conf.get('HAVE_LIBCURL') == 1
2227 # exe = executable('systemd-journal-upload',
2228 # systemd_journal_upload_sources,
2229 # include_directories : includes,
2230 # link_with : [libshared],
2231 # dependencies : [threads,
2236 # install_rpath : rootlibexecdir,
2238 # install_dir : rootlibexecdir)
2239 # public_programs += [exe]
2242 # if conf.get('ENABLE_REMOTE') == 1 and conf.get('HAVE_MICROHTTPD') == 1
2243 # s_j_remote = executable('systemd-journal-remote',
2244 # systemd_journal_remote_sources,
2245 # include_directories : includes,
2246 # link_with : [libshared],
2247 # dependencies : [threads,
2252 # install_rpath : rootlibexecdir,
2254 # install_dir : rootlibexecdir)
2256 # s_j_gatewayd = executable('systemd-journal-gatewayd',
2257 # systemd_journal_gatewayd_sources,
2258 # include_directories : includes,
2259 # link_with : [libshared],
2260 # dependencies : [threads,
2265 # install_rpath : rootlibexecdir,
2267 # install_dir : rootlibexecdir)
2268 # public_programs += [s_j_remote, s_j_gatewayd]
2271 # if conf.get('ENABLE_COREDUMP') == 1
2272 # executable('systemd-coredump',
2273 # systemd_coredump_sources,
2274 # include_directories : includes,
2275 # link_with : [libshared],
2276 # dependencies : [threads,
2281 # install_rpath : rootlibexecdir,
2283 # install_dir : rootlibexecdir)
2285 # exe = executable('coredumpctl',
2286 # coredumpctl_sources,
2287 # include_directories : includes,
2288 # link_with : [libshared],
2289 # dependencies : [threads,
2292 # install_rpath : rootlibexecdir,
2294 # public_programs += [exe]
2297 # if conf.get('ENABLE_BINFMT') == 1
2298 # exe = executable('systemd-binfmt',
2299 # 'src/binfmt/binfmt.c',
2300 # include_directories : includes,
2301 # link_with : [libshared],
2302 # install_rpath : rootlibexecdir,
2304 # install_dir : rootlibexecdir)
2305 # public_programs += [exe]
2307 # meson.add_install_script('sh', '-c',
2308 # mkdir_p.format(binfmtdir))
2309 # meson.add_install_script('sh', '-c',
2310 # mkdir_p.format(join_paths(sysconfdir, 'binfmt.d')))
2313 # if conf.get('ENABLE_VCONSOLE') == 1
2314 # executable('systemd-vconsole-setup',
2315 # 'src/vconsole/vconsole-setup.c',
2316 # include_directories : includes,
2317 # link_with : [libshared],
2318 # install_rpath : rootlibexecdir,
2320 # install_dir : rootlibexecdir)
2323 # if conf.get('ENABLE_RANDOMSEED') == 1
2324 # executable('systemd-random-seed',
2325 # 'src/random-seed/random-seed.c',
2326 # include_directories : includes,
2327 # link_with : [libshared],
2328 # install_rpath : rootlibexecdir,
2330 # install_dir : rootlibexecdir)
2333 # if conf.get('ENABLE_FIRSTBOOT') == 1
2334 # executable('systemd-firstboot',
2335 # 'src/firstboot/firstboot.c',
2336 # include_directories : includes,
2337 # link_with : [libshared],
2338 # dependencies : [libcrypt],
2339 # install_rpath : rootlibexecdir,
2341 # install_dir : rootbindir)
2344 # executable('systemd-remount-fs',
2345 # 'src/remount-fs/remount-fs.c',
2346 # 'src/core/mount-setup.c',
2347 # 'src/core/mount-setup.h',
2348 # include_directories : includes,
2349 # link_with : [libshared],
2350 # install_rpath : rootlibexecdir,
2352 # install_dir : rootlibexecdir)
2354 # executable('systemd-machine-id-setup',
2355 # 'src/machine-id-setup/machine-id-setup-main.c',
2356 # 'src/core/machine-id-setup.c',
2357 # 'src/core/machine-id-setup.h',
2358 # include_directories : includes,
2359 # link_with : [libshared],
2360 # install_rpath : rootlibexecdir,
2362 # install_dir : rootbindir)
2364 # executable('systemd-fsck',
2365 # 'src/fsck/fsck.c',
2366 # include_directories : includes,
2367 # link_with : [libshared],
2368 # install_rpath : rootlibexecdir,
2370 # install_dir : rootlibexecdir)
2372 # executable('elogind-growfs',
2373 # 'src/partition/growfs.c',
2374 # include_directories : includes,
2375 # link_with : [libshared],
2376 # dependencies : [libcryptsetup],
2377 # install_rpath : rootlibexecdir,
2379 # install_dir : rootlibexecdir)
2381 # executable('elogind-makefs',
2382 # 'src/partition/makefs.c',
2383 # include_directories : includes,
2384 # link_with : [libshared],
2385 # install_rpath : rootlibexecdir,
2387 # install_dir : rootlibexecdir)
2389 # executable('systemd-sleep',
2390 # 'src/sleep/sleep.c',
2391 # include_directories : includes,
2392 # link_with : [libshared],
2393 # install_rpath : rootlibexecdir,
2395 # install_dir : rootlibexecdir)
2397 # exe = executable('systemd-sysctl',
2398 # 'src/sysctl/sysctl.c',
2399 # include_directories : includes,
2400 # link_with : [libshared],
2401 # install_rpath : rootlibexecdir,
2403 # install_dir : rootlibexecdir)
2404 # public_programs += [exe]
2406 # executable('systemd-ac-power',
2407 # 'src/ac-power/ac-power.c',
2408 # include_directories : includes,
2409 # link_with : [libshared],
2410 # install_rpath : rootlibexecdir,
2412 # install_dir : rootlibexecdir)
2414 # exe = executable('systemd-detect-virt',
2415 # 'src/detect-virt/detect-virt.c',
2416 # include_directories : includes,
2417 # link_with : [libshared],
2418 # install_rpath : rootlibexecdir,
2420 # public_programs += [exe]
2422 # exe = executable('systemd-delta',
2423 # 'src/delta/delta.c',
2424 # include_directories : includes,
2425 # link_with : [libshared],
2426 # install_rpath : rootlibexecdir,
2428 # public_programs += [exe]
2430 # exe = executable('systemd-escape',
2431 # 'src/escape/escape.c',
2432 # include_directories : includes,
2433 # link_with : [libshared],
2434 # install_rpath : rootlibexecdir,
2436 # install_dir : rootbindir)
2437 # public_programs += [exe]
2439 # exe = executable('systemd-notify',
2440 # 'src/notify/notify.c',
2441 # include_directories : includes,
2442 # link_with : [libshared],
2443 # install_rpath : rootlibexecdir,
2445 # install_dir : rootbindir)
2446 # public_programs += [exe]
2448 # executable('systemd-volatile-root',
2449 # 'src/volatile-root/volatile-root.c',
2450 # include_directories : includes,
2451 # link_with : [libshared],
2452 # install_rpath : rootlibexecdir,
2454 # install_dir : rootlibexecdir)
2456 # executable('systemd-cgroups-agent',
2457 # 'src/cgroups-agent/cgroups-agent.c',
2458 # include_directories : includes,
2459 # link_with : [libshared],
2460 # install_rpath : rootlibexecdir,
2462 # install_dir : rootlibexecdir)
2464 executable('elogind-cgroups-agent',
2465 'src/cgroups-agent/cgroups-agent.c',
2466 include_directories : includes,
2467 link_with : [libshared],
2468 install_rpath : rootlibexecdir,
2470 install_dir : rootlibexecdir)
2473 #if 0 /// UNNEEDED by elogind
2474 # exe = executable('systemd-path',
2475 # 'src/path/path.c',
2476 # include_directories : includes,
2477 # link_with : [libshared],
2478 # install_rpath : rootlibexecdir,
2480 # public_programs += [exe]
2482 # exe = executable('systemd-ask-password',
2483 # 'src/ask-password/ask-password.c',
2484 # include_directories : includes,
2485 # link_with : [libshared],
2486 # install_rpath : rootlibexecdir,
2488 # install_dir : rootbindir)
2489 # public_programs += [exe]
2491 # executable('systemd-reply-password',
2492 # 'src/reply-password/reply-password.c',
2493 # include_directories : includes,
2494 # link_with : [libshared],
2495 # install_rpath : rootlibexecdir,
2497 # install_dir : rootlibexecdir)
2499 # exe = executable('systemd-tty-ask-password-agent',
2500 # 'src/tty-ask-password-agent/tty-ask-password-agent.c',
2501 # include_directories : includes,
2502 # link_with : [libshared],
2503 # install_rpath : rootlibexecdir,
2505 # install_dir : rootbindir)
2506 # public_programs += [exe]
2508 # exe = executable('systemd-cgls',
2509 # 'src/cgls/cgls.c',
2510 # include_directories : includes,
2511 # link_with : [libshared],
2512 # install_rpath : rootlibexecdir,
2514 # public_programs += [exe]
2516 # exe = executable('systemd-cgtop',
2517 # 'src/cgtop/cgtop.c',
2518 # include_directories : includes,
2519 # link_with : [libshared],
2520 # install_rpath : rootlibexecdir,
2522 # public_programs += [exe]
2524 # executable('systemd-initctl',
2525 # 'src/initctl/initctl.c',
2526 # include_directories : includes,
2527 # link_with : [libshared],
2528 # install_rpath : rootlibexecdir,
2530 # install_dir : rootlibexecdir)
2532 # exe = executable('systemd-mount',
2533 # 'src/mount/mount-tool.c',
2534 # include_directories : includes,
2535 # link_with : [libshared],
2536 # install_rpath : rootlibexecdir,
2538 # public_programs += [exe]
2540 # meson.add_install_script(meson_make_symlink,
2541 # 'systemd-mount', join_paths(bindir, 'systemd-umount'))
2543 # exe = executable('systemd-run',
2545 # include_directories : includes,
2546 # link_with : [libshared],
2547 # install_rpath : rootlibexecdir,
2549 # public_programs += [exe]
2551 # exe = executable('systemd-stdio-bridge',
2552 # 'src/stdio-bridge/stdio-bridge.c',
2553 # include_directories : includes,
2554 # link_with : [libshared],
2555 # install_rpath : rootlibexecdir,
2557 # public_programs += [exe]
2559 # exe = executable('busctl',
2560 # 'src/busctl/busctl.c',
2561 # 'src/busctl/busctl-introspect.c',
2562 # 'src/busctl/busctl-introspect.h',
2563 # include_directories : includes,
2564 # link_with : [libshared],
2565 # install_rpath : rootlibexecdir,
2567 # public_programs += [exe]
2569 # if conf.get('ENABLE_SYSUSERS') == 1
2570 # exe = executable('systemd-sysusers',
2571 # 'src/sysusers/sysusers.c',
2572 # include_directories : includes,
2573 # link_with : [libshared],
2574 # install_rpath : rootlibexecdir,
2576 # install_dir : rootbindir)
2577 # public_programs += [exe]
2580 # if conf.get('ENABLE_TMPFILES') == 1
2581 # exe = executable('systemd-tmpfiles',
2582 # 'src/tmpfiles/tmpfiles.c',
2583 # include_directories : includes,
2584 # link_with : [libshared],
2585 # dependencies : [libacl],
2586 # install_rpath : rootlibexecdir,
2588 # install_dir : rootbindir)
2589 # public_programs += [exe]
2591 # test('test-systemd-tmpfiles',
2592 # test_systemd_tmpfiles_py,
2593 # args : exe.full_path())
2594 # # https://github.com/mesonbuild/meson/issues/2681
2597 # if conf.get('ENABLE_HWDB') == 1
2598 # exe = executable('systemd-hwdb',
2599 # 'src/hwdb/hwdb.c',
2600 # 'src/libsystemd/sd-hwdb/hwdb-internal.h',
2601 # include_directories : includes,
2602 # link_with : [libudev_static],
2603 # install_rpath : udev_rpath,
2605 # install_dir : rootbindir)
2606 # public_programs += [exe]
2609 # if conf.get('ENABLE_QUOTACHECK') == 1
2610 # executable('systemd-quotacheck',
2611 # 'src/quotacheck/quotacheck.c',
2612 # include_directories : includes,
2613 # link_with : [libshared],
2614 # install_rpath : rootlibexecdir,
2616 # install_dir : rootlibexecdir)
2619 # exe = executable('systemd-socket-proxyd',
2620 # 'src/socket-proxy/socket-proxyd.c',
2621 # include_directories : includes,
2622 # link_with : [libshared],
2623 # dependencies : [threads],
2624 # install_rpath : rootlibexecdir,
2626 # install_dir : rootlibexecdir)
2627 # public_programs += [exe]
2629 # exe = executable('systemd-udevd',
2630 # systemd_udevd_sources,
2631 # include_directories : includes,
2632 # c_args : ['-DLOG_REALM=LOG_REALM_UDEV'],
2633 # link_with : [libudev_core,
2634 # libsystemd_network,
2636 # dependencies : [threads,
2641 # install_rpath : udev_rpath,
2643 # install_dir : rootlibexecdir)
2644 # public_programs += [exe]
2646 # exe = executable('udevadm',
2648 # c_args : ['-DLOG_REALM=LOG_REALM_UDEV'],
2649 # include_directories : includes,
2650 # link_with : [libudev_core,
2651 # libsystemd_network,
2653 # dependencies : [threads,
2658 # install_rpath : udev_rpath,
2660 # install_dir : rootbindir)
2661 # public_programs += [exe]
2663 # executable('systemd-shutdown',
2664 # systemd_shutdown_sources,
2665 # include_directories : includes,
2666 # link_with : [libshared],
2667 # dependencies : [libmount],
2668 # install_rpath : rootlibexecdir,
2670 # install_dir : rootlibexecdir)
2672 # executable('systemd-update-done',
2673 # 'src/update-done/update-done.c',
2674 # include_directories : includes,
2675 # link_with : [libshared],
2676 # install_rpath : rootlibexecdir,
2678 # install_dir : rootlibexecdir)
2680 # executable('systemd-update-utmp',
2681 # 'src/update-utmp/update-utmp.c',
2682 # include_directories : includes,
2683 # link_with : [libshared],
2684 # dependencies : [libaudit],
2685 # install_rpath : rootlibexecdir,
2687 # install_dir : rootlibexecdir)
2689 # if conf.get('HAVE_KMOD') == 1
2690 # executable('systemd-modules-load',
2691 # 'src/modules-load/modules-load.c',
2692 # include_directories : includes,
2693 # link_with : [libshared],
2694 # dependencies : [libkmod],
2695 # install_rpath : rootlibexecdir,
2697 # install_dir : rootlibexecdir)
2699 # meson.add_install_script('sh', '-c',
2700 # mkdir_p.format(modulesloaddir))
2701 # meson.add_install_script('sh', '-c',
2702 # mkdir_p.format(join_paths(sysconfdir, 'modules-load.d')))
2705 # exe = executable('systemd-nspawn',
2706 # systemd_nspawn_sources,
2707 # 'src/core/mount-setup.c', # FIXME: use a variable?
2708 # 'src/core/mount-setup.h',
2709 # 'src/core/loopback-setup.c',
2710 # 'src/core/loopback-setup.h',
2711 # include_directories : [includes, include_directories('src/nspawn')],
2712 # link_with : [libshared],
2713 # dependencies : [libacl,
2717 # install_rpath : rootlibexecdir,
2719 # public_programs += [exe]
2721 # if conf.get('ENABLE_NETWORKD') == 1
2722 # executable('systemd-networkd',
2723 # systemd_networkd_sources,
2724 # include_directories : includes,
2725 # link_with : [libnetworkd_core,
2726 # libsystemd_network,
2729 # dependencies : [threads],
2730 # install_rpath : rootlibexecdir,
2732 # install_dir : rootlibexecdir)
2734 # executable('systemd-networkd-wait-online',
2735 # systemd_networkd_wait_online_sources,
2736 # include_directories : includes,
2737 # link_with : [libnetworkd_core,
2739 # install_rpath : rootlibexecdir,
2741 # install_dir : rootlibexecdir)
2743 # exe = executable('networkctl',
2744 # networkctl_sources,
2745 # include_directories : includes,
2746 # link_with : [libsystemd_network,
2748 # install_rpath : rootlibexecdir,
2750 # install_dir : rootbindir)
2751 # public_programs += [exe]
2754 # executable('systemd-sulogin-shell',
2755 # ['src/sulogin-shell/sulogin-shell.c'],
2756 # include_directories : includes,
2757 # link_with : [libshared],
2758 # install_rpath : rootlibexecdir,
2760 # install_dir : rootlibexecdir)
2762 executable('elogind-uaccess-command',
2763 'src/uaccess-command/uaccess-command.c',
2764 include_directories : includes,
2765 link_with : [liblogind_core,
2767 dependencies: [libacl,
2769 install_rpath : rootlibexecdir,
2771 install_dir : rootlibexecdir)
2774 ############################################################
2776 foreach tuple : tests
2778 link_with = tuple[1].length() > 0 ? tuple[1] : [libshared]
2779 dependencies = tuple[2]
2780 condition = tuple.length() >= 4 ? tuple[3] : ''
2781 type = tuple.length() >= 5 ? tuple[4] : ''
2782 defs = tuple.length() >= 6 ? tuple[5] : []
2783 incs = tuple.length() >= 7 ? tuple[6] : includes
2786 name = sources[0].split('/')[-1].split('.')[0]
2787 if type.startswith('timeout=')
2788 timeout = type.split('=')[1].to_int()
2791 if want_tests == 'false'
2792 message('Not compiling @0@ because tests is set to false'.format(name))
2793 elif condition == '' or conf.get(condition) == 1
2797 include_directories : incs,
2798 link_with : link_with,
2799 dependencies : dependencies,
2801 install_rpath : rootlibexecdir,
2802 install : install_tests,
2803 install_dir : join_paths(testsdir, type))
2806 message('@0@ is a manual test'.format(name))
2807 elif type == 'unsafe' and want_tests != 'unsafe'
2808 message('@0@ is an unsafe test'.format(name))
2815 message('Not compiling @0@ because @1@ is not true'.format(name, condition))
2819 #if 0 /// UNNEEDED by elogind
2820 # test_libsystemd_sym = executable(
2821 # 'test-libsystemd-sym',
2822 # test_libsystemd_sym_c,
2823 # include_directories : includes,
2824 # link_with : [libsystemd],
2825 # install : install_tests,
2826 # install_dir : testsdir)
2827 # test('test-libsystemd-sym',
2828 # test_libsystemd_sym)
2830 # test_libudev_sym = executable(
2831 # 'test-libudev-sym',
2832 # test_libudev_sym_c,
2833 # include_directories : includes,
2834 # c_args : ['-Wno-deprecated-declarations'],
2835 # link_with : [libudev],
2836 # install : install_tests,
2837 # install_dir : testsdir)
2838 # test('test-libudev-sym',
2841 # ############################################################
2845 # foreach tuple : fuzzers
2846 # sources = tuple[0]
2847 # link_with = tuple[1].length() > 0 ? tuple[1] : [libshared]
2848 # dependencies = tuple[2]
2849 # defs = tuple.length() >= 4 ? tuple[3] : []
2850 # incs = tuple.length() >= 5 ? tuple[4] : includes
2853 # dependencies += fuzzing_engine
2855 # sources += 'src/fuzz/fuzz-main.c'
2858 # name = sources[0].split('/')[-1].split('.')[0]
2860 # fuzzer_exes += executable(
2863 # include_directories : [incs, include_directories('src/fuzz')],
2864 # link_with : link_with,
2865 # dependencies : dependencies,
2870 # run_target('fuzzers',
2871 # depends : fuzzer_exes,
2872 # command : ['true'])
2874 # ############################################################
2877 test_libelogind_sym = executable(
2878 'test-libelogind-sym',
2879 test_libelogind_sym_c,
2880 include_directories : includes,
2881 link_with : [libelogind],
2882 install : install_tests,
2883 install_dir : testsdir)
2884 test('test-libelogind-sym',
2885 test_libelogind_sym)
2887 make_directive_index_py = find_program('tools/make-directive-index.py')
2888 make_man_index_py = find_program('tools/make-man-index.py')
2889 xml_helper_py = find_program('tools/xml_helper.py')
2890 #if 0 /// UNNEEDED by elogind
2891 # hwdb_update_sh = find_program('tools/meson-hwdb-update.sh')
2894 # subdir('sysctl.d')
2895 # subdir('sysusers.d')
2896 # subdir('tmpfiles.d')
2902 subdir('shell-completion/bash')
2903 subdir('shell-completion/zsh')
2904 #if 0 /// UNNEEDED by elogind
2906 subdir('doc/sysvinit')
2907 subdir('doc/var-log')
2909 # FIXME: figure out if the warning is true:
2910 # https://github.com/mesonbuild/meson/wiki/Reference-manual#install_subdir
2911 install_subdir('factory/etc',
2912 install_dir : factorydir)
2915 #if 0 /// UNNEEDED by elogind
2916 # install_data('xorg/50-systemd-user.sh',
2917 # install_dir : xinitrcdir)
2918 # install_data('modprobe.d/systemd.conf',
2919 # install_dir : modprobedir)
2921 install_data('LICENSE.GPL2',
2926 #if 0 /// irrelevant for elogind
2927 # 'doc/DISTRO_PORTING',
2928 # 'doc/ENVIRONMENT.md',
2930 # 'doc/TRANSIENT-SETTINGS.md',
2931 # 'doc/TRANSLATORS',
2932 # 'doc/UIDS-GIDS.md',
2934 'src/libelogind/sd-bus/GVARIANT-SERIALIZATION',
2935 install_dir : docdir)
2937 #if 0 /// UNNEEDED by elogind
2938 # meson.add_install_script('sh', '-c', mkdir_p.format(systemdstatedir))
2940 meson.add_install_script('sh', '-c', 'touch $DESTDIR@0@'.format(prefixdir))
2942 ############################################################
2944 meson_check_help = find_program('tools/meson-check-help.sh')
2946 foreach exec : public_programs
2947 name = exec.full_path().split('/')[-1]
2948 test('check-help-' + name,
2950 args : [exec.full_path()])
2953 ############################################################
2955 #if 0 /// fuzz regression tests are not supported by elogind
2956 # # Enable tests for all supported sanitizers
2957 # foreach tuple : sanitizers
2958 # sanitizer = tuple[0]
2961 # have = run_command(check_compilation_sh,
2962 # cc.cmd_array(), '-x', 'c',
2963 # '-fsanitize=@0@'.format(sanitizer),
2964 # '-include', link_test_c).returncode() == 0
2965 # message('@0@ sanitizer supported: @1@'.format(sanitizer, have ? 'yes' : 'no'))
2969 # foreach p : fuzz_regression_tests
2970 # b = p.split('/')[-2]
2971 # c = p.split('/')[-1]
2973 # name = '@0@:@1@'.format(b, sanitizer)
2976 # if want_tests == 'false'
2977 # message('Not compiling @0@ because tests is set to false'.format(name))
2979 # exe = custom_target(
2983 # command : [env, 'ln', '-fs',
2984 # join_paths(build.full_path(), b),
2986 # build_by_default : true)
2988 # message('Not compiling @0@ because slow-tests is set to false'.format(name))
2993 # if want_tests != 'false' and slow_tests
2994 # test('@0@:@1@:@2@'.format(b, c, sanitizer),
2996 # args : [exe.full_path(),
2997 # join_paths(meson.source_root(),
2998 # 'test/fuzz-regressions',
3007 ############################################################
3010 all_files = run_command(
3012 ['--git-dir=@0@/.git'.format(meson.current_source_dir()),
3015 all_files = files(all_files.stdout().split())
3020 command : [env, 'etags', '-o', '@0@/TAGS'.format(meson.current_source_dir())] + all_files)
3024 command : [env, 'ctags', '-o', '@0@/tags'.format(meson.current_source_dir())] + all_files)
3027 #if 0 /// UNNEEDED by elogind
3029 # meson_git_contrib_sh = find_program('tools/meson-git-contrib.sh')
3032 # command : [meson_git_contrib_sh])
3037 git_head = run_command(
3039 ['--git-dir=@0@/.git'.format(meson.current_source_dir()),
3040 'rev-parse', 'HEAD']).stdout().strip()
3041 git_head_short = run_command(
3043 ['--git-dir=@0@/.git'.format(meson.current_source_dir()),
3044 'rev-parse', '--short=7', 'HEAD']).stdout().strip()
3048 command : ['git', 'archive',
3049 '-o', '@0@/systemd-@1@.tar.gz'.format(meson.current_source_dir(),
3051 '--prefix', 'systemd-@0@/'.format(git_head),
3055 ############################################################
3057 meson_check_api_docs_sh = find_program('tools/meson-check-api-docs.sh')
3060 #if 0 /// libudev is external, elogind does not need to document it.
3061 # depends : [man, libsystemd, libudev],
3062 # command : [meson_check_api_docs_sh, libsystemd.full_path(), libudev.full_path()])
3064 depends : [man, libelogind],
3065 command : [meson_check_api_docs_sh, libelogind.full_path()])
3068 ############################################################
3071 '@0@ @1@'.format(meson.project_name(), meson.project_version()),
3073 'split /usr: @0@'.format(split_usr),
3074 'split bin-sbin: @0@'.format(split_bin),
3075 #if 0 /// UNSUPPORTED by elogind
3076 # 'prefix directory: @0@'.format(prefixdir),
3077 # 'rootprefix directory: @0@'.format(rootprefixdir),
3078 # 'sysconf directory: @0@'.format(sysconfdir),
3079 # 'include directory: @0@'.format(includedir),
3080 # 'lib directory: @0@'.format(libdir),
3081 # 'rootlib directory: @0@'.format(rootlibdir),
3082 # 'SysV init scripts: @0@'.format(sysvinit_path),
3083 # 'SysV rc?.d directories: @0@'.format(sysvrcnd_path),
3085 'rootexeclib dir: @0@'.format(rootlibexecdir),
3087 #if 0 /// UNSUPPORTED by elogind
3088 # 'PAM modules directory: @0@'.format(pamlibdir),
3089 # 'PAM configuration directory: @0@'.format(pamconfdir),
3090 # 'RPM macros directory: @0@'.format(rpmmacrosdir),
3091 # 'modprobe.d directory: @0@'.format(modprobedir),
3092 # 'D-Bus policy directory: @0@'.format(dbuspolicydir),
3093 # 'D-Bus session directory: @0@'.format(dbussessionservicedir),
3094 # 'D-Bus system directory: @0@'.format(dbussystemservicedir),
3095 # 'bash completions directory: @0@'.format(bashcompletiondir),
3096 # 'zsh completions directory: @0@'.format(zshcompletiondir),
3097 # 'extra start script: @0@'.format(get_option('rc-local')),
3098 # 'extra stop script: @0@'.format(get_option('halt-local')),
3099 # 'debug shell: @0@ @ @1@'.format(get_option('debug-shell'),
3100 # get_option('debug-tty')),
3102 'TTY GID: @0@'.format(tty_gid),
3103 #if 0 /// UNSUPPORTED by elogind
3104 # 'users GID: @0@'.format(users_gid),
3106 'maximum system UID: @0@'.format(system_uid_max),
3107 'maximum system GID: @0@'.format(system_gid_max),
3108 #if 0 /// UNSUPPORTED by elogind
3109 # 'minimum dynamic UID: @0@'.format(dynamic_uid_min),
3110 # 'maximum dynamic UID: @0@'.format(dynamic_uid_max),
3111 # 'minimum container UID base: @0@'.format(container_uid_base_min),
3112 # 'maximum container UID base: @0@'.format(container_uid_base_max),
3113 # '/dev/kvm access mode: @0@'.format(get_option('dev-kvm-mode')),
3114 # 'render group access mode: @0@'.format(get_option('group-render-mode')),
3115 # 'certificate root directory: @0@'.format(get_option('certificate-root')),
3116 # 'support URL: @0@'.format(support_url),
3117 # 'nobody user name: @0@'.format(nobody_user),
3118 # 'nobody group name: @0@'.format(nobody_group),
3119 # 'fallback hostname: @0@'.format(get_option('fallback-hostname')),
3120 # 'symbolic gateway hostnames: @0@'.format(', '.join(gateway_hostnames)),
3122 # 'default DNSSEC mode: @0@'.format(default_dnssec),
3123 # 'default cgroup hierarchy: @0@'.format(default_hierarchy),
3125 'default KillUserProcesses setting: @0@'.format(kill_user_processes)]
3127 #if 0 /// UNSUPPORTED by elogind
3128 # alt_dns_servers = '\n '.join(dns_servers.split(' '))
3129 # alt_ntp_servers = '\n '.join(ntp_servers.split(' '))
3131 # 'default DNS servers: @0@'.format(alt_dns_servers),
3132 # 'default NTP servers: @0@'.format(alt_ntp_servers)]
3134 # alt_time_epoch = run_command('date', '-Is', '-u', '-d',
3135 # '@@0@'.format(time_epoch)).stdout().strip()
3137 # 'time epoch: @0@ (@1@)'.format(time_epoch, alt_time_epoch)]
3141 # CFLAGS: ${OUR_CFLAGS} ${CFLAGS}
3142 # CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
3143 # LDFLAGS: ${OUR_LDFLAGS} ${LDFLAGS}
3145 #if 0 /// UNNEEDED by elogind
3146 # if conf.get('ENABLE_EFI') == 1
3148 # 'efi arch: @0@'.format(efi_arch)]
3152 # 'EFI machine type: @0@'.format(EFI_MACHINE_TYPE_NAME),
3153 # 'EFI CC @0@'.format(efi_cc),
3154 # 'EFI lib directory: @0@'.format(efi_libdir),
3155 # 'EFI lds directory: @0@'.format(efi_ldsdir),
3156 # 'EFI include directory: @0@'.format(efi_incdir)]
3165 #if 0 /// UNNEEDED by elogind
3166 # ['libcryptsetup'],
3170 #if 0 /// UNNEEDED by elogind
3175 #if 0 /// UNNEEDED by elogind
3179 #if 0 /// UNNEEDED by elogind
3186 #if 0 /// UNNEEDED by elogind
3202 # ['environment.d'],
3220 ['legacy pkla', install_polkit_pkla],
3221 #if 0 /// UNNEEDED by elogind
3223 # ['gnu-efi', have_gnu_efi],
3231 #if 0 /// UNNEEDED by elogind
3232 # ['nss-myhostname', conf.get('ENABLE_MYHOSTNAME') == 1],
3236 ['man pages', want_man],
3237 ['html pages', want_html],
3238 ['man page indices', want_man and have_lxml],
3239 #if 0 /// UNNEEDED by elogind
3243 #if 0 /// UNNEEDED by elogind
3246 # ['adm group', get_option('adm-group')],
3247 # ['wheel group', get_option('wheel-group')],
3253 ['debug mmap cache'],
3256 if tuple.length() >= 2
3259 ident1 = 'HAVE_' + tuple[0].underscorify().to_upper()
3260 ident2 = 'ENABLE_' + tuple[0].underscorify().to_upper()
3261 cond = conf.get(ident1, 0) == 1 or conf.get(ident2, 0) == 1
3266 missing += [tuple[0]]
3272 'enabled features: @0@'.format(', '.join(found)),
3274 'disabled features: @0@'.format(', '.join(missing)),
3276 message('\n '.join(status))
3278 if rootprefixdir != rootprefix_default
3279 message('WARNING:\n' +
3280 ' Note that the installation prefix was changed to "@0@".\n'.format(rootprefixdir) +
3281 ' elogind used fixed names for unit file directories and other paths, so anything\n' +
3282 ' except the default ("@0@") is strongly discouraged.'.format(rootprefix_default))