1 # SPDX-License-Identifier: LGPL-2.1+
3 # Copyright 2017 Zbigniew Jędrzejewski-Szmek
5 project('elogind', 'c',
14 meson_version : '>= 0.44',
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 two 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())
40 #####################################################################
41 #if 0 /// elogind does not need this
43 # # Try to install the git pre-commit hook
44 # git_hook = run_command(join_paths(meson.source_root(), 'tools/add-git-hook.sh'))
45 # if git_hook.returncode() == 0
46 # message(git_hook.stdout().strip())
49 # elogind Note: We use precompiler masks for two reasons:
50 # 1) The masking is consistent with the sources
51 # 2) The git patch creator we use for preparing upstream patches
52 # manipulates commits to not take those masks out. Therefore
53 # it can be used to add commits updating the meson files, too.
56 #####################################################################
58 if get_option('split-usr') == 'auto'
59 split_usr = run_command('test', '-L', '/bin').returncode() != 0
61 split_usr = get_option('split-usr') == 'true'
63 conf.set10('HAVE_SPLIT_USR', split_usr,
64 description : '/usr/bin and /bin directories are separate')
66 if get_option('split-bin') == 'auto'
67 split_bin = run_command('test', '-L', '/usr/sbin').returncode() != 0
69 split_bin = get_option('split-bin') == 'true'
71 conf.set10('HAVE_SPLIT_BIN', split_bin,
72 description : 'bin and sbin directories are separate')
74 rootprefixdir = get_option('rootprefix')
75 # Unusual rootprefixdir values are used by some distros
76 # (see https://github.com/systemd/systemd/pull/7461).
77 rootprefix_default = split_usr ? '/' : '/usr'
78 if rootprefixdir == ''
79 rootprefixdir = rootprefix_default
82 #if 0 /// UNNEEDED by elogind
83 # sysvinit_path = get_option('sysvinit-path')
84 # sysvrcnd_path = get_option('sysvrcnd-path')
85 # conf.set10('HAVE_SYSV_COMPAT', sysvinit_path != '' and sysvrcnd_path != '',
86 # description : 'SysV init scripts and rcN.d links are supported')
89 # join_paths ignore the preceding arguments if an absolute component is
90 # encountered, so this should canonicalize various paths when they are
91 # absolute or relative.
92 prefixdir = get_option('prefix')
93 if not prefixdir.startswith('/')
94 error('Prefix is not absolute: "@0@"'.format(prefixdir))
96 bindir = join_paths(prefixdir, get_option('bindir'))
97 libdir = join_paths(prefixdir, get_option('libdir'))
98 sysconfdir = join_paths(prefixdir, get_option('sysconfdir'))
99 includedir = join_paths(prefixdir, get_option('includedir'))
100 datadir = join_paths(prefixdir, get_option('datadir'))
101 localstatedir = join_paths('/', get_option('localstatedir'))
103 rootbindir = join_paths(rootprefixdir, 'bin')
104 rootsbindir = join_paths(rootprefixdir, split_bin ? 'sbin' : 'bin')
105 #if 0 /// elogind has a different default
106 # rootlibexecdir = join_paths(rootprefixdir, 'lib/systemd')
108 rootlibexecdir = get_option('rootlibexecdir')
109 rootlibexecdir = rootlibexecdir != '' ? rootlibexecdir : join_paths(rootprefixdir, 'lib/elogind')
112 rootlibdir = get_option('rootlibdir')
114 rootlibdir = join_paths(rootprefixdir, libdir.split('/')[-1])
117 # Dirs of external packages
118 pkgconfigdatadir = join_paths(datadir, 'pkgconfig')
119 pkgconfiglibdir = join_paths(libdir, 'pkgconfig')
120 polkitpolicydir = join_paths(datadir, 'polkit-1/actions')
121 polkitrulesdir = join_paths(datadir, 'polkit-1/rules.d')
122 polkitpkladir = join_paths(localstatedir, 'lib/polkit-1/localauthority/10-vendor.d')
123 varlogdir = join_paths(localstatedir, 'log')
124 #if 0 /// UNNEEDED by elogind
125 # xinitrcdir = join_paths(sysconfdir, 'X11/xinit/xinitrc.d')
126 # rpmmacrosdir = get_option('rpmmacrosdir')
127 # if rpmmacrosdir != 'no'
128 # rpmmacrosdir = join_paths(prefixdir, rpmmacrosdir)
131 modprobedir = join_paths(rootprefixdir, 'lib/modprobe.d')
134 #if 0 /// elogind has a bit different layout and does not need all of theses
135 # pkgdatadir = join_paths(datadir, 'systemd')
136 # environmentdir = join_paths(prefixdir, 'lib/environment.d')
137 # pkgsysconfdir = join_paths(sysconfdir, 'systemd')
138 # userunitdir = join_paths(prefixdir, 'lib/systemd/user')
139 # userpresetdir = join_paths(prefixdir, 'lib/systemd/user-preset')
140 # tmpfilesdir = join_paths(prefixdir, 'lib/tmpfiles.d')
141 # sysusersdir = join_paths(prefixdir, 'lib/sysusers.d')
142 # sysctldir = join_paths(prefixdir, 'lib/sysctl.d')
143 # binfmtdir = join_paths(prefixdir, 'lib/binfmt.d')
144 # modulesloaddir = join_paths(prefixdir, 'lib/modules-load.d')
145 # networkdir = join_paths(rootprefixdir, 'lib/systemd/network')
146 # pkgincludedir = join_paths(includedir, 'systemd')
147 # systemgeneratordir = join_paths(rootlibexecdir, 'system-generators')
148 # usergeneratordir = join_paths(prefixdir, 'lib/systemd/user-generators')
149 # systemenvgeneratordir = join_paths(prefixdir, 'lib/systemd/system-environment-generators')
150 # userenvgeneratordir = join_paths(prefixdir, 'lib/systemd/user-environment-generators')
151 # systemshutdowndir = join_paths(rootlibexecdir, 'system-shutdown')
152 # systemsleepdir = join_paths(rootlibexecdir, 'system-sleep')
153 # systemunitdir = join_paths(rootprefixdir, 'lib/systemd/system')
154 # systempresetdir = join_paths(rootprefixdir, 'lib/systemd/system-preset')
155 # udevlibexecdir = join_paths(rootprefixdir, 'lib/udev')
156 # udevhomedir = udevlibexecdir
157 # udevrulesdir = join_paths(udevlibexecdir, 'rules.d')
158 # udevhwdbdir = join_paths(udevlibexecdir, 'hwdb.d')
159 # catalogdir = join_paths(prefixdir, 'lib/systemd/catalog')
160 # kernelinstalldir = join_paths(prefixdir, 'lib/kernel/install.d')
161 # factorydir = join_paths(datadir, 'factory')
162 # bootlibdir = join_paths(prefixdir, 'lib/systemd/boot/efi')
163 # testsdir = join_paths(prefixdir, 'lib/systemd/tests')
164 # systemdstatedir = join_paths(localstatedir, 'lib/systemd')
165 # catalogstatedir = join_paths(systemdstatedir, 'catalog')
166 # randomseeddir = join_paths(localstatedir, 'lib/systemd')
168 # docdir = get_option('docdir')
170 # docdir = join_paths(datadir, 'doc/systemd')
173 pkgdatadir = join_paths(datadir, 'elogind')
174 pkgsysconfdir = join_paths(sysconfdir, 'elogind')
175 pkgincludedir = join_paths(includedir, 'elogind/systemd')
176 systemshutdowndir = join_paths(rootlibexecdir, 'system-shutdown')
177 systemsleepdir = join_paths(rootlibexecdir, 'system-sleep')
179 # in elogind, udev is external and thus configurable
180 udevlibexecdir = get_option('udevbindir')
181 udevlibexecdir = udevlibexecdir != '' ? udevlibexecdir : join_paths(rootprefixdir, 'lib/udev')
182 udevrulesdir = get_option('udevrulesdir')
183 udevrulesdir = udevrulesdir != '' ? udevrulesdir : join_paths(udevlibexecdir, 'rules.d')
184 udevhomedir = udevlibexecdir
185 factorydir = join_paths(datadir, 'factory')
186 docdir = get_option('docdir')
187 docdir = docdir != '' ? docdir: '-'.join([join_paths(datadir, 'doc/elogind'),
188 meson.project_version()])
189 testsdir = join_paths(prefixdir, 'lib/elogind/tests')
190 randomseeddir = join_paths(localstatedir, 'lib/elogind')
193 dbuspolicydir = get_option('dbuspolicydir')
194 if dbuspolicydir == ''
195 dbuspolicydir = join_paths(datadir, 'dbus-1/system.d')
198 dbussessionservicedir = get_option('dbussessionservicedir')
199 if dbussessionservicedir == ''
200 dbussessionservicedir = join_paths(datadir, 'dbus-1/services')
203 dbussystemservicedir = get_option('dbussystemservicedir')
204 if dbussystemservicedir == ''
205 dbussystemservicedir = join_paths(datadir, 'dbus-1/system-services')
208 pamlibdir = get_option('pamlibdir')
210 pamlibdir = join_paths(rootlibdir, 'security')
213 pamconfdir = get_option('pamconfdir')
215 pamconfdir = join_paths(sysconfdir, 'pam.d')
218 #if 0 /// UNNEEDED by elogind
219 # memory_accounting_default = get_option('memory-accounting-default')
222 conf.set_quoted('PKGSYSCONFDIR', pkgsysconfdir)
223 conf.set_quoted('SYSTEM_CONFIG_UNIT_PATH', join_paths(pkgsysconfdir, 'system'))
224 #if 0 /// UNNEEDED by elogind
225 # conf.set_quoted('SYSTEM_DATA_UNIT_PATH', systemunitdir)
226 # conf.set_quoted('SYSTEM_SYSVINIT_PATH', sysvinit_path)
227 # conf.set_quoted('SYSTEM_SYSVRCND_PATH', sysvrcnd_path)
228 # conf.set_quoted('RC_LOCAL_SCRIPT_PATH_START', get_option('rc-local'))
229 # conf.set_quoted('RC_LOCAL_SCRIPT_PATH_STOP', get_option('halt-local'))
231 # conf.set('ANSI_OK_COLOR', 'ANSI_' + get_option('ok-color').underscorify().to_upper())
233 # conf.set_quoted('USER_CONFIG_UNIT_PATH', join_paths(pkgsysconfdir, 'user'))
234 # conf.set_quoted('USER_DATA_UNIT_PATH', userunitdir)
235 # conf.set_quoted('CERTIFICATE_ROOT', get_option('certificate-root'))
236 # conf.set_quoted('CATALOG_DATABASE', join_paths(catalogstatedir, 'database'))
237 # conf.set_quoted('SYSTEMD_CGROUP_AGENT_PATH', join_paths(rootlibexecdir, 'systemd-cgroups-agent'))
238 # conf.set_quoted('SYSTEMD_BINARY_PATH', join_paths(rootlibexecdir, 'systemd'))
239 # conf.set_quoted('SYSTEMD_FSCK_PATH', join_paths(rootlibexecdir, 'systemd-fsck'))
240 # conf.set_quoted('SYSTEMD_MAKEFS_PATH', join_paths(rootlibexecdir, 'systemd-makefs'))
241 # conf.set_quoted('SYSTEMD_GROWFS_PATH', join_paths(rootlibexecdir, 'systemd-growfs'))
242 # conf.set_quoted('SYSTEMD_SHUTDOWN_BINARY_PATH', join_paths(rootlibexecdir, 'systemd-shutdown'))
243 # conf.set_quoted('SYSTEMD_SLEEP_BINARY_PATH', join_paths(rootlibexecdir, 'systemd-sleep'))
244 # conf.set_quoted('SYSTEMCTL_BINARY_PATH', join_paths(rootbindir, 'systemctl'))
245 # conf.set_quoted('SYSTEMD_TTY_ASK_PASSWORD_AGENT_BINARY_PATH', join_paths(rootbindir, 'systemd-tty-ask-password-agent'))
246 # conf.set_quoted('SYSTEMD_STDIO_BRIDGE_BINARY_PATH', join_paths(bindir, 'systemd-stdio-bridge'))
248 conf.set_quoted('SYSTEMD_CGROUP_AGENT_PATH', join_paths(rootlibexecdir, 'elogind-cgroups-agent'))
249 conf.set_quoted('ELOGIND_UACCESS_COMMAND_PATH', join_paths(rootlibexecdir, 'elogind-uaccess-command'))
250 conf.set_quoted('SYSTEMD_BINARY_PATH', join_paths(rootlibexecdir, 'elogind'))
252 conf.set_quoted('ROOTPREFIX', rootprefixdir)
253 #if 0 /// UNNEEDED by elogind
254 # conf.set_quoted('RANDOM_SEED_DIR', randomseeddir)
255 # conf.set_quoted('RANDOM_SEED', join_paths(randomseeddir, 'random-seed'))
256 # conf.set_quoted('SYSTEMD_CRYPTSETUP_PATH', join_paths(rootlibexecdir, 'systemd-cryptsetup'))
257 # conf.set_quoted('SYSTEM_GENERATOR_PATH', systemgeneratordir)
258 # conf.set_quoted('USER_GENERATOR_PATH', usergeneratordir)
259 # conf.set_quoted('SYSTEM_ENV_GENERATOR_PATH', systemenvgeneratordir)
260 # conf.set_quoted('USER_ENV_GENERATOR_PATH', userenvgeneratordir)
262 conf.set_quoted('SYSTEM_SHUTDOWN_PATH', systemshutdowndir)
263 conf.set_quoted('SYSTEM_SLEEP_PATH', systemsleepdir)
264 #if 0 /// UNNEEDED by elogind
265 # conf.set_quoted('SYSTEMD_KBD_MODEL_MAP', join_paths(pkgdatadir, 'kbd-model-map'))
266 # conf.set_quoted('SYSTEMD_LANGUAGE_FALLBACK_MAP', join_paths(pkgdatadir, 'language-fallback-map'))
268 conf.set_quoted('UDEVLIBEXECDIR', udevlibexecdir)
269 conf.set_quoted('POLKIT_AGENT_BINARY_PATH', join_paths(bindir, 'pkttyagent'))
270 conf.set_quoted('LIBDIR', libdir)
271 conf.set_quoted('ROOTLIBDIR', rootlibdir)
272 conf.set_quoted('ROOTLIBEXECDIR', rootlibexecdir)
273 #if 0 /// UNNEEDED by elogind
274 # conf.set_quoted('BOOTLIBDIR', bootlibdir)
275 # conf.set_quoted('SYSTEMD_PULL_PATH', join_paths(rootlibexecdir, 'systemd-pull'))
276 # conf.set_quoted('SYSTEMD_IMPORT_PATH', join_paths(rootlibexecdir, 'systemd-import'))
277 # conf.set_quoted('SYSTEMD_EXPORT_PATH', join_paths(rootlibexecdir, 'systemd-export'))
278 # conf.set_quoted('VENDOR_KEYRING_PATH', join_paths(rootlibexecdir, 'import-pubring.gpg'))
279 # conf.set_quoted('USER_KEYRING_PATH', join_paths(pkgsysconfdir, 'import-pubring.gpg'))
280 # conf.set_quoted('DOCUMENT_ROOT', join_paths(pkgdatadir, 'gatewayd'))
281 # conf.set('MEMORY_ACCOUNTING_DEFAULT', memory_accounting_default ? 'true' : 'false')
283 conf.set_quoted('MEMORY_ACCOUNTING_DEFAULT_YES_NO', memory_accounting_default ? 'yes' : 'no')
285 conf.set_quoted('ABS_BUILD_DIR', meson.build_root())
286 conf.set_quoted('ABS_SRC_DIR', meson.source_root())
288 substs.set('prefix', prefixdir)
289 substs.set('exec_prefix', prefixdir)
290 substs.set('libdir', libdir)
291 substs.set('rootlibdir', rootlibdir)
292 substs.set('includedir', includedir)
293 substs.set('pkgsysconfdir', pkgsysconfdir)
294 substs.set('bindir', bindir)
295 substs.set('rootbindir', rootbindir)
296 substs.set('rootlibexecdir', rootlibexecdir)
297 #if 0 /// UNNEEDED by elogind
298 # substs.set('systemunitdir', systemunitdir)
299 # substs.set('userunitdir', userunitdir)
300 # substs.set('systempresetdir', systempresetdir)
301 # substs.set('userpresetdir', userpresetdir)
302 # substs.set('udevhwdbdir', udevhwdbdir)
304 substs.set('udevrulesdir', udevrulesdir)
305 substs.set('udevlibexecdir', udevlibexecdir)
306 #if 0 /// UNNEEDED by elogind
307 # substs.set('catalogdir', catalogdir)
308 # substs.set('tmpfilesdir', tmpfilesdir)
309 # substs.set('sysusersdir', sysusersdir)
310 # substs.set('sysctldir', sysctldir)
311 # substs.set('binfmtdir', binfmtdir)
312 # substs.set('modulesloaddir', modulesloaddir)
313 # substs.set('systemgeneratordir', systemgeneratordir)
314 # substs.set('usergeneratordir', usergeneratordir)
315 # substs.set('systemenvgeneratordir', systemenvgeneratordir)
316 # substs.set('userenvgeneratordir', userenvgeneratordir)
318 substs.set('systemshutdowndir', systemshutdowndir)
319 substs.set('systemsleepdir', systemsleepdir)
320 substs.set('VARLOGDIR', varlogdir)
321 #if 0 /// UNNEEDED by elogind
322 # substs.set('CERTIFICATEROOT', get_option('certificate-root'))
323 # substs.set('SYSTEMCTL', join_paths(rootbindir, 'systemctl'))
324 # substs.set('RANDOM_SEED', join_paths(randomseeddir, 'random-seed'))
325 # substs.set('SYSTEM_SYSVINIT_PATH', sysvinit_path)
326 # substs.set('SYSTEM_SYSVRCND_PATH', sysvrcnd_path)
327 # substs.set('RC_LOCAL_SCRIPT_PATH_START', get_option('rc-local'))
328 # substs.set('RC_LOCAL_SCRIPT_PATH_STOP', get_option('halt-local'))
329 # substs.set('MEMORY_ACCOUNTING_DEFAULT', memory_accounting_default ? 'yes' : 'no')
332 #####################################################################
334 cc = meson.get_compiler('c')
335 pkgconfig = import('pkgconfig')
336 check_compilation_sh = find_program('tools/meson-check-compilation.sh')
337 meson_build_sh = find_program('tools/meson-build.sh')
339 if get_option('tests') != 'false'
340 cxx = find_program('c++', required : false)
342 # Used only for tests
347 #if 0 /// elogind does not support fuzz stress testing (, yet).
348 # want_ossfuzz = get_option('oss-fuzz')
349 # want_libfuzzer = get_option('llvm-fuzz')
350 # fuzzer_build = want_ossfuzz or want_libfuzzer
351 # if want_ossfuzz and want_libfuzzer
352 # error('only one of oss-fuzz and llvm-fuzz can be specified')
355 # fuzzing_engine = meson.get_compiler('cpp').find_library('Fuzzer')
358 # fuzzing_engine = meson.get_compiler('cpp').find_library('FuzzingEngine')
361 # possible_cc_flags = [
365 # '-Wmissing-include-dirs',
366 # '-Wold-style-definition',
369 # '-Wdeclaration-after-statement',
371 # '-Wsuggest-attribute=noreturn',
372 # '-Werror=missing-prototypes',
373 # '-Werror=implicit-function-declaration',
374 # '-Werror=missing-declarations',
375 # '-Werror=return-type',
376 # '-Werror=incompatible-pointer-types',
377 # '-Werror=format=2',
378 # '-Wstrict-prototypes',
379 # '-Wredundant-decls',
380 # '-Wmissing-noreturn',
381 # '-Wimplicit-fallthrough=5',
384 # '-Wstrict-aliasing=2',
386 # '-Werror=overflow',
388 # '-Wnested-externs',
391 # '-fdiagnostics-show-option',
392 # '-fno-strict-aliasing',
393 # '-fvisibility=hidden',
394 # '-fstack-protector',
395 # '-fstack-protector-strong',
396 # '--param=ssp-buffer-size=4',
399 # # --as-needed and --no-undefined are provided by meson by default,
400 # # run mesonconf to see what is enabled
401 # possible_link_flags = [
409 # the oss-fuzz fuzzers are not built with -fPIE, so don't
410 # enable it when we are linking against them
412 possible_cc_flags += '-fPIE'
413 possible_link_flags += '-pie'
416 if cc.get_id() == 'clang'
417 possible_cc_flags += [
418 '-Wno-typedef-redefinition',
419 '-Wno-gnu-variable-sized-type-not-at-end',
423 if get_option('buildtype') != 'debug'
424 possible_cc_flags += [
425 '-ffunction-sections',
429 possible_link_flags += '-Wl,--gc-sections'
432 add_project_arguments(cc.get_supported_arguments(possible_cc_flags), language : 'c')
434 # "negative" arguments: gcc on purpose does not return an error for "-Wno-"
435 # arguments, just emits a warnings. So test for the "positive" version instead.
436 foreach arg : ['unused-parameter',
437 'missing-field-initializers',
440 'error=nonnull', # work-around for gcc 7.1 turning this on on its own
442 if cc.has_argument('-W' + arg)
443 add_project_arguments('-Wno-' + arg, language : 'c')
449 #include <inttypes.h>
450 typedef uint64_t usec_t;
451 usec_t now(clockid_t clock);
456 ''', name : '-Werror=shadow with local shadowing')
457 add_project_arguments('-Werror=shadow', language : 'c')
460 link_test_c = files('tools/meson-link-test.c')
462 foreach arg : possible_link_flags
463 have = run_command(check_compilation_sh,
464 cc.cmd_array(), '-x', 'c', arg,
465 '-include', link_test_c).returncode() == 0
466 message('Linking with @0@ supported: @1@'.format(arg, have ? 'yes' : 'no'))
468 add_project_link_arguments(arg, language : 'c')
472 cpp = ' '.join(cc.cmd_array()) + ' -E'
474 #####################################################################
475 # compilation result tests
477 conf.set('_GNU_SOURCE', true)
478 conf.set('__SANE_USERSPACE_TYPES__', true)
480 conf.set('SIZEOF_PID_T', cc.sizeof('pid_t', prefix : '#include <sys/types.h>'))
481 conf.set('SIZEOF_UID_T', cc.sizeof('uid_t', prefix : '#include <sys/types.h>'))
482 conf.set('SIZEOF_GID_T', cc.sizeof('gid_t', prefix : '#include <sys/types.h>'))
483 conf.set('SIZEOF_DEV_T', cc.sizeof('dev_t', prefix : '#include <sys/types.h>'))
484 conf.set('SIZEOF_INO_T', cc.sizeof('ino_t', prefix : '#include <sys/types.h>'))
485 conf.set('SIZEOF_TIME_T', cc.sizeof('time_t', prefix : '#include <sys/time.h>'))
486 conf.set('SIZEOF_RLIM_T', cc.sizeof('rlim_t', prefix : '#include <sys/resource.h>'))
490 #include <linux/ethtool.h>
491 #include <linux/fib_rules.h>
492 //#include <linux/stat.h>
493 //#include <sys/stat.h>
495 # FIXME: key_serial_t is only defined in keyutils.h, this is bound to fail
497 foreach decl : ['char16_t',
500 'struct ethtool_link_settings',
501 'struct fib_rule_uid_range',
505 # We get -1 if the size cannot be determined
506 have = cc.sizeof(decl, prefix : decl_headers) > 0
507 conf.set10('HAVE_' + decl.underscorify().to_upper(), have)
510 foreach decl : [['IFLA_INET6_ADDR_GEN_MODE', 'linux/if_link.h'],
511 ['IN6_ADDR_GEN_MODE_STABLE_PRIVACY', 'linux/if_link.h'],
512 ['IFLA_VRF_TABLE', 'linux/if_link.h'],
513 ['IFLA_MACVLAN_FLAGS', 'linux/if_link.h'],
514 ['IFLA_IPVLAN_FLAGS', 'linux/if_link.h'],
515 ['IFLA_PHYS_PORT_ID', 'linux/if_link.h'],
516 ['IFLA_BOND_AD_INFO', 'linux/if_link.h'],
517 ['IFLA_VLAN_PROTOCOL', 'linux/if_link.h'],
518 ['IFLA_VXLAN_REMCSUM_NOPARTIAL', 'linux/if_link.h'],
519 ['IFLA_VXLAN_GPE', 'linux/if_link.h'],
520 ['IFLA_GENEVE_LABEL', 'linux/if_link.h'],
521 # if_tunnel.h is buggy and cannot be included on its own
522 ['IFLA_VTI_REMOTE', 'linux/if_tunnel.h', '#include <net/if.h>'],
523 ['IFLA_IPTUN_ENCAP_DPORT', 'linux/if_tunnel.h', '#include <net/if.h>'],
524 ['IFLA_GRE_ENCAP_DPORT', 'linux/if_tunnel.h', '#include <net/if.h>'],
525 ['IFLA_BRIDGE_VLAN_INFO', 'linux/if_bridge.h'],
526 ['IFLA_BRPORT_PROXYARP', 'linux/if_link.h'],
527 ['IFLA_BRPORT_LEARNING_SYNC', 'linux/if_link.h'],
528 ['IFLA_BR_VLAN_DEFAULT_PVID', 'linux/if_link.h'],
529 ['IPVLAN_F_PRIVATE', 'linux/if_link.h'],
530 ['NDA_IFINDEX', 'linux/neighbour.h'],
531 ['IFA_FLAGS', 'linux/if_addr.h'],
532 ['FRA_UID_RANGE', 'linux/fib_rules.h'],
533 ['LO_FLAGS_PARTSCAN', 'linux/loop.h'],
534 ['VXCAN_INFO_PEER', 'linux/can/vxcan.h'],
536 prefix = decl.length() > 2 ? decl[2] : ''
537 have = cc.has_header_symbol(decl[1], decl[0], prefix : prefix)
538 conf.set10('HAVE_' + decl[0], have)
541 foreach ident : ['secure_getenv', '__secure_getenv']
542 conf.set10('HAVE_' + ident.to_upper(), cc.has_function(ident))
546 ['memfd_create', '''#include <sys/mman.h>'''],
547 ['gettid', '''#include <sys/types.h>
548 #include <unistd.h>'''],
549 ['pivot_root', '''#include <stdlib.h>
550 #include <unistd.h>'''], # no known header declares pivot_root
551 ['name_to_handle_at', '''#include <sys/types.h>
552 #include <sys/stat.h>
553 #include <fcntl.h>'''],
554 ['setns', '''#include <sched.h>'''],
555 ['renameat2', '''#include <stdio.h>
556 // #include <fcntl.h>'''],
557 ['kcmp', '''#include <linux/kcmp.h>'''],
558 ['keyctl', '''#include <sys/types.h>
559 #include <keyutils.h>'''],
560 ['copy_file_range', '''#include <sys/syscall.h>
561 #include <unistd.h>'''],
562 ['bpf', '''#include <sys/syscall.h>
563 #include <unistd.h>'''],
564 ['statx', '''#include <sys/types.h>
565 #include <sys/stat.h>
566 // #include <unistd.h>'''],
567 ['explicit_bzero' , '''#include <string.h>'''],
568 ['reallocarray', '''#include <malloc.h>'''],
571 have = cc.has_function(ident[0], prefix : ident[1], args : '-D_GNU_SOURCE')
572 conf.set10('HAVE_' + ident[0].to_upper(), have)
575 if cc.has_function('getrandom', prefix : '''#include <sys/random.h>''', args : '-D_GNU_SOURCE')
576 conf.set10('USE_SYS_RANDOM_H', true)
577 conf.set10('HAVE_GETRANDOM', true)
579 have = cc.has_function('getrandom', prefix : '''#include <linux/random.h>''')
580 conf.set10('USE_SYS_RANDOM_H', false)
581 conf.set10('HAVE_GETRANDOM', have)
584 #####################################################################
586 sed = find_program('sed')
587 awk = find_program('awk')
588 m4 = find_program('m4')
589 stat = find_program('stat')
590 git = find_program('git', required : false)
591 env = find_program('env')
592 perl = find_program('perl', required : false)
594 #if 0 /// elogind does not use this but needs a tool to symlink its installed headers.
595 # meson_make_symlink = meson.source_root() + '/tools/meson-make-symlink.sh'
596 #else /// Needed by elogind
597 meson_symlink_headers = meson.source_root() + '/tools/meson-symlink_headers.sh'
599 mkdir_p = 'mkdir -p $DESTDIR/@0@'
600 #if 0 /// unneeded by elogind
601 # test_efi_create_disk_sh = find_program('test/test-efi-create-disk.sh')
602 # splash_bmp = files('test/splash.bmp')
605 # if -Dxxx-path option is found, use that. Otherwise, check in $PATH,
606 # /usr/sbin, /sbin, and fall back to the default from middle column.
607 #if 0 /// elogind has a bit different list and some adaptions
608 # progs = [['quotaon', '/usr/sbin/quotaon' ],
609 # ['quotacheck', '/usr/sbin/quotacheck' ],
610 # ['kmod', '/usr/bin/kmod' ],
611 # ['kexec', '/usr/sbin/kexec' ],
612 # ['sulogin', '/usr/sbin/sulogin' ],
613 # ['mount', '/usr/bin/mount', 'MOUNT_PATH'],
614 # ['umount', '/usr/bin/umount', 'UMOUNT_PATH'],
615 # ['loadkeys', '/usr/bin/loadkeys', 'KBD_LOADKEYS'],
616 # ['setfont', '/usr/bin/setfont', 'KBD_SETFONT'],
619 progs = [['halt', '/sbin/halt', 'HALT'],
620 ['kexec', '/usr/sbin/kexec', 'KEXEC'],
621 ['poweroff', '/sbin/poweroff', 'POWEROFF'],
622 ['reboot', '/sbin/reboot', 'REBOOT'],
626 path = get_option(prog[0] + '-path')
628 message('Using @1@ for @0@'.format(prog[0], path))
630 exe = find_program(prog[0],
631 '/usr/sbin/' + prog[0],
634 path = exe.found() ? exe.path() : prog[1]
636 name = prog.length() > 2 ? prog[2] : prog[0].to_upper()
637 conf.set_quoted(name, path)
638 substs.set(name, path)
641 #if 0 /// unneeded by elogind
642 # conf.set_quoted('TELINIT', get_option('telinit-path'))
644 # if run_command('ln', '--relative', '--help').returncode() != 0
645 # error('ln does not support --relative (added in coreutils 8.16)')
649 ############################################################
651 gperf = find_program('gperf')
653 gperf_test_format = '''
655 const char * in_word_set(const char *, @0@);
658 gperf_snippet_format = 'echo foo,bar | @0@ -L ANSI-C'
659 gperf_snippet = run_command('sh', '-c', gperf_snippet_format.format(gperf.path()))
660 gperf_test = gperf_test_format.format('size_t', gperf_snippet.stdout())
661 if cc.compiles(gperf_test)
662 gperf_len_type = 'size_t'
664 gperf_test = gperf_test_format.format('unsigned', gperf_snippet.stdout())
665 if cc.compiles(gperf_test)
666 gperf_len_type = 'unsigned'
668 error('unable to determine gperf len type')
671 message('gperf len type is @0@'.format(gperf_len_type))
672 conf.set('GPERF_LEN_TYPE', gperf_len_type,
673 description : 'The type of gperf "len" parameter')
675 ############################################################
677 if not cc.has_header('sys/capability.h')
678 error('POSIX caps headers not found')
680 foreach header : ['crypt.h',
683 'linux/vm_sockets.h',
685 'valgrind/memcheck.h',
686 'valgrind/valgrind.h',
689 conf.set10('HAVE_' + header.underscorify().to_upper(),
690 cc.has_header(header))
693 ############################################################
695 conf.set_quoted('FALLBACK_HOSTNAME', get_option('fallback-hostname'))
696 #if 0 /// UNNEEDED by elogind
697 # conf.set10('ENABLE_COMPAT_GATEWAY_HOSTNAME', get_option('compat-gateway-hostname'))
698 # gateway_hostnames = ['_gateway'] + (conf.get('ENABLE_COMPAT_GATEWAY_HOSTNAME') == 1 ? ['gateway'] : [])
701 default_hierarchy = get_option('default-hierarchy')
702 conf.set_quoted('DEFAULT_HIERARCHY_NAME', default_hierarchy,
703 description : 'default cgroup hierarchy as string')
704 if default_hierarchy == 'legacy'
705 conf.set('DEFAULT_HIERARCHY', 'CGROUP_UNIFIED_NONE')
706 elif default_hierarchy == 'hybrid'
707 conf.set('DEFAULT_HIERARCHY', 'CGROUP_UNIFIED_SYSTEMD')
709 conf.set('DEFAULT_HIERARCHY', 'CGROUP_UNIFIED_ALL')
712 #if 0 /// UNNEEDED by elogind
713 # time_epoch = get_option('time-epoch')
714 # if time_epoch == ''
715 # NEWS = files('NEWS')
716 # time_epoch = run_command(stat, '-c', '%Y', NEWS).stdout()
718 # time_epoch = time_epoch.to_int()
719 # conf.set('TIME_EPOCH', time_epoch)
721 ############################################################
722 # elogind needs to know which cgroups controller to follow.
723 get_cg_ctrl_sh = find_program('tools/meson-get-cg-controller.sh')
724 with_cgroupctrl = get_option('cgroup-controller')
725 if with_cgroupctrl == '' or with_cgroupctrl == 'auto'
726 with_cgroupctrl = run_command(get_cg_ctrl_sh, []).stdout().strip()
727 elif with_cgroupctrl == 'none'
728 with_cgroupctrl = 'elogind'
731 # No controller now is a problem:
732 if with_cgroupctrl == ''
733 error('Unable to determine cgroup controller, but cgroups support is mandatory!')
736 conf.set_quoted('SYSTEMD_CGROUP_CONTROLLER', '_'.join(['',with_cgroupctrl]),
737 description : 'name of the cgroup controller to use')
738 conf.set_quoted('SYSTEMD_CGROUP_CONTROLLER_LEGACY',
739 '='.join(['name', with_cgroupctrl]))
740 conf.set_quoted('SYSTEMD_CGROUP_CONTROLLER_HYBRID',
741 '='.join(['name', with_cgroupctrl]))
742 ############################################################
745 system_uid_max = get_option('system-uid-max')
746 if system_uid_max == ''
747 system_uid_max = run_command(
749 '/^\s*SYS_UID_MAX\s+/ { uid=$2 } END { print uid }',
750 '/etc/login.defs').stdout().strip()
751 if system_uid_max == ''
752 system_uid_max = '999'
755 system_uid_max = system_uid_max.to_int()
756 conf.set('SYSTEM_UID_MAX', system_uid_max)
757 substs.set('systemuidmax', system_uid_max)
758 message('maximum system UID is @0@'.format(system_uid_max))
760 system_gid_max = get_option('system-gid-max')
761 if system_gid_max == ''
762 system_gid_max = run_command(
764 '/^\s*SYS_GID_MAX\s+/ { gid=$2 } END { print gid }',
765 '/etc/login.defs').stdout().strip()
766 if system_gid_max == ''
767 system_gid_max = '999'
770 system_gid_max = system_gid_max.to_int()
771 conf.set('SYSTEM_GID_MAX', system_gid_max)
772 substs.set('systemgidmax', system_gid_max)
773 message('maximum system GID is @0@'.format(system_gid_max))
775 #if 0 /// UNNEEDED by elogind
776 # dynamic_uid_min = get_option('dynamic-uid-min').to_int()
777 # dynamic_uid_max = get_option('dynamic-uid-max').to_int()
778 # conf.set('DYNAMIC_UID_MIN', dynamic_uid_min)
779 # conf.set('DYNAMIC_UID_MAX', dynamic_uid_max)
780 # substs.set('dynamicuidmin', dynamic_uid_min)
781 # substs.set('dynamicuidmax', dynamic_uid_max)
783 # container_uid_base_min = get_option('container-uid-base-min').to_int()
784 # container_uid_base_max = get_option('container-uid-base-max').to_int()
785 # conf.set('CONTAINER_UID_BASE_MIN', container_uid_base_min)
786 # conf.set('CONTAINER_UID_BASE_MAX', container_uid_base_max)
787 # substs.set('containeruidbasemin', container_uid_base_min)
788 # substs.set('containeruidbasemax', container_uid_base_max)
791 nobody_user = get_option('nobody-user')
792 nobody_group = get_option('nobody-group')
794 getent_result = run_command('getent', 'passwd', '65534')
795 if getent_result.returncode() == 0
796 name = getent_result.stdout().split(':')[0]
797 if name != nobody_user
799 'The local user with the UID 65534 does not match the configured user name "@0@" of the nobody user (its name is @1@).\n'.format(nobody_user, name) +
800 'Your build will result in an user table setup that is incompatible with the local system.')
803 id_result = run_command('id', '-u', nobody_user)
804 if id_result.returncode() == 0
805 id = id_result.stdout().to_int()
808 'The local user with the configured user name "@0@" of the nobody user does not have UID 65534 (it has @1@).\n'.format(nobody_user, id) +
809 'Your build will result in an user table setup that is incompatible with the local system.')
813 getent_result = run_command('getent', 'group', '65534')
814 if getent_result.returncode() == 0
815 name = getent_result.stdout().split(':')[0]
816 if name != nobody_group
818 'The local group with the GID 65534 does not match the configured group name "@0@" of the nobody group (its name is @1@).\n'.format(nobody_group, name) +
819 'Your build will result in an group table setup that is incompatible with the local system.')
822 id_result = run_command('id', '-g', nobody_group)
823 if id_result.returncode() == 0
824 id = id_result.stdout().to_int()
827 'The local group with the configured group name "@0@" of the nobody group does not have UID 65534 (it has @1@).\n'.format(nobody_group, id) +
828 'Your build will result in an group table setup that is incompatible with the local system.')
831 if nobody_user != nobody_group and not (nobody_user == 'nobody' and nobody_group == 'nogroup')
833 'The configured user name "@0@" and group name "@0@" of the nobody user/group are not equivalent.\n'.format(nobody_user, nobody_group) +
834 'Please re-check that both "nobody-user" and "nobody-group" options are correctly set.')
837 conf.set_quoted('NOBODY_USER_NAME', nobody_user)
838 conf.set_quoted('NOBODY_GROUP_NAME', nobody_group)
839 substs.set('NOBODY_USER_NAME', nobody_user)
840 substs.set('NOBODY_GROUP_NAME', nobody_group)
842 tty_gid = get_option('tty-gid')
843 conf.set('TTY_GID', tty_gid)
844 substs.set('TTY_GID', tty_gid)
846 #if 0 /// UNNEEDED by elogind
847 # # Ensure provided GID argument is numeric, otherwise fallback to default assignment
848 # if get_option('users-gid') != ''
849 # users_gid = get_option('users-gid').to_int()
853 # substs.set('USERS_GID', users_gid)
855 # conf.set10('ENABLE_ADM_GROUP', get_option('adm-group'))
856 # conf.set10('ENABLE_WHEEL_GROUP', get_option('wheel-group'))
858 # substs.set('DEV_KVM_MODE', get_option('dev-kvm-mode'))
859 # substs.set('GROUP_RENDER_MODE', get_option('group-render-mode'))
862 kill_user_processes = get_option('default-kill-user-processes')
863 conf.set10('KILL_USER_PROCESSES', kill_user_processes)
864 conf.set_quoted('KILL_USER_PROCESSES_YES_NO', kill_user_processes ? 'yes' : 'no')
865 substs.set('KILL_USER_PROCESSES', kill_user_processes ? 'yes' : 'no')
867 #if 0 /// UNNEEDED by elogind
868 # dns_servers = get_option('dns-servers')
869 # conf.set_quoted('DNS_SERVERS', dns_servers)
870 # substs.set('DNS_SERVERS', dns_servers)
872 # ntp_servers = get_option('ntp-servers')
873 # conf.set_quoted('NTP_SERVERS', ntp_servers)
874 # substs.set('NTP_SERVERS', ntp_servers)
877 conf.set_quoted('GETTEXT_PACKAGE', meson.project_name())
879 #if 0 /// UNNEEDED by elogind
880 # substs.set('SUSHELL', get_option('debug-shell'))
881 # substs.set('DEBUGTTY', get_option('debug-tty'))
884 enable_debug_hashmap = false
885 enable_debug_mmap_cache = false
886 #if 1 /// additional elogind debug mode
887 enable_debug_elogind = false
889 #if 1 /// additional elogind debug mode
890 elif name == 'elogind'
891 enable_debug_elogind = true
893 foreach name : get_option('debug')
895 enable_debug_hashmap = true
896 elif name == 'mmap-cache'
897 enable_debug_mmap_cache = true
899 message('unknown debug option "@0@", ignoring'.format(name))
902 conf.set10('ENABLE_DEBUG_HASHMAP', enable_debug_hashmap)
903 conf.set10('ENABLE_DEBUG_MMAP_CACHE', enable_debug_mmap_cache)
904 #if 1 /// additional elogind debug mode
905 conf.set10('ENABLE_DEBUG_ELOGIND', enable_debug_elogind)
908 conf.set10('VALGRIND', get_option('valgrind'))
910 #####################################################################
912 threads = dependency('threads')
913 librt = cc.find_library('rt')
914 libm = cc.find_library('m')
915 libdl = cc.find_library('dl')
916 libcrypt = cc.find_library('crypt')
918 libcap = dependency('libcap', required : false)
919 if not libcap.found()
920 # Compat with Ubuntu 14.04 which ships libcap w/o .pc file
921 libcap = cc.find_library('cap')
924 #if 0 /// UNNEEDED by elogind
925 # libmount = dependency('mount',
926 # version : fuzzer_build ? '>= 0' : '>= 2.30')
928 # want_seccomp = get_option('seccomp')
929 # if want_seccomp != 'false' and not fuzzer_build
930 # libseccomp = dependency('libseccomp',
931 # version : '>= 2.3.1',
932 # required : want_seccomp == 'true')
933 # have = libseccomp.found()
941 conf.set10('HAVE_SECCOMP', have)
943 want_selinux = get_option('selinux')
944 if want_selinux != 'false' and not fuzzer_build
945 libselinux = dependency('libselinux',
946 version : '>= 2.1.9',
947 required : want_selinux == 'true')
948 have = libselinux.found()
953 conf.set10('HAVE_SELINUX', have)
955 #if 0 /// UNNEEDED by elogind
956 # want_apparmor = get_option('apparmor')
957 # if want_apparmor != 'false' and not fuzzer_build
958 # libapparmor = dependency('libapparmor',
959 # required : want_apparmor == 'true')
960 # have = libapparmor.found()
968 conf.set10('HAVE_APPARMOR', have)
970 smack_run_label = get_option('smack-run-label')
971 if smack_run_label != ''
972 conf.set_quoted('SMACK_RUN_LABEL', smack_run_label)
975 want_polkit = get_option('polkit')
976 install_polkit = false
977 install_polkit_pkla = false
978 if want_polkit != 'false' and not fuzzer_build
979 install_polkit = true
981 libpolkit = dependency('polkit-gobject-1',
983 if libpolkit.found() and libpolkit.version().version_compare('< 0.106')
984 message('Old polkit detected, will install pkla files')
985 install_polkit_pkla = true
988 conf.set10('ENABLE_POLKIT', install_polkit)
990 want_acl = get_option('acl')
991 if want_acl != 'false' and not fuzzer_build
992 libacl = cc.find_library('acl', required : want_acl == 'true')
993 have = libacl.found()
998 conf.set10('HAVE_ACL', have)
1000 want_audit = get_option('audit')
1001 if want_audit != 'false' and not fuzzer_build
1002 libaudit = dependency('audit', required : want_audit == 'true')
1003 have = libaudit.found()
1008 conf.set10('HAVE_AUDIT', have)
1010 #if 0 /// UNNEEDED by elogind
1011 # want_blkid = get_option('blkid')
1012 # if want_blkid != 'false' and not fuzzer_build
1013 # libblkid = dependency('blkid', required : want_blkid == 'true')
1014 # have = libblkid.found()
1019 # conf.set10('HAVE_BLKID', have)
1021 # want_kmod = get_option('kmod')
1022 # if want_kmod != 'false' and not fuzzer_build
1023 # libkmod = dependency('libkmod',
1024 # version : '>= 15',
1025 # required : want_kmod == 'true')
1026 # have = libkmod.found()
1031 # conf.set10('HAVE_KMOD', have)
1037 want_pam = get_option('pam')
1038 if want_pam != 'false' and not fuzzer_build
1039 libpam = cc.find_library('pam', required : want_pam == 'true')
1040 libpam_misc = cc.find_library('pam_misc', required : want_pam == 'true')
1041 have = libpam.found() and libpam_misc.found()
1047 conf.set10('HAVE_PAM', have)
1049 #if 0 /// UNNEEDED by elogind
1050 # want_microhttpd = get_option('microhttpd')
1051 # if want_microhttpd != 'false' and not fuzzer_build
1052 # libmicrohttpd = dependency('libmicrohttpd',
1053 # version : '>= 0.9.33',
1054 # required : want_microhttpd == 'true')
1055 # have = libmicrohttpd.found()
1058 # libmicrohttpd = []
1060 # conf.set10('HAVE_MICROHTTPD', have)
1062 # want_libcryptsetup = get_option('libcryptsetup')
1063 # if want_libcryptsetup != 'false' and not fuzzer_build
1064 # libcryptsetup = dependency('libcryptsetup',
1065 # version : '>= 1.6.0',
1066 # required : want_libcryptsetup == 'true')
1067 # have = libcryptsetup.found()
1070 # libcryptsetup = []
1072 # conf.set10('HAVE_LIBCRYPTSETUP', have)
1074 # want_libcurl = get_option('libcurl')
1075 # if want_libcurl != 'false' and not fuzzer_build
1076 # libcurl = dependency('libcurl',
1077 # version : '>= 7.32.0',
1078 # required : want_libcurl == 'true')
1079 # have = libcurl.found()
1084 # conf.set10('HAVE_LIBCURL', have)
1086 # want_libidn = get_option('libidn')
1087 # want_libidn2 = get_option('libidn2')
1088 # if want_libidn == 'true' and want_libidn2 == 'true'
1089 # error('libidn and libidn2 cannot be requested simultaneously')
1092 # if want_libidn != 'false' and want_libidn2 != 'true' and not fuzzer_build
1093 # libidn = dependency('libidn',
1094 # required : want_libidn == 'true')
1095 # have = libidn.found()
1100 # conf.set10('HAVE_LIBIDN', have)
1101 # if not have and want_libidn2 != 'false' and not fuzzer_build
1102 # # libidn is used for both libidn and libidn2 objects
1103 # libidn = dependency('libidn2',
1104 # required : want_libidn2 == 'true')
1105 # have = libidn.found()
1109 # conf.set10('HAVE_LIBIDN2', have)
1111 # want_libiptc = get_option('libiptc')
1112 # if want_libiptc != 'false' and not fuzzer_build
1113 # libiptc = dependency('libiptc',
1114 # required : want_libiptc == 'true')
1115 # have = libiptc.found()
1120 # conf.set10('HAVE_LIBIPTC', have)
1122 # want_qrencode = get_option('qrencode')
1123 # if want_qrencode != 'false' and not fuzzer_build
1124 # libqrencode = dependency('libqrencode',
1125 # required : want_qrencode == 'true')
1126 # have = libqrencode.found()
1131 # conf.set10('HAVE_QRENCODE', have)
1133 # want_gcrypt = get_option('gcrypt')
1134 # if want_gcrypt != 'false' and not fuzzer_build
1135 # libgcrypt = cc.find_library('gcrypt', required : want_gcrypt == 'true')
1136 # libgpg_error = cc.find_library('gpg-error', required : want_gcrypt == 'true')
1137 # have = libgcrypt.found() and libgpg_error.found()
1142 # # link to neither of the libs if one is not found
1146 # conf.set10('HAVE_GCRYPT', have)
1148 # want_gnutls = get_option('gnutls')
1149 # if want_gnutls != 'false' and not fuzzer_build
1150 # libgnutls = dependency('gnutls',
1151 # version : '>= 3.1.4',
1152 # required : want_gnutls == 'true')
1153 # have = libgnutls.found()
1158 # conf.set10('HAVE_GNUTLS', have)
1160 # want_elfutils = get_option('elfutils')
1161 # if want_elfutils != 'false' and not fuzzer_build
1162 # libdw = dependency('libdw',
1163 # required : want_elfutils == 'true')
1164 # have = libdw.found()
1169 # conf.set10('HAVE_ELFUTILS', have)
1171 # want_zlib = get_option('zlib')
1172 # if want_zlib != 'false' and not fuzzer_build
1173 # libz = dependency('zlib',
1174 # required : want_zlib == 'true')
1175 # have = libz.found()
1180 # conf.set10('HAVE_ZLIB', have)
1182 # want_bzip2 = get_option('bzip2')
1183 # if want_bzip2 != 'false' and not fuzzer_build
1184 # libbzip2 = cc.find_library('bz2',
1185 # required : want_bzip2 == 'true')
1186 # have = libbzip2.found()
1191 # conf.set10('HAVE_BZIP2', have)
1193 # want_xz = get_option('xz')
1194 # if want_xz != 'false' and not fuzzer_build
1195 # libxz = dependency('liblzma',
1196 # required : want_xz == 'true')
1197 # have = libxz.found()
1202 # conf.set10('HAVE_XZ', have)
1204 # want_lz4 = get_option('lz4')
1205 # if want_lz4 != 'false' and not fuzzer_build
1206 # liblz4 = dependency('liblz4',
1207 # required : want_lz4 == 'true')
1208 # have = liblz4.found()
1213 # conf.set10('HAVE_LZ4', have)
1215 # want_xkbcommon = get_option('xkbcommon')
1216 # if want_xkbcommon != 'false' and not fuzzer_build
1217 # libxkbcommon = dependency('xkbcommon',
1218 # version : '>= 0.3.0',
1219 # required : want_xkbcommon == 'true')
1220 # have = libxkbcommon.found()
1242 conf.set10('HAVE_XKBCOMMON', have)
1244 want_pcre2 = get_option('pcre2')
1245 if want_pcre2 != 'false'
1246 libpcre2 = dependency('libpcre2-8',
1247 required : want_pcre2 == 'true')
1248 have = libpcre2.found()
1253 conf.set10('HAVE_PCRE2', have)
1255 want_glib = get_option('glib')
1256 if want_glib != 'false' and not fuzzer_build
1257 libglib = dependency('glib-2.0',
1258 version : '>= 2.22.0',
1259 required : want_glib == 'true')
1260 libgobject = dependency('gobject-2.0',
1261 version : '>= 2.22.0',
1262 required : want_glib == 'true')
1263 libgio = dependency('gio-2.0',
1264 required : want_glib == 'true')
1265 have = libglib.found() and libgobject.found() and libgio.found()
1272 conf.set10('HAVE_GLIB', have)
1274 want_dbus = get_option('dbus')
1275 if want_dbus != 'false' and not fuzzer_build
1276 libdbus = dependency('dbus-1',
1277 version : '>= 1.3.2',
1278 required : want_dbus == 'true')
1279 have = libdbus.found()
1284 conf.set10('HAVE_DBUS', have)
1286 #if 0 /// UNNEEDED by elogind
1287 # default_dnssec = get_option('default-dnssec')
1289 # default_dnssec = 'no'
1291 # if default_dnssec != 'no' and conf.get('HAVE_GCRYPT') == 0
1292 # message('default-dnssec cannot be set to yes or allow-downgrade when gcrypt is disabled. Setting default-dnssec to no.')
1293 # default_dnssec = 'no'
1295 # conf.set('DEFAULT_DNSSEC_MODE',
1296 # 'DNSSEC_' + default_dnssec.underscorify().to_upper())
1297 # substs.set('DEFAULT_DNSSEC_MODE', default_dnssec)
1299 # want_importd = get_option('importd')
1300 # if want_importd != 'false'
1301 # have = (conf.get('HAVE_LIBCURL') == 1 and
1302 # conf.get('HAVE_ZLIB') == 1 and
1303 # conf.get('HAVE_BZIP2') == 1 and
1304 # conf.get('HAVE_XZ') == 1 and
1305 # conf.get('HAVE_GCRYPT') == 1)
1306 # if want_importd == 'true' and not have
1307 # error('importd support was requested, but dependencies are not available')
1312 # conf.set10('ENABLE_IMPORTD', have)
1314 # want_remote = get_option('remote')
1315 # if want_remote != 'false'
1316 # have_deps = [conf.get('HAVE_MICROHTTPD') == 1,
1317 # conf.get('HAVE_LIBCURL') == 1]
1318 # # sd-j-remote requires µhttpd, and sd-j-upload requires libcurl, so
1319 # # it's possible to build one without the other. Complain only if
1320 # # support was explictly requested. The auxiliary files like sysusers
1321 # # config should be installed when any of the programs are built.
1322 # if want_remote == 'true' and not (have_deps[0] and have_deps[1])
1323 # error('remote support was requested, but dependencies are not available')
1325 # have = have_deps[0] or have_deps[1]
1330 conf.set10('ENABLE_REMOTE', have)
1332 foreach term : ['utmp',
1333 #if 0 /// UNNEEDED by elogind
1367 have = get_option(term)
1368 name = 'ENABLE_' + term.underscorify().to_upper()
1369 conf.set10(name, have)
1372 conf.set10('ENABLE_TIMEDATECTL', get_option('timedated') or get_option('timesyncd'))
1374 want_tests = get_option('tests')
1375 install_tests = get_option('install-tests')
1376 slow_tests = get_option('slow-tests')
1380 conf.set10('SYSTEMD_SLOW_TESTS_DEFAULT', slow_tests)
1382 #####################################################################
1384 #if 0 /// UNNEEDED by elogind
1385 # if get_option('efi')
1386 # efi_arch = host_machine.cpu_family()
1388 # if efi_arch == 'x86'
1389 # EFI_MACHINE_TYPE_NAME = 'ia32'
1390 # gnu_efi_arch = 'ia32'
1391 # elif efi_arch == 'x86_64'
1392 # EFI_MACHINE_TYPE_NAME = 'x64'
1393 # gnu_efi_arch = 'x86_64'
1394 # elif efi_arch == 'arm'
1395 # EFI_MACHINE_TYPE_NAME = 'arm'
1396 # gnu_efi_arch = 'arm'
1397 # elif efi_arch == 'aarch64'
1398 # EFI_MACHINE_TYPE_NAME = 'aa64'
1399 # gnu_efi_arch = 'aarch64'
1401 # EFI_MACHINE_TYPE_NAME = ''
1406 # conf.set_quoted('EFI_MACHINE_TYPE_NAME', EFI_MACHINE_TYPE_NAME)
1408 # conf.set('SD_TPM_PCR', get_option('tpm-pcrindex').to_int())
1413 conf.set10('ENABLE_EFI', have)
1415 #####################################################################
1417 config_h = configure_file(
1418 output : 'config.h',
1419 configuration : conf)
1421 meson_apply_m4 = find_program('tools/meson-apply-m4.sh')
1423 includes = include_directories('src/basic',
1426 #if 0 /// UNNEEDED by elogind
1431 'src/time-wait-sync',
1433 #if 0 /// UNNEEDED by elogind
1438 #if 0 /// elogind has a different list
1439 # 'src/libsystemd/sd-bus',
1440 # 'src/libsystemd/sd-device',
1441 # 'src/libsystemd/sd-hwdb',
1442 # 'src/libsystemd/sd-id128',
1443 # 'src/libsystemd/sd-netlink',
1444 # 'src/libsystemd/sd-network',
1445 # 'src/libsystemd-network',
1447 'src/libelogind/sd-bus',
1448 'src/libelogind/sd-id128',
1454 add_project_arguments('-include', 'config.h', language : 'c')
1457 #if 0 /// UNNEEDED by elogind
1460 subdir('src/systemd')
1462 #if 0 /// UNNEEDED by elogind
1463 # subdir('src/libsystemd')
1464 # subdir('src/libsystemd-network')
1465 # subdir('src/journal')
1468 subdir('src/libelogind')
1470 subdir('src/update-utmp')
1474 #if 0 /// UNNEEDED by elogind
1475 # libjournal_core = static_library(
1477 # libjournal_core_sources,
1479 # include_directories : includes,
1483 libelogind_sym_path = '@0@/@1@'.format(meson.current_source_dir(), libelogind_sym)
1484 libelogind = shared_library(
1486 'src/systemd/sd-id128.h', # pick a header file at random to work around old meson bug
1487 version : libelogind_version,
1488 include_directories : includes,
1489 link_args : ['-shared',
1490 '-Wl,--version-script=' + libelogind_sym_path],
1491 #if 0 /// elogind does not need gcrypt or libjournal_client, only threads.
1492 # link_with : [libbasic,
1494 # link_whole : [libsystemd_static,
1495 # libjournal_client],
1496 # dependencies : [threads,
1500 # link_depends : libsystemd_sym,
1502 link_with : [libbasic],
1503 link_whole : [libelogind_static],
1504 dependencies : [threads],
1505 link_depends : libelogind_sym,
1508 install_dir : rootlibdir)
1510 static_libelogind = get_option('static-libelogind')
1511 static_libelogind_pic = static_libelogind == 'true' or static_libelogind == 'pic'
1513 install_libelogind_static = static_library(
1516 journal_client_sources,
1518 basic_gcrypt_sources,
1519 include_directories : includes,
1520 build_by_default : static_libelogind != 'false',
1521 install : static_libelogind != 'false',
1522 install_dir : rootlibdir,
1523 pic : static_libelogind == 'true' or static_libelogind == 'pic',
1524 dependencies : [threads,
1533 c_args : libelogind_c_args + (static_libelogind_pic ? [] : ['-fno-PIC']))
1535 ############################################################
1537 # binaries that have --help and are intended for use by humans,
1538 # usually, but not always, installed in /bin.
1539 public_programs = []
1541 #if 0 /// UNNEEDED by elogind
1542 # subdir('src/libudev')
1544 # elogind depends on external libudev:
1545 libudev = dependency('libudev', required : true)
1547 subdir('src/shared')
1548 #if 0 /// UNNEEDED by elogind
1549 # subdir('src/core')
1550 # subdir('src/udev')
1551 # subdir('src/network')
1553 # subdir('src/analyze')
1554 # subdir('src/journal-remote')
1555 # subdir('src/coredump')
1556 # subdir('src/hostname')
1557 # subdir('src/import')
1558 # subdir('src/kernel-install')
1559 # subdir('src/locale')
1560 # subdir('src/machine')
1561 # subdir('src/nspawn')
1562 # subdir('src/resolve')
1563 # subdir('src/timedate')
1564 # subdir('src/timesync')
1565 # subdir('src/vconsole')
1566 # subdir('src/boot/efi')
1570 #if 0 /// UNNEEDED by elogind
1571 # subdir('src/fuzz')
1576 ############################################################
1578 # only static linking apart from libdl, to make sure that the
1579 # module is linked to all libraries that it uses.
1580 test_dlopen = executable(
1583 include_directories : includes,
1584 link_with : [libbasic],
1585 dependencies : [libdl])
1587 #if 0 /// UNNEEDED by elogind
1588 # foreach tuple : [['myhostname', 'ENABLE_MYHOSTNAME'],
1589 # ['systemd', 'ENABLE_NSS_SYSTEMD'],
1590 # ['mymachines', 'ENABLE_MACHINED'],
1591 # ['resolve', 'ENABLE_RESOLVE']]
1593 # condition = tuple[1] == '' or conf.get(tuple[1]) == 1
1597 # sym = 'src/nss-@0@/nss-@0@.sym'.format(module)
1598 # version_script_arg = join_paths(meson.current_source_dir(), sym)
1600 # nss = shared_library(
1602 # 'src/nss-@0@/nss-@0@.c'.format(module),
1604 # include_directories : includes,
1605 # # Note that we link NSS modules with '-z nodelete' so that mempools never get orphaned
1606 # link_args : ['-Wl,-z,nodelete',
1608 # '-Wl,--version-script=' + version_script_arg,
1609 # '-Wl,--undefined'],
1610 # link_with : [libsystemd_static,
1612 # dependencies : [threads,
1614 # link_depends : sym,
1616 # install_dir : rootlibdir)
1618 # # We cannot use shared_module because it does not support version suffix.
1619 # # Unfortunately shared_library insists on creating the symlink…
1620 # meson.add_install_script('sh', '-c',
1621 # 'rm $DESTDIR@0@/libnss_@1@.so'
1622 # .format(rootlibdir, module))
1624 # test('dlopen-nss_' + module,
1626 # args : [nss.full_path()]) # path to dlopen must include a slash
1631 ############################################################
1633 #if 0 /// UNNEEDED by elogind
1634 # executable('systemd',
1636 # include_directories : includes,
1637 # link_with : [libcore,
1639 # dependencies : [threads,
1645 # install_rpath : rootlibexecdir,
1647 # install_dir : rootlibexecdir)
1649 # meson.add_install_script(meson_make_symlink,
1650 # join_paths(rootlibexecdir, 'systemd'),
1651 # join_paths(rootsbindir, 'init'))
1653 # exe = executable('systemd-analyze',
1654 # systemd_analyze_sources,
1655 # include_directories : includes,
1656 # link_with : [libcore,
1658 # dependencies : [threads,
1664 # install_rpath : rootlibexecdir,
1666 # public_programs += [exe]
1668 # executable('systemd-journald',
1669 # systemd_journald_sources,
1670 # include_directories : includes,
1671 # link_with : [libjournal_core,
1673 # dependencies : [threads,
1677 # install_rpath : rootlibexecdir,
1679 # install_dir : rootlibexecdir)
1681 # exe = executable('systemd-cat',
1682 # systemd_cat_sources,
1683 # include_directories : includes,
1684 # link_with : [libjournal_core,
1686 # dependencies : [threads],
1687 # install_rpath : rootlibexecdir,
1689 # public_programs += [exe]
1691 # exe = executable('journalctl',
1692 # journalctl_sources,
1693 # include_directories : includes,
1694 # link_with : [libshared],
1695 # dependencies : [threads,
1700 # install_rpath : rootlibexecdir,
1702 # install_dir : rootbindir)
1703 # public_programs += [exe]
1705 # executable('systemd-getty-generator',
1706 # 'src/getty-generator/getty-generator.c',
1707 # include_directories : includes,
1708 # link_with : [libshared],
1709 # install_rpath : rootlibexecdir,
1711 # install_dir : systemgeneratordir)
1713 # executable('systemd-debug-generator',
1714 # 'src/debug-generator/debug-generator.c',
1715 # include_directories : includes,
1716 # link_with : [libshared],
1717 # install_rpath : rootlibexecdir,
1719 # install_dir : systemgeneratordir)
1721 # executable('systemd-fstab-generator',
1722 # 'src/fstab-generator/fstab-generator.c',
1723 # 'src/core/mount-setup.c',
1724 # include_directories : includes,
1725 # link_with : [libshared],
1726 # install_rpath : rootlibexecdir,
1728 # install_dir : systemgeneratordir)
1730 # if conf.get('ENABLE_ENVIRONMENT_D') == 1
1731 # executable('30-systemd-environment-d-generator',
1732 # 'src/environment-d-generator/environment-d-generator.c',
1733 # include_directories : includes,
1734 # link_with : [libshared],
1735 # install_rpath : rootlibexecdir,
1737 # install_dir : userenvgeneratordir)
1739 # meson.add_install_script(meson_make_symlink,
1740 # join_paths(sysconfdir, 'environment'),
1741 # join_paths(environmentdir, '99-environment.conf'))
1744 # if conf.get('ENABLE_HIBERNATE') == 1
1745 # executable('systemd-hibernate-resume-generator',
1746 # 'src/hibernate-resume/hibernate-resume-generator.c',
1747 # include_directories : includes,
1748 # link_with : [libshared],
1749 # install_rpath : rootlibexecdir,
1751 # install_dir : systemgeneratordir)
1753 # executable('systemd-hibernate-resume',
1754 # 'src/hibernate-resume/hibernate-resume.c',
1755 # include_directories : includes,
1756 # link_with : [libshared],
1757 # install_rpath : rootlibexecdir,
1759 # install_dir : rootlibexecdir)
1762 # if conf.get('HAVE_BLKID') == 1
1763 # executable('systemd-gpt-auto-generator',
1764 # 'src/gpt-auto-generator/gpt-auto-generator.c',
1765 # 'src/basic/blkid-util.h',
1766 # include_directories : includes,
1767 # link_with : [libshared],
1768 # dependencies : libblkid,
1769 # install_rpath : rootlibexecdir,
1771 # install_dir : systemgeneratordir)
1773 # exe = executable('systemd-dissect',
1774 # 'src/dissect/dissect.c',
1775 # include_directories : includes,
1776 # link_with : [libshared],
1777 # install_rpath : rootlibexecdir,
1779 # install_dir : rootlibexecdir)
1780 # public_programs += [exe]
1783 # if conf.get('ENABLE_RESOLVE') == 1
1784 # executable('systemd-resolved',
1785 # systemd_resolved_sources,
1786 # include_directories : includes,
1787 # link_with : [libshared,
1789 # libsystemd_resolve_core],
1790 # dependencies : [threads,
1794 # install_rpath : rootlibexecdir,
1796 # install_dir : rootlibexecdir)
1798 # exe = executable('resolvectl',
1799 # resolvectl_sources,
1800 # include_directories : includes,
1801 # link_with : [libshared,
1803 # libsystemd_resolve_core],
1804 # dependencies : [threads,
1808 # install_rpath : rootlibexecdir,
1810 # public_programs += [exe]
1812 # meson.add_install_script(meson_make_symlink,
1813 # join_paths(bindir, 'resolvectl'),
1814 # join_paths(rootsbindir, 'resolvconf'))
1816 # meson.add_install_script(meson_make_symlink,
1817 # join_paths(bindir, 'resolvectl'),
1818 # join_paths(bindir, 'systemd-resolve'))
1821 # if conf.get('ENABLE_LOGIND') == 1
1822 # executable('systemd-logind',
1823 # systemd_logind_sources,
1824 # include_directories : includes,
1825 # link_with : [liblogind_core,
1827 # dependencies : [threads,
1829 # install_rpath : rootlibexecdir,
1831 # install_dir : rootlibexecdir)
1833 # exe = executable('loginctl',
1835 # include_directories : includes,
1836 # link_with : [libshared],
1837 # dependencies : [threads,
1840 # install_rpath : rootlibexecdir,
1842 # install_dir : rootbindir)
1843 # public_programs += [exe]
1845 # exe = executable('systemd-inhibit',
1846 # 'src/login/inhibit.c',
1847 # include_directories : includes,
1848 # link_with : [libshared],
1849 # install_rpath : rootlibexecdir,
1851 # install_dir : rootbindir)
1852 # public_programs += [exe]
1854 # if conf.get('HAVE_PAM') == 1
1855 # version_script_arg = join_paths(meson.current_source_dir(), pam_systemd_sym)
1856 # pam_systemd = shared_library(
1860 # include_directories : includes,
1861 # link_args : ['-shared',
1862 # '-Wl,--version-script=' + version_script_arg],
1863 # link_with : [libsystemd_static,
1864 # libshared_static],
1865 # dependencies : [threads,
1868 # link_depends : pam_systemd_sym,
1870 # install_dir : pamlibdir)
1872 # test('dlopen-pam_systemd',
1874 # args : [pam_systemd.full_path()]) # path to dlopen must include a slash
1880 executable('elogind',
1882 include_directories : includes,
1883 link_with : [liblogind_core,
1885 dependencies : [threads,
1888 install_rpath : rootlibexecdir,
1890 install_dir : rootlibexecdir)
1892 exe = executable('loginctl',
1894 include_directories : includes,
1895 link_with : [libshared],
1896 dependencies : [threads,
1898 install_rpath : rootlibexecdir,
1900 install_dir : rootbindir)
1901 public_programs += [exe]
1903 exe = executable('elogind-inhibit',
1904 'src/login/inhibit.c',
1905 include_directories : includes,
1906 link_with : [libshared],
1907 dependencies : [threads],
1908 install_rpath : rootlibexecdir,
1910 install_dir : rootbindir)
1911 public_programs += [exe]
1912 executable('elogind-user-runtime-dir',
1913 executable('elogind-user-runtime-dir',
1914 executable('elogind-user-runtime-dir',
1915 executable('elogind-user-runtime-dir',
1916 user_runtime_dir_sources,
1917 include_directories : includes,
1918 link_with : [libshared, liblogind_core],
1919 install_rpath : rootlibexecdir,
1921 install_dir : rootlibexecdir)
1923 if conf.get('HAVE_PAM') == 1
1924 version_script_arg = join_paths(meson.current_source_dir(), pam_elogind_sym)
1925 pam_elogind = shared_library(
1929 include_directories : includes,
1930 link_args : ['-shared',
1931 '-Wl,--version-script=' + version_script_arg],
1932 link_with : [libelogind_static,
1934 dependencies : [threads,
1937 link_depends : pam_elogind_sym,
1939 install_dir : pamlibdir)
1941 test('dlopen-pam_elogind',
1943 args : [pam_elogind.full_path()]) # path to dlopen must include a slash
1946 #if 0 /// UNNEEDED by elogind
1947 # executable('systemd-user-sessions',
1948 # 'src/user-sessions/user-sessions.c',
1949 # include_directories : includes,
1950 # link_with : [libshared],
1951 # install_rpath : rootlibexecdir,
1953 # install_dir : rootlibexecdir)
1956 # if conf.get('ENABLE_EFI') == 1 and conf.get('HAVE_BLKID') == 1
1957 # exe = executable('bootctl',
1958 # 'src/boot/bootctl.c',
1959 # include_directories : includes,
1960 # link_with : [libshared],
1961 # dependencies : [libblkid],
1962 # install_rpath : rootlibexecdir,
1964 # public_programs += [exe]
1967 # exe = executable('systemd-socket-activate', 'src/activate/activate.c',
1968 # include_directories : includes,
1969 # link_with : [libshared],
1970 # dependencies : [threads],
1971 # install_rpath : rootlibexecdir,
1973 # public_programs += [exe]
1975 # exe = executable('systemctl', 'src/systemctl/systemctl.c',
1976 # include_directories : includes,
1977 # link_with : [libshared],
1978 # dependencies : [threads,
1983 # install_rpath : rootlibexecdir,
1985 # install_dir : rootbindir)
1986 # public_programs += [exe]
1988 # foreach alias : ['halt', 'poweroff', 'reboot', 'runlevel', 'shutdown', 'telinit']
1989 # meson.add_install_script(meson_make_symlink,
1990 # join_paths(rootbindir, 'systemctl'),
1991 # join_paths(rootsbindir, alias))
1994 # if conf.get('ENABLE_BACKLIGHT') == 1
1995 # executable('systemd-backlight',
1996 # 'src/backlight/backlight.c',
1997 # include_directories : includes,
1998 # link_with : [libshared],
1999 # install_rpath : rootlibexecdir,
2001 # install_dir : rootlibexecdir)
2004 # if conf.get('ENABLE_RFKILL') == 1
2005 # executable('systemd-rfkill',
2006 # 'src/rfkill/rfkill.c',
2007 # include_directories : includes,
2008 # link_with : [libshared],
2009 # install_rpath : rootlibexecdir,
2011 # install_dir : rootlibexecdir)
2014 # executable('systemd-system-update-generator',
2015 # 'src/system-update-generator/system-update-generator.c',
2016 # include_directories : includes,
2017 # link_with : [libshared],
2018 # install_rpath : rootlibexecdir,
2020 # install_dir : systemgeneratordir)
2022 # if conf.get('HAVE_LIBCRYPTSETUP') == 1
2023 # executable('systemd-cryptsetup',
2024 # 'src/cryptsetup/cryptsetup.c',
2025 # include_directories : includes,
2026 # link_with : [libshared],
2027 # dependencies : [libcryptsetup],
2028 # install_rpath : rootlibexecdir,
2030 # install_dir : rootlibexecdir)
2032 # executable('systemd-cryptsetup-generator',
2033 # 'src/cryptsetup/cryptsetup-generator.c',
2034 # include_directories : includes,
2035 # link_with : [libshared],
2036 # dependencies : [libcryptsetup],
2037 # install_rpath : rootlibexecdir,
2039 # install_dir : systemgeneratordir)
2041 # executable('systemd-veritysetup',
2042 # 'src/veritysetup/veritysetup.c',
2043 # include_directories : includes,
2044 # link_with : [libshared],
2045 # dependencies : [libcryptsetup],
2046 # install_rpath : rootlibexecdir,
2048 # install_dir : rootlibexecdir)
2050 # executable('systemd-veritysetup-generator',
2051 # 'src/veritysetup/veritysetup-generator.c',
2052 # include_directories : includes,
2053 # link_with : [libshared],
2054 # dependencies : [libcryptsetup],
2055 # install_rpath : rootlibexecdir,
2057 # install_dir : systemgeneratordir)
2060 # if conf.get('HAVE_SYSV_COMPAT') == 1
2061 # executable('systemd-sysv-generator',
2062 # 'src/sysv-generator/sysv-generator.c',
2063 # include_directories : includes,
2064 # link_with : [libshared],
2065 # install_rpath : rootlibexecdir,
2067 # install_dir : systemgeneratordir)
2069 # executable('systemd-rc-local-generator',
2070 # 'src/rc-local-generator/rc-local-generator.c',
2071 # include_directories : includes,
2072 # link_with : [libshared],
2073 # install_rpath : rootlibexecdir,
2075 # install_dir : systemgeneratordir)
2078 # if conf.get('ENABLE_HOSTNAMED') == 1
2079 # executable('systemd-hostnamed',
2080 # 'src/hostname/hostnamed.c',
2081 # include_directories : includes,
2082 # link_with : [libshared],
2083 # install_rpath : rootlibexecdir,
2085 # install_dir : rootlibexecdir)
2087 # exe = executable('hostnamectl',
2088 # 'src/hostname/hostnamectl.c',
2089 # include_directories : includes,
2090 # link_with : [libshared],
2091 # install_rpath : rootlibexecdir,
2093 # public_programs += [exe]
2096 # if conf.get('ENABLE_LOCALED') == 1
2097 # if conf.get('HAVE_XKBCOMMON') == 1
2098 # # logind will load libxkbcommon.so dynamically on its own
2104 # executable('systemd-localed',
2105 # systemd_localed_sources,
2106 # include_directories : includes,
2107 # link_with : [libshared],
2108 # dependencies : deps,
2109 # install_rpath : rootlibexecdir,
2111 # install_dir : rootlibexecdir)
2113 # exe = executable('localectl',
2114 # localectl_sources,
2115 # include_directories : includes,
2116 # link_with : [libshared],
2117 # install_rpath : rootlibexecdir,
2119 # public_programs += [exe]
2122 # if conf.get('ENABLE_TIMEDATED') == 1
2123 # executable('systemd-timedated',
2124 # 'src/timedate/timedated.c',
2125 # include_directories : includes,
2126 # link_with : [libshared],
2127 # install_rpath : rootlibexecdir,
2129 # install_dir : rootlibexecdir)
2132 # if conf.get('ENABLE_TIMEDATECTL') == 1
2133 # exe = executable('timedatectl',
2134 # 'src/timedate/timedatectl.c',
2135 # include_directories : includes,
2136 # install_rpath : rootlibexecdir,
2137 # link_with : [libshared],
2138 # dependencies : [libm],
2140 # public_programs += [exe]
2143 # if conf.get('ENABLE_TIMESYNCD') == 1
2144 # executable('systemd-timesyncd',
2145 # systemd_timesyncd_sources,
2146 # include_directories : includes,
2147 # link_with : [libshared],
2148 # dependencies : [threads,
2150 # install_rpath : rootlibexecdir,
2152 # install_dir : rootlibexecdir)
2154 # executable('systemd-time-wait-sync',
2155 # 'src/time-wait-sync/time-wait-sync.c',
2156 # include_directories : includes,
2157 # link_with : [libshared],
2158 # install_rpath : rootlibexecdir,
2160 # install_dir : rootlibexecdir)
2163 # if conf.get('ENABLE_MACHINED') == 1
2164 # executable('systemd-machined',
2165 # systemd_machined_sources,
2166 # include_directories : includes,
2167 # link_with : [libmachine_core,
2169 # install_rpath : rootlibexecdir,
2171 # install_dir : rootlibexecdir)
2173 # exe = executable('machinectl',
2174 # 'src/machine/machinectl.c',
2175 # include_directories : includes,
2176 # link_with : [libshared],
2177 # dependencies : [threads,
2180 # install_rpath : rootlibexecdir,
2182 # install_dir : rootbindir)
2183 # public_programs += [exe]
2186 # if conf.get('ENABLE_IMPORTD') == 1
2187 # executable('systemd-importd',
2188 # systemd_importd_sources,
2189 # include_directories : includes,
2190 # link_with : [libshared],
2191 # dependencies : [threads],
2192 # install_rpath : rootlibexecdir,
2194 # install_dir : rootlibexecdir)
2196 # systemd_pull = executable('systemd-pull',
2197 # systemd_pull_sources,
2198 # include_directories : includes,
2199 # link_with : [libshared],
2200 # dependencies : [libcurl,
2205 # install_rpath : rootlibexecdir,
2207 # install_dir : rootlibexecdir)
2209 # systemd_import = executable('systemd-import',
2210 # systemd_import_sources,
2211 # include_directories : includes,
2212 # link_with : [libshared],
2213 # dependencies : [libcurl,
2217 # install_rpath : rootlibexecdir,
2219 # install_dir : rootlibexecdir)
2221 # systemd_export = executable('systemd-export',
2222 # systemd_export_sources,
2223 # include_directories : includes,
2224 # link_with : [libshared],
2225 # dependencies : [libcurl,
2229 # install_rpath : rootlibexecdir,
2231 # install_dir : rootlibexecdir)
2232 # public_programs += [systemd_pull, systemd_import, systemd_export]
2235 # if conf.get('ENABLE_REMOTE') == 1 and conf.get('HAVE_LIBCURL') == 1
2236 # exe = executable('systemd-journal-upload',
2237 # systemd_journal_upload_sources,
2238 # include_directories : includes,
2239 # link_with : [libshared],
2240 # dependencies : [threads,
2245 # install_rpath : rootlibexecdir,
2247 # install_dir : rootlibexecdir)
2248 # public_programs += [exe]
2251 # if conf.get('ENABLE_REMOTE') == 1 and conf.get('HAVE_MICROHTTPD') == 1
2252 # s_j_remote = executable('systemd-journal-remote',
2253 # systemd_journal_remote_sources,
2254 # include_directories : includes,
2255 # link_with : [libshared],
2256 # dependencies : [threads,
2261 # install_rpath : rootlibexecdir,
2263 # install_dir : rootlibexecdir)
2265 # s_j_gatewayd = executable('systemd-journal-gatewayd',
2266 # systemd_journal_gatewayd_sources,
2267 # include_directories : includes,
2268 # link_with : [libshared],
2269 # dependencies : [threads,
2274 # install_rpath : rootlibexecdir,
2276 # install_dir : rootlibexecdir)
2277 # public_programs += [s_j_remote, s_j_gatewayd]
2280 # if conf.get('ENABLE_COREDUMP') == 1
2281 # executable('systemd-coredump',
2282 # systemd_coredump_sources,
2283 # include_directories : includes,
2284 # link_with : [libshared],
2285 # dependencies : [threads,
2290 # install_rpath : rootlibexecdir,
2292 # install_dir : rootlibexecdir)
2294 # exe = executable('coredumpctl',
2295 # coredumpctl_sources,
2296 # include_directories : includes,
2297 # link_with : [libshared],
2298 # dependencies : [threads,
2301 # install_rpath : rootlibexecdir,
2303 # public_programs += [exe]
2306 # if conf.get('ENABLE_BINFMT') == 1
2307 # exe = executable('systemd-binfmt',
2308 # 'src/binfmt/binfmt.c',
2309 # include_directories : includes,
2310 # link_with : [libshared],
2311 # install_rpath : rootlibexecdir,
2313 # install_dir : rootlibexecdir)
2314 # public_programs += [exe]
2316 # meson.add_install_script('sh', '-c',
2317 # mkdir_p.format(binfmtdir))
2318 # meson.add_install_script('sh', '-c',
2319 # mkdir_p.format(join_paths(sysconfdir, 'binfmt.d')))
2322 # if conf.get('ENABLE_VCONSOLE') == 1
2323 # executable('systemd-vconsole-setup',
2324 # 'src/vconsole/vconsole-setup.c',
2325 # include_directories : includes,
2326 # link_with : [libshared],
2327 # install_rpath : rootlibexecdir,
2329 # install_dir : rootlibexecdir)
2332 # if conf.get('ENABLE_RANDOMSEED') == 1
2333 # executable('systemd-random-seed',
2334 # 'src/random-seed/random-seed.c',
2335 # include_directories : includes,
2336 # link_with : [libshared],
2337 # install_rpath : rootlibexecdir,
2339 # install_dir : rootlibexecdir)
2342 # if conf.get('ENABLE_FIRSTBOOT') == 1
2343 # executable('systemd-firstboot',
2344 # 'src/firstboot/firstboot.c',
2345 # include_directories : includes,
2346 # link_with : [libshared],
2347 # dependencies : [libcrypt],
2348 # install_rpath : rootlibexecdir,
2350 # install_dir : rootbindir)
2353 # executable('systemd-remount-fs',
2354 # 'src/remount-fs/remount-fs.c',
2355 # 'src/core/mount-setup.c',
2356 # 'src/core/mount-setup.h',
2357 # include_directories : includes,
2358 # link_with : [libshared],
2359 # install_rpath : rootlibexecdir,
2361 # install_dir : rootlibexecdir)
2363 # executable('systemd-machine-id-setup',
2364 # 'src/machine-id-setup/machine-id-setup-main.c',
2365 # 'src/core/machine-id-setup.c',
2366 # 'src/core/machine-id-setup.h',
2367 # include_directories : includes,
2368 # link_with : [libshared],
2369 # install_rpath : rootlibexecdir,
2371 # install_dir : rootbindir)
2373 # executable('systemd-fsck',
2374 # 'src/fsck/fsck.c',
2375 # include_directories : includes,
2376 # link_with : [libshared],
2377 # install_rpath : rootlibexecdir,
2379 # install_dir : rootlibexecdir)
2381 # executable('elogind-growfs',
2382 # 'src/partition/growfs.c',
2383 # include_directories : includes,
2384 # link_with : [libshared],
2385 # dependencies : [libcryptsetup],
2386 # install_rpath : rootlibexecdir,
2388 # install_dir : rootlibexecdir)
2390 # executable('elogind-makefs',
2391 # 'src/partition/makefs.c',
2392 # include_directories : includes,
2393 # link_with : [libshared],
2394 # install_rpath : rootlibexecdir,
2396 # install_dir : rootlibexecdir)
2398 # executable('systemd-sleep',
2399 # 'src/sleep/sleep.c',
2400 # include_directories : includes,
2401 # link_with : [libshared],
2402 # install_rpath : rootlibexecdir,
2404 # install_dir : rootlibexecdir)
2406 # exe = executable('systemd-sysctl',
2407 # 'src/sysctl/sysctl.c',
2408 # include_directories : includes,
2409 # link_with : [libshared],
2410 # install_rpath : rootlibexecdir,
2412 # install_dir : rootlibexecdir)
2413 # public_programs += [exe]
2415 # executable('systemd-ac-power',
2416 # 'src/ac-power/ac-power.c',
2417 # include_directories : includes,
2418 # link_with : [libshared],
2419 # install_rpath : rootlibexecdir,
2421 # install_dir : rootlibexecdir)
2423 # exe = executable('systemd-detect-virt',
2424 # 'src/detect-virt/detect-virt.c',
2425 # include_directories : includes,
2426 # link_with : [libshared],
2427 # install_rpath : rootlibexecdir,
2429 # public_programs += [exe]
2431 # exe = executable('systemd-delta',
2432 # 'src/delta/delta.c',
2433 # include_directories : includes,
2434 # link_with : [libshared],
2435 # install_rpath : rootlibexecdir,
2437 # public_programs += [exe]
2439 # exe = executable('systemd-escape',
2440 # 'src/escape/escape.c',
2441 # include_directories : includes,
2442 # link_with : [libshared],
2443 # install_rpath : rootlibexecdir,
2445 # install_dir : rootbindir)
2446 # public_programs += [exe]
2448 # exe = executable('systemd-notify',
2449 # 'src/notify/notify.c',
2450 # include_directories : includes,
2451 # link_with : [libshared],
2452 # install_rpath : rootlibexecdir,
2454 # install_dir : rootbindir)
2455 # public_programs += [exe]
2457 # executable('systemd-volatile-root',
2458 # 'src/volatile-root/volatile-root.c',
2459 # include_directories : includes,
2460 # link_with : [libshared],
2461 # install_rpath : rootlibexecdir,
2463 # install_dir : rootlibexecdir)
2465 # executable('systemd-cgroups-agent',
2466 # 'src/cgroups-agent/cgroups-agent.c',
2467 # include_directories : includes,
2468 # link_with : [libshared],
2469 # install_rpath : rootlibexecdir,
2471 # install_dir : rootlibexecdir)
2473 executable('elogind-cgroups-agent',
2474 'src/cgroups-agent/cgroups-agent.c',
2475 include_directories : includes,
2476 link_with : [libshared],
2477 install_rpath : rootlibexecdir,
2479 install_dir : rootlibexecdir)
2482 #if 0 /// UNNEEDED by elogind
2483 # exe = executable('systemd-path',
2484 # 'src/path/path.c',
2485 # include_directories : includes,
2486 # link_with : [libshared],
2487 # install_rpath : rootlibexecdir,
2489 # public_programs += [exe]
2491 # exe = executable('systemd-ask-password',
2492 # 'src/ask-password/ask-password.c',
2493 # include_directories : includes,
2494 # link_with : [libshared],
2495 # install_rpath : rootlibexecdir,
2497 # install_dir : rootbindir)
2498 # public_programs += [exe]
2500 # executable('systemd-reply-password',
2501 # 'src/reply-password/reply-password.c',
2502 # include_directories : includes,
2503 # link_with : [libshared],
2504 # install_rpath : rootlibexecdir,
2506 # install_dir : rootlibexecdir)
2508 # exe = executable('systemd-tty-ask-password-agent',
2509 # 'src/tty-ask-password-agent/tty-ask-password-agent.c',
2510 # include_directories : includes,
2511 # link_with : [libshared],
2512 # install_rpath : rootlibexecdir,
2514 # install_dir : rootbindir)
2515 # public_programs += [exe]
2517 # exe = executable('systemd-cgls',
2518 # 'src/cgls/cgls.c',
2519 # include_directories : includes,
2520 # link_with : [libshared],
2521 # install_rpath : rootlibexecdir,
2523 # public_programs += [exe]
2525 # exe = executable('systemd-cgtop',
2526 # 'src/cgtop/cgtop.c',
2527 # include_directories : includes,
2528 # link_with : [libshared],
2529 # install_rpath : rootlibexecdir,
2531 # public_programs += [exe]
2533 # executable('systemd-initctl',
2534 # 'src/initctl/initctl.c',
2535 # include_directories : includes,
2536 # link_with : [libshared],
2537 # install_rpath : rootlibexecdir,
2539 # install_dir : rootlibexecdir)
2541 # exe = executable('systemd-mount',
2542 # 'src/mount/mount-tool.c',
2543 # include_directories : includes,
2544 # link_with : [libshared],
2545 # install_rpath : rootlibexecdir,
2547 # public_programs += [exe]
2549 # meson.add_install_script(meson_make_symlink,
2550 # 'systemd-mount', join_paths(bindir, 'systemd-umount'))
2552 # exe = executable('systemd-run',
2554 # include_directories : includes,
2555 # link_with : [libshared],
2556 # install_rpath : rootlibexecdir,
2558 # public_programs += [exe]
2560 # exe = executable('systemd-stdio-bridge',
2561 # 'src/stdio-bridge/stdio-bridge.c',
2562 # include_directories : includes,
2563 # link_with : [libshared],
2564 # install_rpath : rootlibexecdir,
2566 # public_programs += [exe]
2568 # exe = executable('busctl',
2569 # 'src/busctl/busctl.c',
2570 # 'src/busctl/busctl-introspect.c',
2571 # 'src/busctl/busctl-introspect.h',
2572 # include_directories : includes,
2573 # link_with : [libshared],
2574 # install_rpath : rootlibexecdir,
2576 # public_programs += [exe]
2578 # if conf.get('ENABLE_SYSUSERS') == 1
2579 # exe = executable('systemd-sysusers',
2580 # 'src/sysusers/sysusers.c',
2581 # include_directories : includes,
2582 # link_with : [libshared],
2583 # install_rpath : rootlibexecdir,
2585 # install_dir : rootbindir)
2586 # public_programs += [exe]
2589 # if conf.get('ENABLE_TMPFILES') == 1
2590 # exe = executable('systemd-tmpfiles',
2591 # 'src/tmpfiles/tmpfiles.c',
2592 # include_directories : includes,
2593 # link_with : [libshared],
2594 # dependencies : [libacl],
2595 # install_rpath : rootlibexecdir,
2597 # install_dir : rootbindir)
2598 # public_programs += [exe]
2600 # test('test-systemd-tmpfiles',
2601 # test_systemd_tmpfiles_py,
2602 # args : exe.full_path())
2603 # # https://github.com/mesonbuild/meson/issues/2681
2606 # if conf.get('ENABLE_HWDB') == 1
2607 # exe = executable('systemd-hwdb',
2608 # 'src/hwdb/hwdb.c',
2609 # 'src/libsystemd/sd-hwdb/hwdb-internal.h',
2610 # include_directories : includes,
2611 # link_with : [libudev_static],
2612 # install_rpath : udev_rpath,
2614 # install_dir : rootbindir)
2615 # public_programs += [exe]
2618 # if conf.get('ENABLE_QUOTACHECK') == 1
2619 # executable('systemd-quotacheck',
2620 # 'src/quotacheck/quotacheck.c',
2621 # include_directories : includes,
2622 # link_with : [libshared],
2623 # install_rpath : rootlibexecdir,
2625 # install_dir : rootlibexecdir)
2628 # exe = executable('systemd-socket-proxyd',
2629 # 'src/socket-proxy/socket-proxyd.c',
2630 # include_directories : includes,
2631 # link_with : [libshared],
2632 # dependencies : [threads],
2633 # install_rpath : rootlibexecdir,
2635 # install_dir : rootlibexecdir)
2636 # public_programs += [exe]
2638 # exe = executable('systemd-udevd',
2639 # systemd_udevd_sources,
2640 # include_directories : includes,
2641 # c_args : ['-DLOG_REALM=LOG_REALM_UDEV'],
2642 # link_with : [libudev_core,
2643 # libsystemd_network,
2645 # dependencies : [threads,
2650 # install_rpath : udev_rpath,
2652 # install_dir : rootlibexecdir)
2653 # public_programs += [exe]
2655 # exe = executable('udevadm',
2657 # c_args : ['-DLOG_REALM=LOG_REALM_UDEV'],
2658 # include_directories : includes,
2659 # link_with : [libudev_core,
2660 # libsystemd_network,
2662 # dependencies : [threads,
2667 # install_rpath : udev_rpath,
2669 # install_dir : rootbindir)
2670 # public_programs += [exe]
2672 # executable('systemd-shutdown',
2673 # systemd_shutdown_sources,
2674 # include_directories : includes,
2675 # link_with : [libshared],
2676 # dependencies : [libmount],
2677 # install_rpath : rootlibexecdir,
2679 # install_dir : rootlibexecdir)
2681 # executable('systemd-update-done',
2682 # 'src/update-done/update-done.c',
2683 # include_directories : includes,
2684 # link_with : [libshared],
2685 # install_rpath : rootlibexecdir,
2687 # install_dir : rootlibexecdir)
2689 # executable('systemd-update-utmp',
2690 # 'src/update-utmp/update-utmp.c',
2691 # include_directories : includes,
2692 # link_with : [libshared],
2693 # dependencies : [libaudit],
2694 # install_rpath : rootlibexecdir,
2696 # install_dir : rootlibexecdir)
2698 # if conf.get('HAVE_KMOD') == 1
2699 # executable('systemd-modules-load',
2700 # 'src/modules-load/modules-load.c',
2701 # include_directories : includes,
2702 # link_with : [libshared],
2703 # dependencies : [libkmod],
2704 # install_rpath : rootlibexecdir,
2706 # install_dir : rootlibexecdir)
2708 # meson.add_install_script('sh', '-c',
2709 # mkdir_p.format(modulesloaddir))
2710 # meson.add_install_script('sh', '-c',
2711 # mkdir_p.format(join_paths(sysconfdir, 'modules-load.d')))
2714 # exe = executable('systemd-nspawn',
2715 # systemd_nspawn_sources,
2716 # 'src/core/mount-setup.c', # FIXME: use a variable?
2717 # 'src/core/mount-setup.h',
2718 # 'src/core/loopback-setup.c',
2719 # 'src/core/loopback-setup.h',
2720 # include_directories : [includes, include_directories('src/nspawn')],
2721 # link_with : [libshared],
2722 # dependencies : [libacl,
2726 # install_rpath : rootlibexecdir,
2728 # public_programs += [exe]
2730 # if conf.get('ENABLE_NETWORKD') == 1
2731 # executable('systemd-networkd',
2732 # systemd_networkd_sources,
2733 # include_directories : includes,
2734 # link_with : [libnetworkd_core,
2735 # libsystemd_network,
2738 # dependencies : [threads],
2739 # install_rpath : rootlibexecdir,
2741 # install_dir : rootlibexecdir)
2743 # executable('systemd-networkd-wait-online',
2744 # systemd_networkd_wait_online_sources,
2745 # include_directories : includes,
2746 # link_with : [libnetworkd_core,
2748 # install_rpath : rootlibexecdir,
2750 # install_dir : rootlibexecdir)
2752 # exe = executable('networkctl',
2753 # networkctl_sources,
2754 # include_directories : includes,
2755 # link_with : [libsystemd_network,
2757 # install_rpath : rootlibexecdir,
2759 # install_dir : rootbindir)
2760 # public_programs += [exe]
2763 # executable('systemd-sulogin-shell',
2764 # ['src/sulogin-shell/sulogin-shell.c'],
2765 # include_directories : includes,
2766 # link_with : [libshared],
2767 # install_rpath : rootlibexecdir,
2769 # install_dir : rootlibexecdir)
2771 executable('elogind-uaccess-command',
2772 'src/uaccess-command/uaccess-command.c',
2773 include_directories : includes,
2774 link_with : [liblogind_core,
2776 dependencies: [libacl,
2778 install_rpath : rootlibexecdir,
2780 install_dir : rootlibexecdir)
2783 ############################################################
2785 foreach tuple : tests
2787 link_with = tuple[1].length() > 0 ? tuple[1] : [libshared]
2788 dependencies = tuple[2]
2789 condition = tuple.length() >= 4 ? tuple[3] : ''
2790 type = tuple.length() >= 5 ? tuple[4] : ''
2791 defs = tuple.length() >= 6 ? tuple[5] : []
2792 incs = tuple.length() >= 7 ? tuple[6] : includes
2795 name = sources[0].split('/')[-1].split('.')[0]
2796 if type.startswith('timeout=')
2797 timeout = type.split('=')[1].to_int()
2800 if want_tests == 'false'
2801 message('Not compiling @0@ because tests is set to false'.format(name))
2802 elif condition == '' or conf.get(condition) == 1
2806 include_directories : incs,
2807 link_with : link_with,
2808 dependencies : dependencies,
2810 install_rpath : rootlibexecdir,
2811 install : install_tests,
2812 install_dir : join_paths(testsdir, type))
2815 message('@0@ is a manual test'.format(name))
2816 elif type == 'unsafe' and want_tests != 'unsafe'
2817 message('@0@ is an unsafe test'.format(name))
2824 message('Not compiling @0@ because @1@ is not true'.format(name, condition))
2828 #if 0 /// UNNEEDED by elogind
2830 # 'test-libsystemd-sym',
2831 # test_libsystemd_sym_c,
2832 # include_directories : includes,
2833 # link_with : [libsystemd],
2834 # install : install_tests,
2835 # install_dir : testsdir)
2836 # test('test-libsystemd-sym', exe)
2839 # 'test-libsystemd-static-sym',
2840 # test_libsystemd_sym_c,
2841 # include_directories : includes,
2842 # link_with : [install_libsystemd_static],
2843 # dependencies : [threads], # threads is already included in dependencies on the library,
2844 # # but does not seem to get propagated. Add here as a work-around.
2845 # build_by_default : static_libsystemd_pic,
2846 # install : install_tests and static_libsystemd_pic,
2847 # install_dir : testsdir)
2848 # if static_libsystemd_pic
2849 # test('test-libsystemd-static-sym', exe)
2853 # 'test-libudev-sym',
2854 # test_libudev_sym_c,
2855 # include_directories : includes,
2856 # c_args : ['-Wno-deprecated-declarations'],
2857 # link_with : [libudev],
2858 # install : install_tests,
2859 # install_dir : testsdir)
2860 # test('test-libudev-sym', exe)
2863 # 'test-libudev-static-sym',
2864 # test_libudev_sym_c,
2865 # include_directories : includes,
2866 # c_args : ['-Wno-deprecated-declarations'],
2867 # link_with : [install_libudev_static],
2868 # build_by_default : static_libudev_pic,
2869 # install : install_tests and static_libudev_pic,
2870 # install_dir : testsdir)
2871 # if static_libudev_pic
2872 # test('test-libudev-static-sym', exe)
2875 # ############################################################
2879 # foreach tuple : fuzzers
2880 # sources = tuple[0]
2881 # link_with = tuple[1].length() > 0 ? tuple[1] : [libshared]
2882 # dependencies = tuple[2]
2883 # defs = tuple.length() >= 4 ? tuple[3] : []
2884 # incs = tuple.length() >= 5 ? tuple[4] : includes
2887 # dependencies += fuzzing_engine
2889 # sources += 'src/fuzz/fuzz-main.c'
2892 # name = sources[0].split('/')[-1].split('.')[0]
2894 # fuzzer_exes += executable(
2897 # include_directories : [incs, include_directories('src/fuzz')],
2898 # link_with : link_with,
2899 # dependencies : dependencies,
2904 # run_target('fuzzers',
2905 # depends : fuzzer_exes,
2906 # command : ['true'])
2908 # ############################################################
2911 test_libelogind_sym = executable(
2912 'test-libelogind-sym',
2913 test_libelogind_sym_c,
2914 include_directories : includes,
2915 link_with : [libelogind],
2916 install : install_tests,
2917 install_dir : testsdir)
2918 test('test-libelogind-sym',
2919 test_libelogind_sym)
2921 make_directive_index_py = find_program('tools/make-directive-index.py')
2922 make_man_index_py = find_program('tools/make-man-index.py')
2923 xml_helper_py = find_program('tools/xml_helper.py')
2924 #if 0 /// UNNEEDED by elogind
2925 # hwdb_update_sh = find_program('tools/meson-hwdb-update.sh')
2928 # subdir('sysctl.d')
2929 # subdir('sysusers.d')
2930 # subdir('tmpfiles.d')
2936 subdir('shell-completion/bash')
2937 subdir('shell-completion/zsh')
2938 #if 0 /// UNNEEDED by elogind
2940 subdir('doc/sysvinit')
2941 subdir('doc/var-log')
2943 # FIXME: figure out if the warning is true:
2944 # https://github.com/mesonbuild/meson/wiki/Reference-manual#install_subdir
2945 install_subdir('factory/etc',
2946 install_dir : factorydir)
2949 #if 0 /// UNNEEDED by elogind
2950 # install_data('xorg/50-systemd-user.sh',
2951 # install_dir : xinitrcdir)
2952 # install_data('modprobe.d/systemd.conf',
2953 # install_dir : modprobedir)
2955 install_data('LICENSE.GPL2',
2960 #if 0 /// irrelevant for elogind
2961 # 'doc/DISTRO_PORTING',
2962 # 'doc/ENVIRONMENT.md',
2964 # 'doc/TRANSIENT-SETTINGS.md',
2965 # 'doc/TRANSLATORS',
2966 # 'doc/UIDS-GIDS.md',
2968 'src/libelogind/sd-bus/GVARIANT-SERIALIZATION',
2969 install_dir : docdir)
2971 #if 0 /// UNNEEDED by elogind
2972 # meson.add_install_script('sh', '-c', mkdir_p.format(systemdstatedir))
2974 meson.add_install_script('sh', '-c', 'touch $DESTDIR@0@'.format(prefixdir))
2976 ############################################################
2978 meson_check_help = find_program('tools/meson-check-help.sh')
2980 foreach exec : public_programs
2981 name = exec.full_path().split('/')[-1]
2982 test('check-help-' + name,
2984 args : [exec.full_path()])
2987 ############################################################
2989 #if 0 /// fuzz regression tests are not supported by elogind
2990 # # Enable tests for all supported sanitizers
2991 # foreach tuple : sanitizers
2992 # sanitizer = tuple[0]
2995 # have = run_command(check_compilation_sh,
2996 # cc.cmd_array(), '-x', 'c',
2997 # '-fsanitize=@0@'.format(sanitizer),
2998 # '-include', link_test_c).returncode() == 0
2999 # message('@0@ sanitizer supported: @1@'.format(sanitizer, have ? 'yes' : 'no'))
3003 # foreach p : fuzz_regression_tests
3004 # b = p.split('/')[-2]
3005 # c = p.split('/')[-1]
3007 # name = '@0@:@1@'.format(b, sanitizer)
3010 # if want_tests == 'false'
3011 # message('Not compiling @0@ because tests is set to false'.format(name))
3013 # exe = custom_target(
3017 # command : [env, 'ln', '-fs',
3018 # join_paths(build.full_path(), b),
3020 # build_by_default : true)
3022 # message('Not compiling @0@ because slow-tests is set to false'.format(name))
3027 # if want_tests != 'false' and slow_tests
3028 # test('@0@:@1@:@2@'.format(b, c, sanitizer),
3030 # args : [exe.full_path(),
3031 # join_paths(meson.source_root(),
3032 # 'test/fuzz-regressions',
3041 ############################################################
3044 all_files = run_command(
3046 ['--git-dir=@0@/.git'.format(meson.current_source_dir()),
3049 all_files = files(all_files.stdout().split())
3054 command : [env, 'etags', '-o', '@0@/TAGS'.format(meson.current_source_dir())] + all_files)
3058 command : [env, 'ctags', '-o', '@0@/tags'.format(meson.current_source_dir())] + all_files)
3061 #if 0 /// UNNEEDED by elogind
3063 # meson_git_contrib_sh = find_program('tools/meson-git-contrib.sh')
3066 # command : [meson_git_contrib_sh])
3071 git_head = run_command(
3073 ['--git-dir=@0@/.git'.format(meson.current_source_dir()),
3074 'rev-parse', 'HEAD']).stdout().strip()
3075 git_head_short = run_command(
3077 ['--git-dir=@0@/.git'.format(meson.current_source_dir()),
3078 'rev-parse', '--short=7', 'HEAD']).stdout().strip()
3082 command : ['git', 'archive',
3083 '-o', '@0@/systemd-@1@.tar.gz'.format(meson.current_source_dir(),
3085 '--prefix', 'systemd-@0@/'.format(git_head),
3089 ############################################################
3091 meson_check_api_docs_sh = find_program('tools/meson-check-api-docs.sh')
3094 #if 0 /// libudev is external, elogind does not need to document it.
3095 # depends : [man, libsystemd, libudev],
3096 # command : [meson_check_api_docs_sh, libsystemd.full_path(), libudev.full_path()])
3098 depends : [man, libelogind],
3099 command : [meson_check_api_docs_sh, libelogind.full_path()])
3102 ############################################################
3105 '@0@ @1@'.format(meson.project_name(), meson.project_version()),
3107 'split /usr: @0@'.format(split_usr),
3108 'split bin-sbin: @0@'.format(split_bin),
3109 #if 0 /// UNSUPPORTED by elogind
3110 # 'prefix directory: @0@'.format(prefixdir),
3111 # 'rootprefix directory: @0@'.format(rootprefixdir),
3112 # 'sysconf directory: @0@'.format(sysconfdir),
3113 # 'include directory: @0@'.format(includedir),
3114 # 'lib directory: @0@'.format(libdir),
3115 # 'rootlib directory: @0@'.format(rootlibdir),
3116 # 'SysV init scripts: @0@'.format(sysvinit_path),
3117 # 'SysV rc?.d directories: @0@'.format(sysvrcnd_path),
3119 'rootexeclib dir: @0@'.format(rootlibexecdir),
3121 #if 0 /// UNSUPPORTED by elogind
3122 # 'PAM modules directory: @0@'.format(pamlibdir),
3123 # 'PAM configuration directory: @0@'.format(pamconfdir),
3124 # 'RPM macros directory: @0@'.format(rpmmacrosdir),
3125 # 'modprobe.d directory: @0@'.format(modprobedir),
3126 # 'D-Bus policy directory: @0@'.format(dbuspolicydir),
3127 # 'D-Bus session directory: @0@'.format(dbussessionservicedir),
3128 # 'D-Bus system directory: @0@'.format(dbussystemservicedir),
3129 # 'bash completions directory: @0@'.format(bashcompletiondir),
3130 # 'zsh completions directory: @0@'.format(zshcompletiondir),
3131 # 'extra start script: @0@'.format(get_option('rc-local')),
3132 # 'extra stop script: @0@'.format(get_option('halt-local')),
3133 # 'debug shell: @0@ @ @1@'.format(get_option('debug-shell'),
3134 # get_option('debug-tty')),
3136 'TTY GID: @0@'.format(tty_gid),
3137 #if 0 /// UNSUPPORTED by elogind
3138 # 'users GID: @0@'.format(users_gid),
3140 'maximum system UID: @0@'.format(system_uid_max),
3141 'maximum system GID: @0@'.format(system_gid_max),
3142 #if 0 /// UNSUPPORTED by elogind
3143 # 'minimum dynamic UID: @0@'.format(dynamic_uid_min),
3144 # 'maximum dynamic UID: @0@'.format(dynamic_uid_max),
3145 # 'minimum container UID base: @0@'.format(container_uid_base_min),
3146 # 'maximum container UID base: @0@'.format(container_uid_base_max),
3147 # '/dev/kvm access mode: @0@'.format(get_option('dev-kvm-mode')),
3148 # 'render group access mode: @0@'.format(get_option('group-render-mode')),
3149 # 'certificate root directory: @0@'.format(get_option('certificate-root')),
3150 # 'support URL: @0@'.format(support_url),
3151 # 'nobody user name: @0@'.format(nobody_user),
3152 # 'nobody group name: @0@'.format(nobody_group),
3153 # 'fallback hostname: @0@'.format(get_option('fallback-hostname')),
3154 # 'symbolic gateway hostnames: @0@'.format(', '.join(gateway_hostnames)),
3156 # 'default DNSSEC mode: @0@'.format(default_dnssec),
3157 # 'default cgroup hierarchy: @0@'.format(default_hierarchy),
3159 'default KillUserProcesses setting: @0@'.format(kill_user_processes)]
3161 #if 0 /// UNSUPPORTED by elogind
3162 # alt_dns_servers = '\n '.join(dns_servers.split(' '))
3163 # alt_ntp_servers = '\n '.join(ntp_servers.split(' '))
3165 # 'default DNS servers: @0@'.format(alt_dns_servers),
3166 # 'default NTP servers: @0@'.format(alt_ntp_servers)]
3168 # alt_time_epoch = run_command('date', '-Is', '-u', '-d',
3169 # '@@0@'.format(time_epoch)).stdout().strip()
3171 # 'time epoch: @0@ (@1@)'.format(time_epoch, alt_time_epoch)]
3175 # CFLAGS: ${OUR_CFLAGS} ${CFLAGS}
3176 # CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
3177 # LDFLAGS: ${OUR_LDFLAGS} ${LDFLAGS}
3179 #if 0 /// UNNEEDED by elogind
3180 # if conf.get('ENABLE_EFI') == 1
3182 # 'efi arch: @0@'.format(efi_arch)]
3186 # 'EFI machine type: @0@'.format(EFI_MACHINE_TYPE_NAME),
3187 # 'EFI CC @0@'.format(efi_cc),
3188 # 'EFI lib directory: @0@'.format(efi_libdir),
3189 # 'EFI lds directory: @0@'.format(efi_ldsdir),
3190 # 'EFI include directory: @0@'.format(efi_incdir)]
3199 #if 0 /// UNNEEDED by elogind
3200 # ['libcryptsetup'],
3204 #if 0 /// UNNEEDED by elogind
3209 #if 0 /// UNNEEDED by elogind
3213 #if 0 /// UNNEEDED by elogind
3220 #if 0 /// UNNEEDED by elogind
3236 # ['environment.d'],
3254 ['legacy pkla', install_polkit_pkla],
3255 #if 0 /// UNNEEDED by elogind
3257 # ['gnu-efi', have_gnu_efi],
3265 #if 0 /// UNNEEDED by elogind
3266 # ['nss-myhostname', conf.get('ENABLE_MYHOSTNAME') == 1],
3270 ['man pages', want_man],
3271 ['html pages', want_html],
3272 ['man page indices', want_man and have_lxml],
3273 #if 0 /// UNNEEDED by elogind
3277 #if 0 /// UNNEEDED by elogind
3280 # ['adm group', get_option('adm-group')],
3281 # ['wheel group', get_option('wheel-group')],
3283 # ['valgrind', conf.get('VALGRIND') == 1],
3288 ['debug mmap cache'],
3291 if tuple.length() >= 2
3294 ident1 = 'HAVE_' + tuple[0].underscorify().to_upper()
3295 ident2 = 'ENABLE_' + tuple[0].underscorify().to_upper()
3296 cond = conf.get(ident1, 0) == 1 or conf.get(ident2, 0) == 1
3301 missing += [tuple[0]]
3307 'enabled features: @0@'.format(', '.join(found)),
3309 'disabled features: @0@'.format(', '.join(missing)),
3311 message('\n '.join(status))
3313 if rootprefixdir != rootprefix_default
3315 'Note that the installation prefix was changed to "@0@".\n'.format(rootprefixdir) +
3316 'elogind used fixed names for unit file directories and other paths, so anything\n' +
3317 'except the default ("@0@") is strongly discouraged.'.format(rootprefix_default))