You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
4218 lines
157 KiB
4218 lines
157 KiB
# SPDX-License-Identifier: LGPL-2.1+
|
|
|
|
project('elogind', 'c',
|
|
version : '246.9',
|
|
license : 'LGPLv2+',
|
|
default_options: [
|
|
'c_std=gnu99',
|
|
'prefix=/usr',
|
|
'sysconfdir=/etc',
|
|
'localstatedir=/var',
|
|
'warning_level=2',
|
|
],
|
|
meson_version : '>= 0.46',
|
|
)
|
|
|
|
libsystemd_version = '0.29.0'
|
|
#if 0 /// UNNEEDED by elogind - libudev is external
|
|
# libudev_version = '1.6.18'
|
|
#endif // 0
|
|
|
|
# We need the same data in two different formats, ugh!
|
|
# Also, for hysterical reasons, we use different variable
|
|
# names, sometimes. Not all variables are included in every
|
|
# set. Ugh, ugh, ugh!
|
|
conf = configuration_data()
|
|
conf.set('PROJECT_VERSION', meson.project_version(),
|
|
description : 'Numerical project version (used where a simple number is expected)')
|
|
|
|
substs = configuration_data()
|
|
#if 0 /// Set elogind Package PROJECT_URL
|
|
# substs.set('PROJECT_URL', 'https://www.freedesktop.org/wiki/Software/systemd')
|
|
#else // 0
|
|
substs.set('PROJECT_URL', 'https://github.com/elogind/elogind')
|
|
#endif // 0
|
|
substs.set('PROJECT_VERSION', meson.project_version(),
|
|
description : 'Numerical project version (used where a simple number is expected)')
|
|
|
|
# This is to be used instead of meson.source_root(), as the latter will return
|
|
# the wrong result when elogind is being built as a meson subproject
|
|
project_source_root = meson.current_source_dir()
|
|
project_build_root = meson.current_build_dir()
|
|
relative_source_path = run_command('realpath',
|
|
'--relative-to=@0@'.format(project_build_root),
|
|
project_source_root).stdout().strip()
|
|
conf.set_quoted('RELATIVE_SOURCE_PATH', relative_source_path)
|
|
|
|
#if 0 /// fuzz regression tests are not supported by elogind
|
|
# want_ossfuzz = get_option('oss-fuzz')
|
|
# want_libfuzzer = get_option('llvm-fuzz')
|
|
# if want_ossfuzz + want_libfuzzer > 1
|
|
# error('only one of oss-fuzz or llvm-fuzz can be specified')
|
|
# endif
|
|
#
|
|
# skip_deps = want_ossfuzz or want_libfuzzer
|
|
# fuzzer_build = want_ossfuzz or want_libfuzzer
|
|
#else // 0
|
|
skip_deps = false
|
|
#endif // 0
|
|
|
|
#####################################################################
|
|
#if 0 /// elogind does not need this
|
|
#
|
|
# # Try to install the git pre-commit hook
|
|
# add_git_hook_sh = find_program('tools/add-git-hook.sh', required : false)
|
|
# if add_git_hook_sh.found()
|
|
# git_hook = run_command(add_git_hook_sh)
|
|
# if git_hook.returncode() == 0
|
|
# message(git_hook.stdout().strip())
|
|
# endif
|
|
# endif
|
|
#else // 0
|
|
# elogind Note: We use precompiler masks for two reasons:
|
|
# 1) The masking is consistent with the sources
|
|
# 2) The git patch creator we use for preparing upstream patches
|
|
# manipulates commits to not take those masks out. Therefore
|
|
# it can be used to add commits updating the meson files, too.
|
|
#endif // 0
|
|
|
|
#####################################################################
|
|
|
|
if get_option('split-usr') == 'auto'
|
|
split_usr = run_command('test', '-L', '/bin').returncode() != 0
|
|
else
|
|
split_usr = get_option('split-usr') == 'true'
|
|
endif
|
|
conf.set10('HAVE_SPLIT_USR', split_usr,
|
|
description : '/usr/bin and /bin directories are separate')
|
|
|
|
if get_option('split-bin') == 'auto'
|
|
split_bin = run_command('test', '-L', '/usr/sbin').returncode() != 0
|
|
else
|
|
split_bin = get_option('split-bin') == 'true'
|
|
endif
|
|
conf.set10('HAVE_SPLIT_BIN', split_bin,
|
|
description : 'bin and sbin directories are separate')
|
|
|
|
rootprefixdir = get_option('rootprefix')
|
|
# Unusual rootprefixdir values are used by some distros
|
|
# (see https://github.com/systemd/systemd/pull/7461).
|
|
rootprefix_default = split_usr ? '/' : '/usr'
|
|
if rootprefixdir == ''
|
|
rootprefixdir = rootprefix_default
|
|
endif
|
|
rootprefixdir_noslash = rootprefixdir == '/' ? '' : rootprefixdir
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# have_standalone_binaries = get_option('standalone-binaries')
|
|
#
|
|
# sysvinit_path = get_option('sysvinit-path')
|
|
# sysvrcnd_path = get_option('sysvrcnd-path')
|
|
# conf.set10('HAVE_SYSV_COMPAT', sysvinit_path != '' and sysvrcnd_path != '',
|
|
# description : 'SysV init scripts and rcN.d links are supported')
|
|
#
|
|
# if get_option('hibernate') and not get_option('initrd')
|
|
# error('hibernate depends on initrd')
|
|
# endif
|
|
#
|
|
# conf.set10('BUMP_PROC_SYS_FS_FILE_MAX', get_option('bump-proc-sys-fs-file-max'))
|
|
# conf.set10('BUMP_PROC_SYS_FS_NR_OPEN', get_option('bump-proc-sys-fs-nr-open'))
|
|
#endif // 0
|
|
conf.set('HIGH_RLIMIT_NOFILE', 512*1024)
|
|
|
|
# join_paths ignores the preceding arguments if an absolute component is
|
|
# encountered, so this should canonicalize various paths when they are
|
|
# absolute or relative.
|
|
prefixdir = get_option('prefix')
|
|
if not prefixdir.startswith('/')
|
|
error('Prefix is not absolute: "@0@"'.format(prefixdir))
|
|
endif
|
|
bindir = join_paths(prefixdir, get_option('bindir'))
|
|
libdir = join_paths(prefixdir, get_option('libdir'))
|
|
sysconfdir = join_paths(prefixdir, get_option('sysconfdir'))
|
|
includedir = join_paths(prefixdir, get_option('includedir'))
|
|
datadir = join_paths(prefixdir, get_option('datadir'))
|
|
localstatedir = join_paths('/', get_option('localstatedir'))
|
|
|
|
rootbindir = join_paths(rootprefixdir, 'bin')
|
|
rootsbindir = join_paths(rootprefixdir, split_bin ? 'sbin' : 'bin')
|
|
#if 0 /// elogind has a different default
|
|
# rootlibexecdir = join_paths(rootprefixdir, 'lib/systemd')
|
|
#else // 0
|
|
rootlibexecdir = get_option('rootlibexecdir')
|
|
rootlibexecdir = rootlibexecdir != '' ? rootlibexecdir : join_paths(rootprefixdir, 'lib/elogind')
|
|
#endif // 0
|
|
|
|
rootlibdir = get_option('rootlibdir')
|
|
if rootlibdir == ''
|
|
rootlibdir = join_paths(rootprefixdir, libdir.split('/')[-1])
|
|
endif
|
|
|
|
# Dirs of external packages
|
|
pkgconfigdatadir = get_option('pkgconfigdatadir') == '' ? join_paths(datadir, 'pkgconfig') : get_option('pkgconfigdatadir')
|
|
pkgconfiglibdir = get_option('pkgconfiglibdir') == '' ? join_paths(libdir, 'pkgconfig') : get_option('pkgconfiglibdir')
|
|
polkitpolicydir = join_paths(datadir, 'polkit-1/actions')
|
|
polkitrulesdir = join_paths(datadir, 'polkit-1/rules.d')
|
|
polkitpkladir = join_paths(localstatedir, 'lib/polkit-1/localauthority/10-vendor.d')
|
|
#if 0 /// UNNEEDED by elogind
|
|
# xinitrcdir = join_paths(sysconfdir, 'X11/xinit/xinitrc.d')
|
|
# rpmmacrosdir = get_option('rpmmacrosdir')
|
|
# if rpmmacrosdir != 'no'
|
|
# rpmmacrosdir = join_paths(prefixdir, rpmmacrosdir)
|
|
# endif
|
|
#endif // 0
|
|
modprobedir = join_paths(rootprefixdir, 'lib/modprobe.d')
|
|
|
|
# Our own paths
|
|
#if 0 /// elogind has a bit different layout and does not need all of theses
|
|
# pkgdatadir = join_paths(datadir, 'systemd')
|
|
# environmentdir = join_paths(prefixdir, 'lib/environment.d')
|
|
# pkgsysconfdir = join_paths(sysconfdir, 'systemd')
|
|
# userunitdir = join_paths(prefixdir, 'lib/systemd/user')
|
|
# userpresetdir = join_paths(prefixdir, 'lib/systemd/user-preset')
|
|
# tmpfilesdir = join_paths(prefixdir, 'lib/tmpfiles.d')
|
|
# sysusersdir = join_paths(prefixdir, 'lib/sysusers.d')
|
|
# sysctldir = join_paths(prefixdir, 'lib/sysctl.d')
|
|
# binfmtdir = join_paths(prefixdir, 'lib/binfmt.d')
|
|
# modulesloaddir = join_paths(prefixdir, 'lib/modules-load.d')
|
|
# networkdir = join_paths(rootprefixdir, 'lib/systemd/network')
|
|
# pkgincludedir = join_paths(includedir, 'systemd')
|
|
# systemgeneratordir = join_paths(rootlibexecdir, 'system-generators')
|
|
# usergeneratordir = join_paths(prefixdir, 'lib/systemd/user-generators')
|
|
# systemenvgeneratordir = join_paths(prefixdir, 'lib/systemd/system-environment-generators')
|
|
# userenvgeneratordir = join_paths(prefixdir, 'lib/systemd/user-environment-generators')
|
|
# systemshutdowndir = join_paths(rootlibexecdir, 'system-shutdown')
|
|
# systemsleepdir = join_paths(rootlibexecdir, 'system-sleep')
|
|
# systemunitdir = join_paths(rootprefixdir, 'lib/systemd/system')
|
|
# systempresetdir = join_paths(rootprefixdir, 'lib/systemd/system-preset')
|
|
# udevlibexecdir = join_paths(rootprefixdir, 'lib/udev')
|
|
# udevrulesdir = join_paths(udevlibexecdir, 'rules.d')
|
|
# udevhwdbdir = join_paths(udevlibexecdir, 'hwdb.d')
|
|
# catalogdir = join_paths(prefixdir, 'lib/systemd/catalog')
|
|
# kernelinstalldir = join_paths(prefixdir, 'lib/kernel/install.d')
|
|
# factorydir = join_paths(datadir, 'factory')
|
|
# bootlibdir = join_paths(prefixdir, 'lib/systemd/boot/efi')
|
|
# testsdir = join_paths(prefixdir, 'lib/systemd/tests')
|
|
# systemdstatedir = join_paths(localstatedir, 'lib/systemd')
|
|
# catalogstatedir = join_paths(systemdstatedir, 'catalog')
|
|
# randomseeddir = join_paths(localstatedir, 'lib/systemd')
|
|
# profiledir = join_paths(rootlibexecdir, 'portable', 'profile')
|
|
# ntpservicelistdir = join_paths(rootprefixdir, 'lib/systemd/ntp-units.d')
|
|
#
|
|
# docdir = get_option('docdir')
|
|
# if docdir == ''
|
|
# docdir = join_paths(datadir, 'doc/systemd')
|
|
# endif
|
|
#else // 0
|
|
pkgdatadir = join_paths(datadir, 'elogind')
|
|
pkgsysconfdir = join_paths(sysconfdir, 'elogind')
|
|
pkgincludedir = join_paths(includedir, 'elogind/systemd')
|
|
systemshutdowndir = join_paths(rootlibexecdir, 'system-shutdown')
|
|
systemsleepdir = join_paths(rootlibexecdir, 'system-sleep')
|
|
|
|
# in elogind, udev is external and thus configurable
|
|
udevlibexecdir = get_option('udevbindir')
|
|
udevlibexecdir = udevlibexecdir != '' ? udevlibexecdir : join_paths(rootprefixdir, 'lib/udev')
|
|
udevrulesdir = get_option('udevrulesdir')
|
|
udevrulesdir = udevrulesdir != '' ? udevrulesdir : join_paths(udevlibexecdir, 'rules.d')
|
|
factorydir = join_paths(datadir, 'factory')
|
|
docdir = get_option('docdir')
|
|
docdir = docdir != '' ? docdir: '-'.join([join_paths(datadir, 'doc/elogind'),
|
|
meson.project_version()])
|
|
testsdir = join_paths(prefixdir, 'lib/elogind/tests')
|
|
randomseeddir = join_paths(localstatedir, 'lib/elogind')
|
|
#endif // 0
|
|
|
|
dbuspolicydir = get_option('dbuspolicydir')
|
|
if dbuspolicydir == ''
|
|
dbuspolicydir = join_paths(datadir, 'dbus-1/system.d')
|
|
endif
|
|
|
|
dbussessionservicedir = get_option('dbussessionservicedir')
|
|
if dbussessionservicedir == ''
|
|
dbussessionservicedir = join_paths(datadir, 'dbus-1/services')
|
|
endif
|
|
|
|
dbussystemservicedir = get_option('dbussystemservicedir')
|
|
if dbussystemservicedir == ''
|
|
dbussystemservicedir = join_paths(datadir, 'dbus-1/system-services')
|
|
endif
|
|
|
|
#if 1 /// Will elogind find system_bus_socket in /run/dbus or /var/run/dbus ?
|
|
varrunissymllink = run_command('test', '-L', '/var/run').returncode() == 0
|
|
message('Setting VARRUN_IS_SYMLINK to: @0@'.format(varrunissymllink))
|
|
conf.set10('VARRUN_IS_SYMLINK', varrunissymllink)
|
|
#endif // 1
|
|
pamlibdir = get_option('pamlibdir')
|
|
if pamlibdir == ''
|
|
pamlibdir = join_paths(rootlibdir, 'security')
|
|
endif
|
|
|
|
pamconfdir = get_option('pamconfdir')
|
|
if pamconfdir == ''
|
|
pamconfdir = join_paths(sysconfdir, 'pam.d')
|
|
endif
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# memory_accounting_default = get_option('memory-accounting-default')
|
|
# status_unit_format_default = get_option('status-unit-format-default')
|
|
#endif // 0
|
|
|
|
conf.set_quoted('PKGSYSCONFDIR', pkgsysconfdir)
|
|
#if 0 /// UNNEEDED by elogind
|
|
# conf.set_quoted('SYSTEM_CONFIG_UNIT_DIR', join_paths(pkgsysconfdir, 'system'))
|
|
# conf.set_quoted('SYSTEM_DATA_UNIT_PATH', systemunitdir)
|
|
# conf.set_quoted('SYSTEM_SYSVINIT_PATH', sysvinit_path)
|
|
# conf.set_quoted('SYSTEM_SYSVRCND_PATH', sysvrcnd_path)
|
|
# conf.set_quoted('RC_LOCAL_PATH', get_option('rc-local'))
|
|
#
|
|
# conf.set('ANSI_OK_COLOR', 'ANSI_' + get_option('ok-color').underscorify().to_upper())
|
|
#
|
|
# conf.set_quoted('USER_CONFIG_UNIT_DIR', join_paths(pkgsysconfdir, 'user'))
|
|
# conf.set_quoted('USER_DATA_UNIT_DIR', userunitdir)
|
|
# conf.set_quoted('CERTIFICATE_ROOT', get_option('certificate-root'))
|
|
# conf.set_quoted('CATALOG_DATABASE', join_paths(catalogstatedir, 'database'))
|
|
# conf.set_quoted('SYSTEMD_CGROUP_AGENT_PATH', join_paths(rootlibexecdir, 'systemd-cgroups-agent'))
|
|
# conf.set_quoted('SYSTEMD_BINARY_PATH', join_paths(rootlibexecdir, 'systemd'))
|
|
# conf.set_quoted('SYSTEMD_FSCK_PATH', join_paths(rootlibexecdir, 'systemd-fsck'))
|
|
# conf.set_quoted('SYSTEMD_MAKEFS_PATH', join_paths(rootlibexecdir, 'systemd-makefs'))
|
|
# conf.set_quoted('SYSTEMD_GROWFS_PATH', join_paths(rootlibexecdir, 'systemd-growfs'))
|
|
# conf.set_quoted('SYSTEMD_SHUTDOWN_BINARY_PATH', join_paths(rootlibexecdir, 'systemd-shutdown'))
|
|
# conf.set_quoted('SYSTEMCTL_BINARY_PATH', join_paths(rootbindir, 'systemctl'))
|
|
# conf.set_quoted('SYSTEMD_TTY_ASK_PASSWORD_AGENT_BINARY_PATH', join_paths(rootbindir, 'systemd-tty-ask-password-agent'))
|
|
# conf.set_quoted('SYSTEMD_STDIO_BRIDGE_BINARY_PATH', join_paths(bindir, 'systemd-stdio-bridge'))
|
|
#else // 0
|
|
conf.set_quoted('SYSTEMD_CGROUP_AGENT_PATH', join_paths(rootlibexecdir, 'elogind-cgroups-agent'))
|
|
conf.set_quoted('ELOGIND_UACCESS_COMMAND_PATH', join_paths(rootlibexecdir, 'elogind-uaccess-command'))
|
|
conf.set_quoted('SYSTEMD_BINARY_PATH', join_paths(rootlibexecdir, 'elogind'))
|
|
#endif // 0
|
|
conf.set_quoted('ROOTPREFIX', rootprefixdir)
|
|
conf.set_quoted('ROOTPREFIX_NOSLASH', rootprefixdir_noslash)
|
|
#if 0 /// UNNEEDED by elogind
|
|
# conf.set_quoted('RANDOM_SEED_DIR', randomseeddir)
|
|
# conf.set_quoted('RANDOM_SEED', join_paths(randomseeddir, 'random-seed'))
|
|
# conf.set_quoted('SYSTEMD_CRYPTSETUP_PATH', join_paths(rootlibexecdir, 'systemd-cryptsetup'))
|
|
# conf.set_quoted('SYSTEM_GENERATOR_DIR', systemgeneratordir)
|
|
# conf.set_quoted('USER_GENERATOR_DIR', usergeneratordir)
|
|
# conf.set_quoted('SYSTEM_ENV_GENERATOR_DIR', systemenvgeneratordir)
|
|
# conf.set_quoted('USER_ENV_GENERATOR_DIR', userenvgeneratordir)
|
|
#endif // 0
|
|
conf.set_quoted('SYSTEM_SHUTDOWN_PATH', systemshutdowndir)
|
|
conf.set_quoted('SYSTEM_SLEEP_PATH', systemsleepdir)
|
|
#if 0 /// UNNEEDED by elogind
|
|
# conf.set_quoted('SYSTEMD_KBD_MODEL_MAP', join_paths(pkgdatadir, 'kbd-model-map'))
|
|
# conf.set_quoted('SYSTEMD_LANGUAGE_FALLBACK_MAP', join_paths(pkgdatadir, 'language-fallback-map'))
|
|
# conf.set_quoted('SYSTEMD_TEST_DATA', join_paths(testsdir, 'testdata'))
|
|
# conf.set_quoted('SYSTEMD_CATALOG_DIR', catalogdir)
|
|
# conf.set_quoted('UDEVLIBEXECDIR', udevlibexecdir)
|
|
#endif // 0
|
|
conf.set_quoted('POLKIT_AGENT_BINARY_PATH', join_paths(bindir, 'pkttyagent'))
|
|
conf.set_quoted('LIBDIR', libdir)
|
|
conf.set_quoted('ROOTLIBDIR', rootlibdir)
|
|
conf.set_quoted('ROOTLIBEXECDIR', rootlibexecdir)
|
|
#if 0 /// UNNEEDED by elogind
|
|
# conf.set_quoted('BOOTLIBDIR', bootlibdir)
|
|
# conf.set_quoted('SYSTEMD_PULL_PATH', join_paths(rootlibexecdir, 'systemd-pull'))
|
|
# conf.set_quoted('SYSTEMD_IMPORT_PATH', join_paths(rootlibexecdir, 'systemd-import'))
|
|
# conf.set_quoted('SYSTEMD_IMPORT_FS_PATH', join_paths(rootlibexecdir, 'systemd-import-fs'))
|
|
# conf.set_quoted('SYSTEMD_EXPORT_PATH', join_paths(rootlibexecdir, 'systemd-export'))
|
|
# conf.set_quoted('VENDOR_KEYRING_PATH', join_paths(rootlibexecdir, 'import-pubring.gpg'))
|
|
# conf.set_quoted('USER_KEYRING_PATH', join_paths(pkgsysconfdir, 'import-pubring.gpg'))
|
|
# conf.set_quoted('DOCUMENT_ROOT', join_paths(pkgdatadir, 'gatewayd'))
|
|
# conf.set_quoted('SYSTEMD_HOMEWORK_PATH', join_paths(rootlibexecdir, 'systemd-homework'))
|
|
# conf.set_quoted('SYSTEMD_USERWORK_PATH', join_paths(rootlibexecdir, 'systemd-userwork'))
|
|
# conf.set10('MEMORY_ACCOUNTING_DEFAULT', memory_accounting_default)
|
|
# conf.set_quoted('MEMORY_ACCOUNTING_DEFAULT_YES_NO', memory_accounting_default ? 'yes' : 'no')
|
|
# conf.set('STATUS_UNIT_FORMAT_DEFAULT', 'STATUS_UNIT_FORMAT_' + status_unit_format_default.to_upper())
|
|
#endif // 0
|
|
|
|
substs.set('prefix', prefixdir)
|
|
substs.set('rootprefix', rootprefixdir)
|
|
substs.set('rootprefix_noslash', rootprefixdir_noslash)
|
|
substs.set('exec_prefix', prefixdir)
|
|
substs.set('libdir', libdir)
|
|
substs.set('rootlibdir', rootlibdir)
|
|
substs.set('includedir', includedir)
|
|
substs.set('sysconfdir', sysconfdir)
|
|
substs.set('bindir', bindir)
|
|
substs.set('rootbindir', rootbindir)
|
|
substs.set('rootlibexecdir', rootlibexecdir)
|
|
#if 0 /// UNNEEDED by elogind
|
|
# substs.set('systemunitdir', systemunitdir)
|
|
# substs.set('userunitdir', userunitdir)
|
|
# substs.set('systempresetdir', systempresetdir)
|
|
# substs.set('userpresetdir', userpresetdir)
|
|
# substs.set('udevhwdbdir', udevhwdbdir)
|
|
#endif // 0
|
|
substs.set('udevrulesdir', udevrulesdir)
|
|
substs.set('udevlibexecdir', udevlibexecdir)
|
|
#if 0 /// UNNEEDED by elogind
|
|
# substs.set('environmentdir', environmentdir)
|
|
# substs.set('catalogdir', catalogdir)
|
|
# substs.set('tmpfilesdir', tmpfilesdir)
|
|
# substs.set('sysusersdir', sysusersdir)
|
|
# substs.set('sysctldir', sysctldir)
|
|
# substs.set('binfmtdir', binfmtdir)
|
|
# substs.set('modulesloaddir', modulesloaddir)
|
|
# substs.set('modprobedir', modprobedir)
|
|
# substs.set('systemgeneratordir', systemgeneratordir)
|
|
# substs.set('usergeneratordir', usergeneratordir)
|
|
# substs.set('systemenvgeneratordir', systemenvgeneratordir)
|
|
# substs.set('userenvgeneratordir', userenvgeneratordir)
|
|
#endif // 0
|
|
substs.set('systemshutdowndir', systemshutdowndir)
|
|
substs.set('systemsleepdir', systemsleepdir)
|
|
#if 0 /// UNNEEDED by elogind
|
|
# substs.set('CERTIFICATEROOT', get_option('certificate-root'))
|
|
# substs.set('RANDOM_SEED', join_paths(randomseeddir, 'random-seed'))
|
|
# substs.set('SYSTEM_SYSVINIT_PATH', sysvinit_path)
|
|
# substs.set('SYSTEM_SYSVRCND_PATH', sysvrcnd_path)
|
|
# substs.set('RC_LOCAL_PATH', get_option('rc-local'))
|
|
# substs.set('MEMORY_ACCOUNTING_DEFAULT', memory_accounting_default ? 'yes' : 'no')
|
|
# substs.set('STATUS_UNIT_FORMAT_DEFAULT', status_unit_format_default)
|
|
#endif // 0
|
|
substs.set('HIGH_RLIMIT_NOFILE', conf.get('HIGH_RLIMIT_NOFILE'))
|
|
substs.set('BUILD_ROOT', project_build_root)
|
|
|
|
#####################################################################
|
|
|
|
cc = meson.get_compiler('c')
|
|
pkgconfig = import('pkgconfig')
|
|
check_compilation_sh = find_program('tools/check-compilation.sh')
|
|
meson_build_sh = find_program('tools/meson-build.sh')
|
|
|
|
want_tests = get_option('tests')
|
|
slow_tests = want_tests != 'false' and get_option('slow-tests')
|
|
fuzz_tests = want_tests != 'false' and get_option('fuzz-tests')
|
|
install_tests = get_option('install-tests')
|
|
|
|
#if 0 /// elogind does not support fuzz stress testing (, yet).
|
|
# if add_languages('cpp', required : fuzzer_build)
|
|
# # Used only for tests
|
|
# cxx = meson.get_compiler('cpp')
|
|
# cxx_cmd = ' '.join(cxx.cmd_array())
|
|
# else
|
|
# cxx_cmd = ''
|
|
# endif
|
|
#
|
|
# if want_libfuzzer
|
|
# fuzzing_engine = meson.get_compiler('cpp').find_library('Fuzzer', required : false)
|
|
# if fuzzing_engine.found()
|
|
# add_project_arguments('-fsanitize-coverage=trace-pc-guard,trace-cmp', language : 'c')
|
|
# elif cc.has_argument('-fsanitize=fuzzer-no-link')
|
|
# add_project_arguments('-fsanitize=fuzzer-no-link', language : 'c')
|
|
# else
|
|
# error('Looks like neither libFuzzer nor -fsanitize=fuzzer-no-link is supported')
|
|
# endif
|
|
# elif want_ossfuzz
|
|
# fuzzing_engine = meson.get_compiler('cpp').find_library('FuzzingEngine')
|
|
# endif
|
|
#else // 0
|
|
fuzzer_build = false
|
|
cxx_cmd = ''
|
|
#endif // 0
|
|
|
|
# Those generate many false positives, and we do not want to change the code to
|
|
# avoid them.
|
|
basic_disabled_warnings = [
|
|
'-Wno-unused-parameter',
|
|
'-Wno-missing-field-initializers',
|
|
'-Wno-unused-result',
|
|
'-Wno-format-signedness',
|
|
]
|
|
|
|
possible_cc_flags = [
|
|
'-Werror=undef',
|
|
'-Wlogical-op',
|
|
'-Wmissing-include-dirs',
|
|
'-Wold-style-definition',
|
|
'-Wpointer-arith',
|
|
'-Winit-self',
|
|
'-Wfloat-equal',
|
|
'-Wsuggest-attribute=noreturn',
|
|
'-Werror=missing-prototypes',
|
|
'-Werror=implicit-function-declaration',
|
|
'-Werror=missing-declarations',
|
|
'-Werror=return-type',
|
|
'-Werror=incompatible-pointer-types',
|
|
'-Werror=format=2',
|
|
'-Wstrict-prototypes',
|
|
'-Wredundant-decls',
|
|
'-Wmissing-noreturn',
|
|
'-Wimplicit-fallthrough=5',
|
|
'-Wshadow',
|
|
'-Wendif-labels',
|
|
'-Wstrict-aliasing=2',
|
|
'-Wwrite-strings',
|
|
'-Werror=overflow',
|
|
'-Werror=shift-count-overflow',
|
|
'-Werror=shift-overflow=2',
|
|
'-Wdate-time',
|
|
'-Wnested-externs',
|
|
|
|
# negative arguments are correctly detected starting with meson 0.46.
|
|
'-Wno-error=#warnings', # clang
|
|
'-Wno-string-plus-int', # clang
|
|
|
|
# Disable -Wmaybe-uninitialized, since it's noisy on gcc 8 with
|
|
# optimizations enabled, producing essentially false positives.
|
|
'-Wno-maybe-uninitialized',
|
|
|
|
'-ffast-math',
|
|
'-fno-common',
|
|
'-fdiagnostics-show-option',
|
|
'-fno-strict-aliasing',
|
|
'-fvisibility=hidden',
|
|
'-fstack-protector',
|
|
'-fstack-protector-strong',
|
|
'--param=ssp-buffer-size=4',
|
|
]
|
|
|
|
# --as-needed and --no-undefined are provided by meson by default,
|
|
# run mesonconf to see what is enabled
|
|
possible_link_flags = [
|
|
'-Wl,-z,relro',
|
|
'-Wl,-z,now',
|
|
'-fstack-protector',
|
|
]
|
|
|
|
if cc.get_id() == 'clang'
|
|
possible_cc_flags += [
|
|
'-Wno-typedef-redefinition',
|
|
'-Wno-gnu-variable-sized-type-not-at-end',
|
|
]
|
|
endif
|
|
|
|
if get_option('buildtype') != 'debug'
|
|
possible_cc_flags += [
|
|
'-ffunction-sections',
|
|
'-fdata-sections',
|
|
]
|
|
|
|
possible_link_flags += '-Wl,--gc-sections'
|
|
endif
|
|
|
|
add_project_arguments(cc.get_supported_arguments(basic_disabled_warnings), language : 'c')
|
|
add_project_arguments(cc.get_supported_arguments(possible_cc_flags), language : 'c')
|
|
add_project_link_arguments(cc.get_supported_link_arguments(possible_link_flags), language : 'c')
|
|
|
|
have = cc.has_argument('-Wzero-length-bounds')
|
|
conf.set10('HAVE_ZERO_LENGTH_BOUNDS', have)
|
|
|
|
if cc.compiles('''
|
|
#include <time.h>
|
|
#include <inttypes.h>
|
|
typedef uint64_t usec_t;
|
|
usec_t now(clockid_t clock);
|
|
int main(void) {
|
|
struct timespec now;
|
|
return 0;
|
|
}
|
|
''', args: '-Werror=shadow', name : '-Werror=shadow with local shadowing')
|
|
add_project_arguments('-Werror=shadow', language : 'c')
|
|
endif
|
|
|
|
if cxx_cmd != ''
|
|
add_project_arguments(cxx.get_supported_arguments(basic_disabled_warnings), language : 'cpp')
|
|
endif
|
|
|
|
cpp = ' '.join(cc.cmd_array()) + ' -E'
|
|
|
|
has_wstringop_truncation = cc.has_argument('-Wstringop-truncation')
|
|
|
|
#####################################################################
|
|
# compilation result tests
|
|
|
|
conf.set('_GNU_SOURCE', true)
|
|
conf.set('__SANE_USERSPACE_TYPES__', true)
|
|
conf.set10('HAVE_WSTRINGOP_TRUNCATION', has_wstringop_truncation)
|
|
|
|
conf.set('SIZEOF_DEV_T', cc.sizeof('dev_t', prefix : '#include <sys/types.h>'))
|
|
conf.set('SIZEOF_INO_T', cc.sizeof('ino_t', prefix : '#include <sys/types.h>'))
|
|
conf.set('SIZEOF_TIME_T', cc.sizeof('time_t', prefix : '#include <sys/time.h>'))
|
|
conf.set('SIZEOF_RLIM_T', cc.sizeof('rlim_t', prefix : '#include <sys/resource.h>'))
|
|
|
|
decl_headers = '''
|
|
#if 1 /// elogind supports system where _GNU_SOURCE is not set in ENV
|
|
# ifndef _GNU_SOURCE
|
|
# define _GNU_SOURCE 1
|
|
# endif // _GNU_SOURCE
|
|
#endif // 1
|
|
#include <uchar.h>
|
|
#include <sys/stat.h>
|
|
'''
|
|
|
|
foreach decl : ['char16_t',
|
|
'char32_t',
|
|
'struct statx',
|
|
]
|
|
|
|
# We get -1 if the size cannot be determined
|
|
have = cc.sizeof(decl, prefix : decl_headers, args : '-D_GNU_SOURCE') > 0
|
|
|
|
if decl == 'struct statx'
|
|
if have
|
|
want_linux_stat_h = false
|
|
else
|
|
have = cc.sizeof(decl,
|
|
prefix : decl_headers + '#include <linux/stat.h>',
|
|
args : '-D_GNU_SOURCE') > 0
|
|
want_linux_stat_h = have
|
|
endif
|
|
endif
|
|
|
|
conf.set10('HAVE_' + decl.underscorify().to_upper(), have)
|
|
endforeach
|
|
|
|
conf.set10('WANT_LINUX_STAT_H', want_linux_stat_h)
|
|
|
|
#if 0 /// elogind does not need any of this networking stuff
|
|
#endif // 0
|
|
foreach ident : ['secure_getenv', '__secure_getenv']
|
|
conf.set10('HAVE_' + ident.to_upper(), cc.has_function(ident))
|
|
endforeach
|
|
|
|
foreach ident : [
|
|
['memfd_create', '''#include <sys/mman.h>'''],
|
|
['gettid', '''#include <sys/types.h>
|
|
#include <unistd.h>'''],
|
|
#if 0 /// Not used in elogind
|
|
# ['pivot_root', '''#include <stdlib.h>
|
|
# #include <unistd.h>'''], # no known header declares pivot_root
|
|
#endif // 0
|
|
#if 1 /// elogind supports musl, but upstream refuses to add qsort_r
|
|
['qsort_r', '''#include <stdlib.h>'''],
|
|
#endif // 1
|
|
['name_to_handle_at', '''#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>'''],
|
|
['setns', '''#include <sched.h>'''],
|
|
['renameat2', '''#include <stdio.h>
|
|
#include <fcntl.h>'''],
|
|
['kcmp', '''#include <linux/kcmp.h>'''],
|
|
['keyctl', '''#include <sys/types.h>
|
|
#include <keyutils.h>'''],
|
|
['copy_file_range', '''#include <sys/syscall.h>
|
|
#include <unistd.h>'''],
|
|
['bpf', '''#include <sys/syscall.h>
|
|
#include <unistd.h>'''],
|
|
['statx', '''#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>'''],
|
|
['explicit_bzero' , '''#include <string.h>'''],
|
|
['reallocarray', '''#include <stdlib.h>'''],
|
|
['set_mempolicy', '''#include <stdlib.h>
|
|
#include <unistd.h>'''],
|
|
['get_mempolicy', '''#include <stdlib.h>
|
|
#include <unistd.h>'''],
|
|
['pidfd_send_signal', '''#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <signal.h>
|
|
#include <sys/wait.h>'''],
|
|
['pidfd_open', '''#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <signal.h>
|
|
#include <sys/wait.h>'''],
|
|
['rt_sigqueueinfo', '''#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <signal.h>
|
|
#include <sys/wait.h>'''],
|
|
]
|
|
|
|
have = cc.has_function(ident[0], prefix : ident[1], args : '-D_GNU_SOURCE')
|
|
conf.set10('HAVE_' + ident[0].to_upper(), have)
|
|
endforeach
|
|
|
|
if cc.has_function('getrandom', prefix : '''#include <sys/random.h>''', args : '-D_GNU_SOURCE')
|
|
conf.set10('USE_SYS_RANDOM_H', true)
|
|
conf.set10('HAVE_GETRANDOM', true)
|
|
else
|
|
have = cc.has_function('getrandom', prefix : '''#include <linux/random.h>''')
|
|
conf.set10('USE_SYS_RANDOM_H', false)
|
|
conf.set10('HAVE_GETRANDOM', have)
|
|
endif
|
|
|
|
#####################################################################
|
|
#if 1 /// elogind shall be usable with non-glibc libc variations
|
|
#####################################################################
|
|
# Find out whether program_invocation[_short]_name is supported
|
|
have_pisn = cc.links('''
|
|
#define _GNU_SOURCE 1
|
|
#include <errno.h>
|
|
int main(void) {
|
|
if (program_invocation_name && program_invocation_short_name)
|
|
return 0;
|
|
return 1;
|
|
}
|
|
''', name : 'program_invocation[_short]_name test')
|
|
conf.set10('HAVE_PROGRAM_INVOCATION_NAME', have_pisn,
|
|
description : 'program_invocation[_short]_name is provided by libc')
|
|
|
|
#endif // 1
|
|
|
|
vcs_tagger = [project_source_root + '/tools/meson-vcs-tag.sh',
|
|
project_source_root,
|
|
get_option('version-tag'),
|
|
meson.project_version()]
|
|
|
|
version_h = vcs_tag(
|
|
input : 'src/version/version.h.in',
|
|
output : 'version.h',
|
|
command: vcs_tagger)
|
|
|
|
versiondep = declare_dependency(sources: version_h)
|
|
|
|
sed = find_program('sed')
|
|
awk = find_program('awk')
|
|
m4 = find_program('m4')
|
|
stat = find_program('stat')
|
|
git = find_program('git', required : false)
|
|
env = find_program('env')
|
|
perl = find_program('perl', required : false)
|
|
|
|
#if 0 /// elogind does not use this but needs a tool to symlink its installed headers.
|
|
# meson_make_symlink = project_source_root + '/tools/meson-make-symlink.sh'
|
|
#else // 0
|
|
meson_symlink_headers = meson.source_root() + '/tools/meson-symlink_headers.sh'
|
|
#endif // 0
|
|
mkdir_p = 'mkdir -p $DESTDIR/@0@'
|
|
#if 0 /// unneeded by elogind
|
|
# test_efi_create_disk_sh = find_program('test/test-efi-create-disk.sh')
|
|
# splash_bmp = files('test/splash.bmp')
|
|
#endif // 0
|
|
|
|
# if -Dxxx-path option is found, use that. Otherwise, check in $PATH,
|
|
# /usr/sbin, /sbin, and fall back to the default from middle column.
|
|
#if 0 /// elogind has a bit different list and some adaptions
|
|
# progs = [['quotaon', '/usr/sbin/quotaon' ],
|
|
# ['quotacheck', '/usr/sbin/quotacheck' ],
|
|
# ['kmod', '/usr/bin/kmod' ],
|
|
# ['kexec', '/usr/sbin/kexec' ],
|
|
# ['sulogin', '/usr/sbin/sulogin' ],
|
|
# ['mount', '/usr/bin/mount', 'MOUNT_PATH'],
|
|
# ['umount', '/usr/bin/umount', 'UMOUNT_PATH'],
|
|
# ['loadkeys', '/usr/bin/loadkeys', 'KBD_LOADKEYS'],
|
|
# ['setfont', '/usr/bin/setfont', 'KBD_SETFONT'],
|
|
# ['nologin', '/usr/sbin/nologin', ],
|
|
# ]
|
|
#else // 0
|
|
progs = [['halt', '/sbin/halt' ],
|
|
['kexec', '/usr/sbin/kexec' ],
|
|
['poweroff', '/sbin/poweroff' ],
|
|
['reboot', '/sbin/reboot' ],
|
|
['nologin', '/usr/sbin/nologin' ],
|
|
]
|
|
#endif // 0
|
|
foreach prog : progs
|
|
path = get_option(prog[0] + '-path')
|
|
if path != ''
|
|
message('Using @1@ for @0@'.format(prog[0], path))
|
|
else
|
|
exe = find_program(prog[0],
|
|
'/usr/sbin/' + prog[0],
|
|
'/sbin/' + prog[0],
|
|
required: false)
|
|
path = exe.found() ? exe.path() : prog[1]
|
|
endif
|
|
name = prog.length() > 2 ? prog[2] : prog[0].to_upper()
|
|
conf.set_quoted(name, path)
|
|
substs.set(name, path)
|
|
endforeach
|
|
|
|
#if 0 /// unneeded by elogind
|
|
# conf.set_quoted('TELINIT', get_option('telinit-path'))
|
|
#
|
|
# if run_command('ln', '--relative', '--help').returncode() != 0
|
|
# error('ln does not support --relative (added in coreutils 8.16)')
|
|
# endif
|
|
#endif // 0
|
|
|
|
############################################################
|
|
|
|
gperf = find_program('gperf')
|
|
|
|
gperf_test_format = '''
|
|
#include <string.h>
|
|
const char * in_word_set(const char *, @0@);
|
|
@1@
|
|
'''
|
|
gperf_snippet_format = 'echo foo,bar | @0@ -L ANSI-C'
|
|
gperf_snippet = run_command('sh', '-c', gperf_snippet_format.format(gperf.path()))
|
|
gperf_test = gperf_test_format.format('size_t', gperf_snippet.stdout())
|
|
if cc.compiles(gperf_test)
|
|
gperf_len_type = 'size_t'
|
|
else
|
|
gperf_test = gperf_test_format.format('unsigned', gperf_snippet.stdout())
|
|
if cc.compiles(gperf_test)
|
|
gperf_len_type = 'unsigned'
|
|
else
|
|
error('unable to determine gperf len type')
|
|
endif
|
|
endif
|
|
message('gperf len type is @0@'.format(gperf_len_type))
|
|
conf.set('GPERF_LEN_TYPE', gperf_len_type,
|
|
description : 'The type of gperf "len" parameter')
|
|
|
|
############################################################
|
|
|
|
if not cc.has_header('sys/capability.h')
|
|
error('POSIX caps headers not found')
|
|
endif
|
|
#if 0 /// elogind also needs to check printf.h
|
|
# foreach header : ['crypt.h',
|
|
# 'linux/memfd.h',
|
|
# 'linux/vm_sockets.h',
|
|
# 'sys/auxv.h',
|
|
# 'valgrind/memcheck.h',
|
|
# 'valgrind/valgrind.h',
|
|
# ]
|
|
#
|
|
#else // 0
|
|
foreach header : ['crypt.h',
|
|
'linux/memfd.h',
|
|
'linux/vm_sockets.h',
|
|
'printf.h',
|
|
'sys/auxv.h',
|
|
'valgrind/memcheck.h',
|
|
'valgrind/valgrind.h',
|
|
]
|
|
#endif // 0
|
|
conf.set10('HAVE_' + header.underscorify().to_upper(),
|
|
cc.has_header(header))
|
|
endforeach
|
|
|
|
############################################################
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# fallback_hostname = get_option('fallback-hostname')
|
|
# if fallback_hostname == '' or fallback_hostname[0] == '.' or fallback_hostname[0] == '-'
|
|
# error('Invalid fallback-hostname configuration')
|
|
# # A more extensive test is done in test-hostname-util. Let's catch
|
|
# # the most obvious errors here so we don't fail with an assert later.
|
|
# endif
|
|
# conf.set_quoted('FALLBACK_HOSTNAME', fallback_hostname)
|
|
#
|
|
# conf.set10('ENABLE_COMPAT_GATEWAY_HOSTNAME', get_option('compat-gateway-hostname'))
|
|
# gateway_hostnames = ['_gateway'] + (conf.get('ENABLE_COMPAT_GATEWAY_HOSTNAME') == 1 ? ['gateway'] : [])
|
|
#endif // 0
|
|
|
|
default_hierarchy = get_option('default-hierarchy')
|
|
conf.set_quoted('DEFAULT_HIERARCHY_NAME', default_hierarchy,
|
|
description : 'default cgroup hierarchy as string')
|
|
if default_hierarchy == 'legacy'
|
|
conf.set('DEFAULT_HIERARCHY', 'CGROUP_UNIFIED_NONE')
|
|
elif default_hierarchy == 'hybrid'
|
|
conf.set('DEFAULT_HIERARCHY', 'CGROUP_UNIFIED_SYSTEMD')
|
|
else
|
|
conf.set('DEFAULT_HIERARCHY', 'CGROUP_UNIFIED_ALL')
|
|
endif
|
|
|
|
default_net_naming_scheme = get_option('default-net-naming-scheme')
|
|
conf.set_quoted('DEFAULT_NET_NAMING_SCHEME', default_net_naming_scheme)
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# time_epoch = get_option('time-epoch')
|
|
# if time_epoch == -1
|
|
# time_epoch = run_command('sh', ['-c', 'echo "$SOURCE_DATE_EPOCH"']).stdout().strip()
|
|
# if time_epoch == '' and git.found() and run_command('test', '-e', '.git').returncode() == 0
|
|
# # If we're in a git repository, use the creation time of the latest git tag.
|
|
# latest_tag = run_command('git', 'describe', '--abbrev=0', '--tags').stdout().strip()
|
|
# time_epoch = run_command('git', 'log', '-1', '--format=%at', latest_tag).stdout()
|
|
# endif
|
|
# if time_epoch == ''
|
|
# NEWS = files('NEWS')
|
|
# time_epoch = run_command(stat, '-c', '%Y', NEWS).stdout()
|
|
# endif
|
|
# time_epoch = time_epoch.to_int()
|
|
# endif
|
|
# conf.set('TIME_EPOCH', time_epoch)
|
|
#else // 0
|
|
############################################################
|
|
# elogind needs to know which cgroups controller to follow.
|
|
get_cg_ctrl_sh = find_program('tools/meson-get-cg-controller.sh')
|
|
with_cgroupctrl = get_option('cgroup-controller')
|
|
if with_cgroupctrl == '' or with_cgroupctrl == 'auto'
|
|
with_cgroupctrl = run_command(get_cg_ctrl_sh, []).stdout().strip()
|
|
elif with_cgroupctrl == 'none'
|
|
with_cgroupctrl = 'elogind'
|
|
endif
|
|
|
|
# No controller now is a problem:
|
|
if with_cgroupctrl == ''
|
|
error('Unable to determine cgroup controller, but cgroups support is mandatory!')
|
|
endif
|
|
|
|
conf.set_quoted('SYSTEMD_CGROUP_CONTROLLER', '_'.join(['',with_cgroupctrl]),
|
|
description : 'name of the cgroup controller to use')
|
|
conf.set_quoted('CGROUP_CONTROLLER_NAME', with_cgroupctrl)
|
|
conf.set_quoted('SYSTEMD_CGROUP_CONTROLLER_LEGACY',
|
|
'='.join(['name', with_cgroupctrl]))
|
|
conf.set_quoted('SYSTEMD_CGROUP_CONTROLLER_HYBRID',
|
|
'='.join(['name', with_cgroupctrl]))
|
|
############################################################
|
|
#endif // 0
|
|
|
|
system_uid_max = get_option('system-uid-max')
|
|
if system_uid_max == -1
|
|
system_uid_max = run_command(
|
|
awk,
|
|
'/^\s*SYS_UID_MAX\s+/ { uid=$2 } END { print uid }',
|
|
'/etc/login.defs').stdout().strip()
|
|
if system_uid_max == ''
|
|
system_uid_max = 999
|
|
else
|
|
system_uid_max = system_uid_max.to_int()
|
|
endif
|
|
endif
|
|
conf.set('SYSTEM_UID_MAX', system_uid_max)
|
|
substs.set('systemuidmax', system_uid_max)
|
|
|
|
system_gid_max = get_option('system-gid-max')
|
|
if system_gid_max == -1
|
|
system_gid_max = run_command(
|
|
awk,
|
|
'/^\s*SYS_GID_MAX\s+/ { gid=$2 } END { print gid }',
|
|
'/etc/login.defs').stdout().strip()
|
|
if system_gid_max == ''
|
|
system_gid_max = 999
|
|
else
|
|
system_gid_max = system_gid_max.to_int()
|
|
endif
|
|
endif
|
|
conf.set('SYSTEM_GID_MAX', system_gid_max)
|
|
substs.set('systemgidmax', system_gid_max)
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# dynamic_uid_min = get_option('dynamic-uid-min')
|
|
# dynamic_uid_max = get_option('dynamic-uid-max')
|
|
# conf.set('DYNAMIC_UID_MIN', dynamic_uid_min)
|
|
# conf.set('DYNAMIC_UID_MAX', dynamic_uid_max)
|
|
# substs.set('dynamicuidmin', dynamic_uid_min)
|
|
# substs.set('dynamicuidmax', dynamic_uid_max)
|
|
#
|
|
# container_uid_base_min = get_option('container-uid-base-min')
|
|
# container_uid_base_max = get_option('container-uid-base-max')
|
|
# conf.set('CONTAINER_UID_BASE_MIN', container_uid_base_min)
|
|
# conf.set('CONTAINER_UID_BASE_MAX', container_uid_base_max)
|
|
# substs.set('containeruidbasemin', container_uid_base_min)
|
|
# substs.set('containeruidbasemax', container_uid_base_max)
|
|
#endif // 0
|
|
|
|
nobody_user = get_option('nobody-user')
|
|
nobody_group = get_option('nobody-group')
|
|
|
|
if not meson.is_cross_build()
|
|
getent_result = run_command('getent', 'passwd', '65534')
|
|
if getent_result.returncode() == 0
|
|
name = getent_result.stdout().split(':')[0]
|
|
if name != nobody_user
|
|
warning('\n' +
|
|
'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) +
|
|
'Your build will result in an user table setup that is incompatible with the local system.')
|
|
endif
|
|
endif
|
|
id_result = run_command('id', '-u', nobody_user)
|
|
if id_result.returncode() == 0
|
|
id = id_result.stdout().to_int()
|
|
if id != 65534
|
|
warning('\n' +
|
|
'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) +
|
|
'Your build will result in an user table setup that is incompatible with the local system.')
|
|
endif
|
|
endif
|
|
|
|
getent_result = run_command('getent', 'group', '65534')
|
|
if getent_result.returncode() == 0
|
|
name = getent_result.stdout().split(':')[0]
|
|
if name != nobody_group
|
|
warning('\n' +
|
|
'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) +
|
|
'Your build will result in an group table setup that is incompatible with the local system.')
|
|
endif
|
|
endif
|
|
id_result = run_command('id', '-g', nobody_group)
|
|
if id_result.returncode() == 0
|
|
id = id_result.stdout().to_int()
|
|
if id != 65534
|
|
warning('\n' +
|
|
'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) +
|
|
'Your build will result in an group table setup that is incompatible with the local system.')
|
|
endif
|
|
endif
|
|
endif
|
|
if nobody_user != nobody_group and not (nobody_user == 'nobody' and nobody_group == 'nogroup')
|
|
warning('\n' +
|
|
'The configured user name "@0@" and group name "@0@" of the nobody user/group are not equivalent.\n'.format(nobody_user, nobody_group) +
|
|
'Please re-check that both "nobody-user" and "nobody-group" options are correctly set.')
|
|
endif
|
|
|
|
conf.set_quoted('NOBODY_USER_NAME', nobody_user)
|
|
conf.set_quoted('NOBODY_GROUP_NAME', nobody_group)
|
|
substs.set('NOBODY_USER_NAME', nobody_user)
|
|
substs.set('NOBODY_GROUP_NAME', nobody_group)
|
|
|
|
tty_gid = get_option('tty-gid')
|
|
conf.set('TTY_GID', tty_gid)
|
|
substs.set('TTY_GID', tty_gid)
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# # Ensure provided GID argument is numeric, otherwise fallback to default assignment
|
|
# users_gid = get_option('users-gid')
|
|
# substs.set('USERS_GID', users_gid < 0 ? '-' : users_gid)
|
|
#
|
|
# conf.set10('ENABLE_ADM_GROUP', get_option('adm-group'))
|
|
# conf.set10('ENABLE_WHEEL_GROUP', get_option('wheel-group'))
|
|
#
|
|
# dev_kvm_mode = get_option('dev-kvm-mode')
|
|
# substs.set('DEV_KVM_MODE', dev_kvm_mode)
|
|
# conf.set10('DEV_KVM_UACCESS', dev_kvm_mode != '0666')
|
|
# group_render_mode = get_option('group-render-mode')
|
|
# substs.set('GROUP_RENDER_MODE', group_render_mode)
|
|
# conf.set10('GROUP_RENDER_UACCESS', group_render_mode != '0666')
|
|
#endif // 0
|
|
|
|
kill_user_processes = get_option('default-kill-user-processes')
|
|
conf.set10('KILL_USER_PROCESSES', kill_user_processes)
|
|
conf.set_quoted('KILL_USER_PROCESSES_YES_NO', kill_user_processes ? 'yes' : 'no')
|
|
substs.set('KILL_USER_PROCESSES', kill_user_processes ? 'yes' : 'no')
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# dns_servers = get_option('dns-servers')
|
|
# conf.set_quoted('DNS_SERVERS', dns_servers)
|
|
# substs.set('DNS_SERVERS', dns_servers)
|
|
#
|
|
# ntp_servers = get_option('ntp-servers')
|
|
# conf.set_quoted('NTP_SERVERS', ntp_servers)
|
|
# substs.set('NTP_SERVERS', ntp_servers)
|
|
#
|
|
# default_locale = get_option('default-locale')
|
|
# if default_locale == ''
|
|
# if not meson.is_cross_build()
|
|
# choose_default_locale_sh = find_program('tools/choose-default-locale.sh')
|
|
# default_locale = run_command(choose_default_locale_sh).stdout().strip()
|
|
# else
|
|
# default_locale = 'C.UTF-8'
|
|
# endif
|
|
# endif
|
|
# conf.set_quoted('SYSTEMD_DEFAULT_LOCALE', default_locale)
|
|
#
|
|
#endif // 0
|
|
conf.set_quoted('GETTEXT_PACKAGE', meson.project_name())
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# service_watchdog = get_option('service-watchdog')
|
|
# watchdog_value = service_watchdog == '' ? '' : 'WatchdogSec=' + service_watchdog
|
|
# substs.set('SERVICE_WATCHDOG', watchdog_value)
|
|
#
|
|
# substs.set('SUSHELL', get_option('debug-shell'))
|
|
# substs.set('DEBUGTTY', get_option('debug-tty'))
|
|
# conf.set_quoted('DEBUGTTY', get_option('debug-tty'))
|
|
#endif // 0
|
|
|
|
enable_debug_hashmap = false
|
|
enable_debug_mmap_cache = false
|
|
#if 1 /// additional elogind debug mode
|
|
enable_debug_elogind = false
|
|
#endif // 1
|
|
enable_debug_siphash = false
|
|
foreach name : get_option('debug-extra')
|
|
if name == 'hashmap'
|
|
enable_debug_hashmap = true
|
|
elif name == 'mmap-cache'
|
|
enable_debug_mmap_cache = true
|
|
#if 1 /// additional elogind debug mode
|
|
elif name == 'elogind'
|
|
enable_debug_elogind = true
|
|
#endif // 1
|
|
elif name == 'siphash'
|
|
enable_debug_siphash = true
|
|
else
|
|
message('unknown debug option "@0@", ignoring'.format(name))
|
|
endif
|
|
endforeach
|
|
conf.set10('ENABLE_DEBUG_HASHMAP', enable_debug_hashmap)
|
|
conf.set10('ENABLE_DEBUG_MMAP_CACHE', enable_debug_mmap_cache)
|
|
#if 1 /// additional elogind debug mode
|
|
conf.set10('ENABLE_DEBUG_ELOGIND', enable_debug_elogind)
|
|
#endif // 1
|
|
conf.set10('ENABLE_DEBUG_SIPHASH', enable_debug_siphash)
|
|
|
|
conf.set10('VALGRIND', get_option('valgrind'))
|
|
conf.set10('LOG_TRACE', get_option('log-trace'))
|
|
|
|
default_user_path = get_option('user-path')
|
|
if default_user_path != ''
|
|
conf.set_quoted('DEFAULT_USER_PATH', default_user_path)
|
|
default_user_path_display = default_user_path
|
|
else
|
|
# meson 0.49 fails when ?: is used in .format()
|
|
default_user_path_display = '(same as system services)'
|
|
endif
|
|
|
|
|
|
#####################################################################
|
|
|
|
threads = dependency('threads')
|
|
librt = cc.find_library('rt')
|
|
libm = cc.find_library('m')
|
|
libdl = cc.find_library('dl')
|
|
libcrypt = cc.find_library('crypt')
|
|
|
|
libcap = dependency('libcap', required : false)
|
|
if not libcap.found()
|
|
# Compat with Ubuntu 14.04 which ships libcap w/o .pc file
|
|
libcap = cc.find_library('cap')
|
|
endif
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# libmount = dependency('mount',
|
|
# version : fuzzer_build ? '>= 0' : '>= 2.30')
|
|
#
|
|
# want_libfdisk = get_option('fdisk')
|
|
# if want_libfdisk != 'false' and not skip_deps
|
|
# libfdisk = dependency('fdisk',
|
|
# version : '>= 2.33',
|
|
# required : want_libfdisk == 'true')
|
|
# have = libfdisk.found()
|
|
# else
|
|
# have = false
|
|
# libfdisk = []
|
|
# endif
|
|
# conf.set10('HAVE_LIBFDISK', have)
|
|
#
|
|
# want_pwquality = get_option('pwquality')
|
|
# if want_pwquality != 'false' and not skip_deps
|
|
# libpwquality = dependency('pwquality', required : want_pwquality == 'true')
|
|
# have = libpwquality.found()
|
|
# else
|
|
# have = false
|
|
# libpwquality = []
|
|
# endif
|
|
# conf.set10('HAVE_PWQUALITY', have)
|
|
#
|
|
# want_seccomp = get_option('seccomp')
|
|
# if want_seccomp != 'false' and not skip_deps
|
|
# libseccomp = dependency('libseccomp',
|
|
# version : '>= 2.3.1',
|
|
# required : want_seccomp == 'true')
|
|
# have = libseccomp.found()
|
|
# else
|
|
# have = false
|
|
# libseccomp = []
|
|
# endif
|
|
#else // 0
|
|
libseccomp = []
|
|
#endif // 0
|
|
conf.set10('HAVE_SECCOMP', have)
|
|
|
|
want_selinux = get_option('selinux')
|
|
if want_selinux != 'false' and not skip_deps
|
|
libselinux = dependency('libselinux',
|
|
version : '>= 2.1.9',
|
|
required : want_selinux == 'true')
|
|
have = libselinux.found()
|
|
else
|
|
have = false
|
|
libselinux = []
|
|
endif
|
|
conf.set10('HAVE_SELINUX', have)
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# want_apparmor = get_option('apparmor')
|
|
# if want_apparmor != 'false' and not skip_deps
|
|
# libapparmor = dependency('libapparmor',
|
|
# version : '>= 2.13',
|
|
# required : want_apparmor == 'true')
|
|
# have = libapparmor.found()
|
|
# else
|
|
# have = false
|
|
# libapparmor = []
|
|
# endif
|
|
#else // 0
|
|
libapparmor = []
|
|
#endif // 0
|
|
conf.set10('HAVE_APPARMOR', have)
|
|
|
|
smack_run_label = get_option('smack-run-label')
|
|
if smack_run_label != ''
|
|
conf.set_quoted('SMACK_RUN_LABEL', smack_run_label)
|
|
endif
|
|
|
|
want_polkit = get_option('polkit')
|
|
install_polkit = false
|
|
install_polkit_pkla = false
|
|
if want_polkit != 'false' and not skip_deps
|
|
install_polkit = true
|
|
|
|
libpolkit = dependency('polkit-gobject-1',
|
|
required : false)
|
|
if libpolkit.found() and libpolkit.version().version_compare('< 0.106')
|
|
message('Old polkit detected, will install pkla files')
|
|
install_polkit_pkla = true
|
|
endif
|
|
endif
|
|
conf.set10('ENABLE_POLKIT', install_polkit)
|
|
|
|
want_acl = get_option('acl')
|
|
if want_acl != 'false' and not skip_deps
|
|
libacl = cc.find_library('acl', required : want_acl == 'true')
|
|
have = libacl.found()
|
|
else
|
|
have = false
|
|
libacl = []
|
|
endif
|
|
conf.set10('HAVE_ACL', have)
|
|
|
|
want_audit = get_option('audit')
|
|
if want_audit != 'false' and not skip_deps
|
|
libaudit = dependency('audit', required : want_audit == 'true')
|
|
have = libaudit.found()
|
|
else
|
|
have = false
|
|
libaudit = []
|
|
endif
|
|
conf.set10('HAVE_AUDIT', have)
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# want_blkid = get_option('blkid')
|
|
# if want_blkid != 'false' and not skip_deps
|
|
# libblkid = dependency('blkid', required : want_blkid == 'true')
|
|
# have = libblkid.found()
|
|
# else
|
|
# have = false
|
|
# libblkid = []
|
|
# endif
|
|
# conf.set10('HAVE_BLKID', have)
|
|
#
|
|
# want_kmod = get_option('kmod')
|
|
# if want_kmod != 'false' and not skip_deps
|
|
# libkmod = dependency('libkmod',
|
|
# version : '>= 15',
|
|
# required : want_kmod == 'true')
|
|
# have = libkmod.found()
|
|
# else
|
|
# have = false
|
|
# libkmod = []
|
|
# endif
|
|
# conf.set10('HAVE_KMOD', have)
|
|
#else // 0
|
|
libblkid = []
|
|
conf.set10('HAVE_BLKID', false)
|
|
libkmod = []
|
|
conf.set10('HAVE_KMOD', false)
|
|
#endif // 0
|
|
|
|
want_pam = get_option('pam')
|
|
if want_pam != 'false' and not skip_deps
|
|
libpam = cc.find_library('pam', required : want_pam == 'true')
|
|
libpam_misc = cc.find_library('pam_misc', required : want_pam == 'true')
|
|
have = libpam.found() and libpam_misc.found()
|
|
else
|
|
have = false
|
|
libpam = []
|
|
libpam_misc = []
|
|
endif
|
|
conf.set10('HAVE_PAM', have)
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# want_microhttpd = get_option('microhttpd')
|
|
# if want_microhttpd != 'false' and not skip_deps
|
|
# libmicrohttpd = dependency('libmicrohttpd',
|
|
# version : '>= 0.9.33',
|
|
# required : want_microhttpd == 'true')
|
|
# have = libmicrohttpd.found()
|
|
# else
|
|
# have = false
|
|
# libmicrohttpd = []
|
|
# endif
|
|
# conf.set10('HAVE_MICROHTTPD', have)
|
|
#
|
|
# want_libcryptsetup = get_option('libcryptsetup')
|
|
# if want_libcryptsetup != 'false' and not skip_deps
|
|
# libcryptsetup = dependency('libcryptsetup',
|
|
# version : '>= 2.0.1',
|
|
# required : want_libcryptsetup == 'true')
|
|
# have = libcryptsetup.found()
|
|
#
|
|
# conf.set10('HAVE_CRYPT_SET_METADATA_SIZE',
|
|
# have and cc.has_function('crypt_set_metadata_size', dependencies : libcryptsetup))
|
|
# conf.set10('HAVE_CRYPT_ACTIVATE_BY_SIGNED_KEY',
|
|
# have and cc.has_function('crypt_activate_by_signed_key', dependencies : libcryptsetup))
|
|
# else
|
|
# have = false
|
|
# libcryptsetup = []
|
|
# endif
|
|
# conf.set10('HAVE_LIBCRYPTSETUP', have)
|
|
#
|
|
# want_libcurl = get_option('libcurl')
|
|
# if want_libcurl != 'false' and not skip_deps
|
|
# libcurl = dependency('libcurl',
|
|
# version : '>= 7.32.0',
|
|
# required : want_libcurl == 'true')
|
|
# have = libcurl.found()
|
|
# else
|
|
# have = false
|
|
# libcurl = []
|
|
# endif
|
|
# conf.set10('HAVE_LIBCURL', have)
|
|
#
|
|
# want_libidn = get_option('libidn')
|
|
# want_libidn2 = get_option('libidn2')
|
|
# if want_libidn == 'true' and want_libidn2 == 'true'
|
|
# error('libidn and libidn2 cannot be requested simultaneously')
|
|
# endif
|
|
#
|
|
# if want_libidn2 != 'false' and want_libidn != 'true' and not skip_deps
|
|
# libidn = dependency('libidn2',
|
|
# required : want_libidn2 == 'true')
|
|
# have = libidn.found()
|
|
# else
|
|
# have = false
|
|
# libidn = []
|
|
# endif
|
|
# conf.set10('HAVE_LIBIDN2', have)
|
|
# if not have and want_libidn != 'false' and not skip_deps
|
|
# # libidn is used for both libidn and libidn2 objects
|
|
# libidn = dependency('libidn',
|
|
# required : want_libidn == 'true')
|
|
# have = libidn.found()
|
|
# else
|
|
# have = false
|
|
# endif
|
|
# conf.set10('HAVE_LIBIDN', have)
|
|
#
|
|
# want_libiptc = get_option('libiptc')
|
|
# if want_libiptc != 'false' and not skip_deps
|
|
# libiptc = dependency('libiptc',
|
|
# required : want_libiptc == 'true')
|
|
# have = libiptc.found()
|
|
# else
|
|
# have = false
|
|
# libiptc = []
|
|
# endif
|
|
# conf.set10('HAVE_LIBIPTC', have)
|
|
#
|
|
# want_qrencode = get_option('qrencode')
|
|
# if want_qrencode != 'false' and not skip_deps
|
|
# libqrencode = dependency('libqrencode',
|
|
# required : want_qrencode == 'true')
|
|
# have = libqrencode.found()
|
|
# else
|
|
# have = false
|
|
# libqrencode = []
|
|
# endif
|
|
# conf.set10('HAVE_QRENCODE', have)
|
|
#
|
|
# want_gcrypt = get_option('gcrypt')
|
|
# if want_gcrypt != 'false' and not skip_deps
|
|
# libgcrypt = cc.find_library('gcrypt', required : want_gcrypt == 'true')
|
|
# libgpg_error = cc.find_library('gpg-error', required : want_gcrypt == 'true')
|
|
# have = libgcrypt.found() and libgpg_error.found()
|
|
# else
|
|
# have = false
|
|
# endif
|
|
# if not have
|
|
# # link to neither of the libs if one is not found
|
|
# libgcrypt = []
|
|
# libgpg_error = []
|
|
# endif
|
|
# conf.set10('HAVE_GCRYPT', have)
|
|
#
|
|
# want_gnutls = get_option('gnutls')
|
|
# if want_gnutls != 'false' and not skip_deps
|
|
# libgnutls = dependency('gnutls',
|
|
# version : '>= 3.1.4',
|
|
# required : want_gnutls == 'true')
|
|
# have = libgnutls.found()
|
|
# else
|
|
# have = false
|
|
# libgnutls = []
|
|
# endif
|
|
# conf.set10('HAVE_GNUTLS', have)
|
|
#
|
|
# want_openssl = get_option('openssl')
|
|
# if want_openssl != 'false' and not skip_deps
|
|
# libopenssl = dependency('openssl',
|
|
# version : '>= 1.1.0',
|
|
# required : want_openssl == 'true')
|
|
# have = libopenssl.found()
|
|
# else
|
|
# have = false
|
|
# libopenssl = []
|
|
# endif
|
|
# conf.set10('HAVE_OPENSSL', have)
|
|
#
|
|
# want_p11kit = get_option('p11kit')
|
|
# if want_p11kit != 'false' and not skip_deps
|
|
# libp11kit = dependency('p11-kit-1',
|
|
# version : '>= 0.23.3',
|
|
# required : want_p11kit == 'true')
|
|
# have = libp11kit.found()
|
|
# else
|
|
# have = false
|
|
# libp11kit = []
|
|
# endif
|
|
# conf.set10('HAVE_P11KIT', have)
|
|
#
|
|
# want_libfido2 = get_option('libfido2')
|
|
# if want_libfido2 != 'false' and not skip_deps
|
|
# libfido2 = dependency('libfido2',
|
|
# required : want_libfido2 == 'true')
|
|
# have = libfido2.found()
|
|
# else
|
|
# have = false
|
|
# libfido2 = []
|
|
# endif
|
|
# conf.set10('HAVE_LIBFIDO2', have)
|
|
#
|
|
# want_elfutils = get_option('elfutils')
|
|
# if want_elfutils != 'false' and not skip_deps
|
|
# libdw = dependency('libdw',
|
|
# required : want_elfutils == 'true')
|
|
# have = libdw.found()
|
|
# else
|
|
# have = false
|
|
# libdw = []
|
|
# endif
|
|
# conf.set10('HAVE_ELFUTILS', have)
|
|
#
|
|
# want_zlib = get_option('zlib')
|
|
# if want_zlib != 'false' and not skip_deps
|
|
# libz = dependency('zlib',
|
|
# required : want_zlib == 'true')
|
|
# have = libz.found()
|
|
# else
|
|
# have = false
|
|
# libz = []
|
|
# endif
|
|
# conf.set10('HAVE_ZLIB', have)
|
|
#
|
|
# want_bzip2 = get_option('bzip2')
|
|
# if want_bzip2 != 'false' and not skip_deps
|
|
# libbzip2 = cc.find_library('bz2',
|
|
# required : want_bzip2 == 'true')
|
|
# have = libbzip2.found()
|
|
# else
|
|
# have = false
|
|
# libbzip2 = []
|
|
# endif
|
|
# conf.set10('HAVE_BZIP2', have)
|
|
#
|
|
# want_xz = get_option('xz')
|
|
# if want_xz != 'false' and not skip_deps
|
|
# libxz = dependency('liblzma',
|
|
# required : want_xz == 'true')
|
|
# have_xz = libxz.found()
|
|
# else
|
|
# have_xz = false
|
|
# libxz = []
|
|
# endif
|
|
# conf.set10('HAVE_XZ', have_xz)
|
|
#
|
|
# want_lz4 = get_option('lz4')
|
|
# if want_lz4 != 'false' and not skip_deps
|
|
# liblz4 = dependency('liblz4',
|
|
# version : '>= 1.3.0',
|
|
# required : want_lz4 == 'true')
|
|
# have_lz4 = liblz4.found()
|
|
# else
|
|
# have_lz4 = false
|
|
# liblz4 = []
|
|
# endif
|
|
# conf.set10('HAVE_LZ4', have_lz4)
|
|
#
|
|
# want_zstd = get_option('zstd')
|
|
# if want_zstd != 'false' and not skip_deps
|
|
# libzstd = dependency('libzstd',
|
|
# required : want_zstd == 'true',
|
|
# version : '>= 1.4.0')
|
|
# have_zstd = libzstd.found()
|
|
# else
|
|
# have_zstd = false
|
|
# libzstd = []
|
|
# endif
|
|
# conf.set10('HAVE_ZSTD', have_zstd)
|
|
#
|
|
# conf.set10('HAVE_COMPRESSION', have_xz or have_lz4 or have_zstd)
|
|
#
|
|
# want_xkbcommon = get_option('xkbcommon')
|
|
# if want_xkbcommon != 'false' and not skip_deps
|
|
# libxkbcommon = dependency('xkbcommon',
|
|
# version : '>= 0.3.0',
|
|
# required : want_xkbcommon == 'true')
|
|
# have = libxkbcommon.found()
|
|
# else
|
|
# have = false
|
|
# libxkbcommon = []
|
|
# endif
|
|
# conf.set10('HAVE_XKBCOMMON', have)
|
|
#else // 0
|
|
libmicrohttpd = []
|
|
libcryptsetup = []
|
|
libcurl = []
|
|
libidn = []
|
|
libiptc = []
|
|
libqrencode = []
|
|
libgcrypt = []
|
|
libgpg_error = []
|
|
libgnutls = []
|
|
libdw = []
|
|
libz = []
|
|
libbzip2 = []
|
|
libxz = []
|
|
liblz4 = []
|
|
libzstd = []
|
|
libxkbcommon = []
|
|
conf.set10('HAVE_GCRYPT', false)
|
|
conf.set10('HAVE_LZ4', false)
|
|
conf.set10('HAVE_XZ', false)
|
|
conf.set10('HAVE_ZSTD', false)
|
|
conf.set10('HAVE_COMPRESSION', false)
|
|
conf.set10('HAVE_XKBCOMMON', false)
|
|
#endif // 0
|
|
|
|
want_pcre2 = get_option('pcre2')
|
|
if want_pcre2 != 'false'
|
|
libpcre2 = dependency('libpcre2-8',
|
|
required : want_pcre2 == 'true')
|
|
have = libpcre2.found()
|
|
else
|
|
have = false
|
|
libpcre2 = []
|
|
endif
|
|
conf.set10('HAVE_PCRE2', have)
|
|
|
|
want_glib = get_option('glib')
|
|
if want_glib != 'false' and not skip_deps
|
|
libglib = dependency('glib-2.0',
|
|
version : '>= 2.22.0',
|
|
required : want_glib == 'true')
|
|
libgobject = dependency('gobject-2.0',
|
|
version : '>= 2.22.0',
|
|
required : want_glib == 'true')
|
|
libgio = dependency('gio-2.0',
|
|
required : want_glib == 'true')
|
|
have = libglib.found() and libgobject.found() and libgio.found()
|
|
else
|
|
have = false
|
|
libglib = []
|
|
libgobject = []
|
|
libgio = []
|
|
endif
|
|
conf.set10('HAVE_GLIB', have)
|
|
|
|
want_dbus = get_option('dbus')
|
|
if want_dbus != 'false' and not skip_deps
|
|
libdbus = dependency('dbus-1',
|
|
version : '>= 1.3.2',
|
|
required : want_dbus == 'true')
|
|
have = libdbus.found()
|
|
else
|
|
have = false
|
|
libdbus = []
|
|
endif
|
|
conf.set10('HAVE_DBUS', have)
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# default_dnssec = get_option('default-dnssec')
|
|
# if skip_deps
|
|
# default_dnssec = 'no'
|
|
# endif
|
|
# if default_dnssec != 'no' and conf.get('HAVE_GCRYPT') == 0
|
|
# message('default-dnssec cannot be set to yes or allow-downgrade when gcrypt is disabled. Setting default-dnssec to no.')
|
|
# default_dnssec = 'no'
|
|
# endif
|
|
# conf.set('DEFAULT_DNSSEC_MODE',
|
|
# 'DNSSEC_' + default_dnssec.underscorify().to_upper())
|
|
# substs.set('DEFAULT_DNSSEC_MODE', default_dnssec)
|
|
#
|
|
# dns_over_tls = get_option('dns-over-tls')
|
|
# if dns_over_tls != 'false'
|
|
# if dns_over_tls == 'openssl'
|
|
# have_gnutls = false
|
|
# else
|
|
# have_gnutls = (conf.get('HAVE_GNUTLS') == 1 and libgnutls.version().version_compare('>= 3.6.0'))
|
|
# if dns_over_tls == 'gnutls' and not have_gnutls
|
|
# error('DNS-over-TLS support was requested with gnutls, but dependencies are not available')
|
|
# endif
|
|
# endif
|
|
# if dns_over_tls == 'gnutls' or have_gnutls
|
|
# have_openssl = false
|
|
# else
|
|
# have_openssl = conf.get('HAVE_OPENSSL') == 1
|
|
# if dns_over_tls != 'auto' and not have_openssl
|
|
# str = dns_over_tls == 'openssl' ? ' with openssl' : ''
|
|
# error('DNS-over-TLS support was requested@0@, but dependencies are not available'.format(str))
|
|
# endif
|
|
# endif
|
|
# have = have_gnutls or have_openssl
|
|
# else
|
|
# have = false
|
|
# have_gnutls = false
|
|
# have_openssl = false
|
|
# endif
|
|
# conf.set10('ENABLE_DNS_OVER_TLS', have)
|
|
# conf.set10('DNS_OVER_TLS_USE_GNUTLS', have_gnutls)
|
|
# conf.set10('DNS_OVER_TLS_USE_OPENSSL', have_openssl)
|
|
#
|
|
# default_dns_over_tls = get_option('default-dns-over-tls')
|
|
# if skip_deps
|
|
# default_dns_over_tls = 'no'
|
|
# endif
|
|
# if default_dns_over_tls != 'no' and conf.get('ENABLE_DNS_OVER_TLS') == 0
|
|
# message('default-dns-over-tls cannot be enabled or set to opportunistic when DNS-over-TLS support is disabled. Setting default-dns-over-tls to no.')
|
|
# default_dns_over_tls = 'no'
|
|
# endif
|
|
# conf.set('DEFAULT_DNS_OVER_TLS_MODE',
|
|
# 'DNS_OVER_TLS_' + default_dns_over_tls.underscorify().to_upper())
|
|
# substs.set('DEFAULT_DNS_OVER_TLS_MODE', default_dns_over_tls)
|
|
#
|
|
# default_mdns = get_option('default-mdns')
|
|
# conf.set('DEFAULT_MDNS_MODE',
|
|
# 'RESOLVE_SUPPORT_' + default_mdns.to_upper())
|
|
# substs.set('DEFAULT_MDNS_MODE', default_mdns)
|
|
#
|
|
# default_llmnr = get_option('default-llmnr')
|
|
# conf.set('DEFAULT_LLMNR_MODE',
|
|
# 'RESOLVE_SUPPORT_' + default_llmnr.to_upper())
|
|
# substs.set('DEFAULT_LLMNR_MODE', default_llmnr)
|
|
#
|
|
# want_repart = get_option('repart')
|
|
# if want_repart != 'false'
|
|
# have = (conf.get('HAVE_OPENSSL') == 1 and
|
|
# conf.get('HAVE_LIBFDISK') == 1)
|
|
# if want_repart == 'true' and not have
|
|
# error('repart support was requested, but dependencies are not available')
|
|
# endif
|
|
# else
|
|
# have = false
|
|
# endif
|
|
# conf.set10('ENABLE_REPART', have)
|
|
#
|
|
# want_importd = get_option('importd')
|
|
# if want_importd != 'false'
|
|
# have = (conf.get('HAVE_LIBCURL') == 1 and
|
|
# conf.get('HAVE_ZLIB') == 1 and
|
|
# conf.get('HAVE_XZ') == 1 and
|
|
# conf.get('HAVE_GCRYPT') == 1)
|
|
# if want_importd == 'true' and not have
|
|
# error('importd support was requested, but dependencies are not available')
|
|
# endif
|
|
# else
|
|
# have = false
|
|
# endif
|
|
# conf.set10('ENABLE_IMPORTD', have)
|
|
#
|
|
# want_homed = get_option('homed')
|
|
# if want_homed != 'false'
|
|
# have = (conf.get('HAVE_OPENSSL') == 1 and
|
|
# conf.get('HAVE_LIBFDISK') == 1 and
|
|
# conf.get('HAVE_LIBCRYPTSETUP') == 1)
|
|
# if want_homed == 'true' and not have
|
|
# error('homed support was requested, but dependencies are not available')
|
|
# endif
|
|
# else
|
|
# have = false
|
|
# endif
|
|
# conf.set10('ENABLE_HOMED', have)
|
|
#
|
|
# have = have and conf.get('HAVE_PAM') == 1
|
|
# conf.set10('ENABLE_PAM_HOME', have)
|
|
#
|
|
# want_remote = get_option('remote')
|
|
# if want_remote != 'false'
|
|
# have_deps = [conf.get('HAVE_MICROHTTPD') == 1,
|
|
# conf.get('HAVE_LIBCURL') == 1]
|
|
# # sd-j-remote requires µhttpd, and sd-j-upload requires libcurl, so
|
|
# # it's possible to build one without the other. Complain only if
|
|
# # support was explicitly requested. The auxiliary files like sysusers
|
|
# # config should be installed when any of the programs are built.
|
|
# if want_remote == 'true' and not (have_deps[0] and have_deps[1])
|
|
# error('remote support was requested, but dependencies are not available')
|
|
# endif
|
|
# have = have_deps[0] or have_deps[1]
|
|
# else
|
|
# have = false
|
|
# endif
|
|
#endif // 0
|
|
conf.set10('ENABLE_REMOTE', have)
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# foreach term : ['analyze',
|
|
# 'backlight',
|
|
# 'binfmt',
|
|
# 'coredump',
|
|
# 'efi',
|
|
# 'environment-d',
|
|
# 'firstboot',
|
|
# 'gshadow',
|
|
# 'hibernate',
|
|
# 'hostnamed',
|
|
# 'hwdb',
|
|
# 'idn',
|
|
# 'ima',
|
|
# 'initrd',
|
|
# 'ldconfig',
|
|
# 'localed',
|
|
# 'logind',
|
|
# 'machined',
|
|
# 'networkd',
|
|
# 'nss-myhostname',
|
|
# 'nss-systemd',
|
|
# 'portabled',
|
|
# 'pstore',
|
|
# 'quotacheck',
|
|
# 'randomseed',
|
|
# 'resolve',
|
|
# 'rfkill',
|
|
# 'smack',
|
|
# 'sysusers',
|
|
# 'timedated',
|
|
# 'timesyncd',
|
|
# 'tmpfiles',
|
|
# 'tpm',
|
|
# 'userdb',
|
|
# 'utmp',
|
|
# 'vconsole',
|
|
# 'xdg-autostart']
|
|
#else // 0
|
|
foreach term : ['smack',
|
|
'utmp']
|
|
#endif // 0
|
|
have = get_option(term)
|
|
name = 'ENABLE_' + term.underscorify().to_upper()
|
|
conf.set10(name, have)
|
|
endforeach
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# foreach tuple : [['nss-mymachines', 'machined'],
|
|
# ['nss-resolve', 'resolve']]
|
|
# want = get_option(tuple[0])
|
|
# if want != 'false'
|
|
# have = get_option(tuple[1])
|
|
# if want == 'true' and not have
|
|
# error('@0@ is requested but @1@ is disabled'.format(tuple[0], tuple[1]))
|
|
# endif
|
|
# else
|
|
# have = false
|
|
# endif
|
|
# name = 'ENABLE_' + tuple[0].underscorify().to_upper()
|
|
# conf.set10(name, have)
|
|
# endforeach
|
|
#
|
|
# enable_nss = false
|
|
# foreach term : ['ENABLE_NSS_MYHOSTNAME',
|
|
# 'ENABLE_NSS_MYMACHINES',
|
|
# 'ENABLE_NSS_RESOLVE',
|
|
# 'ENABLE_NSS_SYSTEMD']
|
|
# if conf.get(term) == 1
|
|
# enable_nss = true
|
|
# endif
|
|
# endforeach
|
|
# conf.set10('ENABLE_NSS', enable_nss)
|
|
#
|
|
# conf.set10('ENABLE_TIMEDATECTL', get_option('timedated') or get_option('timesyncd'))
|
|
#endif // 0
|
|
|
|
tests = []
|
|
fuzzers = []
|
|
|
|
conf.set10('SYSTEMD_SLOW_TESTS_DEFAULT', slow_tests)
|
|
|
|
#####################################################################
|
|
|
|
if get_option('efi')
|
|
efi_arch = host_machine.cpu_family()
|
|
|
|
if efi_arch == 'x86'
|
|
EFI_MACHINE_TYPE_NAME = 'ia32'
|
|
gnu_efi_arch = 'ia32'
|
|
elif efi_arch == 'x86_64'
|
|
EFI_MACHINE_TYPE_NAME = 'x64'
|
|
gnu_efi_arch = 'x86_64'
|
|
elif efi_arch == 'arm'
|
|
EFI_MACHINE_TYPE_NAME = 'arm'
|
|
gnu_efi_arch = 'arm'
|
|
elif efi_arch == 'aarch64'
|
|
EFI_MACHINE_TYPE_NAME = 'aa64'
|
|
gnu_efi_arch = 'aarch64'
|
|
else
|
|
EFI_MACHINE_TYPE_NAME = ''
|
|
gnu_efi_arch = ''
|
|
endif
|
|
|
|
have = true
|
|
conf.set_quoted('EFI_MACHINE_TYPE_NAME', EFI_MACHINE_TYPE_NAME)
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# conf.set('SD_TPM_PCR', get_option('tpm-pcrindex'))
|
|
#endif // 0
|
|
else
|
|
have = false
|
|
endif
|
|
conf.set10('ENABLE_EFI', have)
|
|
|
|
#####################################################################
|
|
|
|
#if 1 /// These are not needed by elogind, but meson wants them although they are commented out.
|
|
conf.set_quoted('CERTIFICATE_ROOT', '/dev/null')
|
|
conf.set_quoted('MEMORY_ACCOUNTING_DEFAULT_YES_NO', 'N/A')
|
|
conf.set_quoted('MOUNT_PATH', '/dev/null')
|
|
conf.set_quoted('SYSTEM_ENV_GENERATOR_PATH', '/dev/null')
|
|
conf.set_quoted('SYSTEM_GENERATOR_PATH', '/dev/null')
|
|
conf.set_quoted('UMOUNT_PATH', '/dev/null')
|
|
conf.set_quoted('USER_ENV_GENERATOR_PATH', '/dev/null')
|
|
conf.set_quoted('USER_GENERATOR_PATH', '/dev/null')
|
|
conf.set_quoted('DEBUGTTY', '/dev/null')
|
|
#####################################################################
|
|
|
|
#endif // 1
|
|
config_h = configure_file(
|
|
output : 'config.h',
|
|
configuration : conf)
|
|
|
|
meson_apply_m4 = find_program('tools/meson-apply-m4.sh')
|
|
|
|
includes = include_directories('src/basic',
|
|
'src/boot',
|
|
#if 0 /// UNNEEDED by elogind
|
|
# 'src/home',
|
|
#endif // 0
|
|
'src/shared',
|
|
'src/systemd',
|
|
'src/journal',
|
|
#if 0 /// UNNEEDED by elogind
|
|
# 'src/journal-remote',
|
|
# 'src/nspawn',
|
|
# 'src/resolve',
|
|
# 'src/timesync',
|
|
# 'src/time-wait-sync',
|
|
#endif // 0
|
|
'src/login',
|
|
#if 0 /// UNNEEDED by elogind
|
|
# 'src/udev',
|
|
# 'src/libudev',
|
|
#endif // 0
|
|
'src/core',
|
|
#if 0 /// elogind has a different list
|
|
# 'src/shutdown',
|
|
# 'src/xdg-autostart-generator',
|
|
# 'src/libsystemd/sd-bus',
|
|
# 'src/libsystemd/sd-device',
|
|
# 'src/libsystemd/sd-event',
|
|
# 'src/libsystemd/sd-hwdb',
|
|
# 'src/libsystemd/sd-id128',
|
|
# 'src/libsystemd/sd-netlink',
|
|
# 'src/libsystemd/sd-network',
|
|
# 'src/libsystemd/sd-resolve',
|
|
# 'src/libsystemd-network',
|
|
#else // 0
|
|
'src/libelogind/sd-bus',
|
|
'src/libelogind/sd-device',
|
|
'src/libelogind/sd-event',
|
|
'src/libelogind/sd-hwdb',
|
|
'src/libelogind/sd-id128',
|
|
'src/sleep',
|
|
'src/update-utmp',
|
|
#endif // 0
|
|
'.')
|
|
|
|
add_project_arguments('-include', 'config.h', language : 'c')
|
|
|
|
generate_gperfs = find_program('tools/generate-gperfs.py')
|
|
|
|
subdir('po')
|
|
#if 0 /// UNNEEDED by elogind
|
|
# subdir('catalog')
|
|
#endif // 0
|
|
subdir('src/systemd')
|
|
subdir('src/basic')
|
|
#if 0 /// UNNEEDED by elogind
|
|
# subdir('src/libsystemd')
|
|
# subdir('src/libsystemd-network')
|
|
# subdir('src/journal')
|
|
#else // 0
|
|
subdir('src/core')
|
|
subdir('src/journal')
|
|
subdir('src/libelogind')
|
|
subdir('src/sleep')
|
|
subdir('src/update-utmp')
|
|
#endif // 0
|
|
subdir('src/login')
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# libjournal_core = static_library(
|
|
# 'journal-core',
|
|
# libjournal_core_sources,
|
|
# journald_gperf_c,
|
|
# include_directories : includes,
|
|
# install : false)
|
|
#endif // 0
|
|
|
|
libelogind_sym_path = '@0@/@1@'.format(project_source_root, libelogind_sym)
|
|
libelogind = shared_library(
|
|
'elogind',
|
|
disable_mempool_c,
|
|
version : libsystemd_version,
|
|
include_directories : includes,
|
|
link_args : ['-shared',
|
|
#if 0 /// elogind does not need gcrypt, only threads.
|
|
# '-Wl,--version-script=' + libsystemd_sym_path],
|
|
# link_with : [libbasic,
|
|
# libbasic_gcrypt],
|
|
# link_whole : [libsystemd_static,
|
|
# libjournal_client],
|
|
# dependencies : [threads,
|
|
# librt,
|
|
# libxz,
|
|
# libzstd,
|
|
# liblz4],
|
|
# link_depends : libsystemd_sym,
|
|
#else // 0
|
|
'-Wl,--version-script=' + libelogind_sym_path],
|
|
link_with : [libbasic],
|
|
link_whole : [libelogind_static,
|
|
libjournal_client],
|
|
dependencies : [threads],
|
|
link_depends : libelogind_sym,
|
|
#endif // 0
|
|
install : true,
|
|
install_dir : rootlibdir)
|
|
|
|
static_libelogind = get_option('static-libelogind')
|
|
static_libelogind_pic = static_libelogind == 'true' or static_libelogind == 'pic'
|
|
|
|
#if 0 /// Do a real elogind masking else, diff always goes haywire here
|
|
# install_libsystemd_static = static_library(
|
|
# 'systemd',
|
|
# libsystemd_sources,
|
|
#else // 0
|
|
install_libelogind_static = static_library(
|
|
'elogind',
|
|
libelogind_sources,
|
|
#endif // 0
|
|
#if 0 /// No journald with elogind (And before you ask: NO!)
|
|
# journal_client_sources,
|
|
#endif // 0
|
|
basic_sources,
|
|
#if 0 /// No gcrypt with elogind
|
|
# basic_gcrypt_sources,
|
|
#endif // 0
|
|
disable_mempool_c,
|
|
include_directories : includes,
|
|
build_by_default : static_libelogind != 'false',
|
|
install : static_libelogind != 'false',
|
|
install_dir : rootlibdir,
|
|
#if 0 /// elogind only needs libcap, threads and selinux.
|
|
# pic : static_libsystemd == 'true' or static_libsystemd == 'pic',
|
|
# dependencies : [threads,
|
|
# librt,
|
|
# libxz,
|
|
# libzstd,
|
|
# liblz4,
|
|
# libcap,
|
|
# libblkid,
|
|
# libmount,
|
|
# libselinux,
|
|
# libgcrypt],
|
|
# c_args : libsystemd_c_args + (static_libsystemd_pic ? [] : ['-fno-PIC']))
|
|
#
|
|
# # Generate autosuspend rules
|
|
# make_autosuspend_rules_py = find_program('tools/make-autosuspend-rules.py')
|
|
#else // 0
|
|
dependencies : [threads,
|
|
libcap,
|
|
libselinux],
|
|
c_args : libsystemd_c_args + (static_libelogind_pic ? [] : ['-fno-PIC']))
|
|
#endif // 0
|
|
|
|
############################################################
|
|
|
|
# binaries that have --help and are intended for use by humans,
|
|
# usually, but not always, installed in /bin.
|
|
public_programs = []
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# subdir('src/libudev')
|
|
#else // 0
|
|
# elogind depends on external libudev:
|
|
libudev = dependency('libudev', required : true)
|
|
#endif // 0
|
|
subdir('src/shared')
|
|
#if 0 /// UNNEEDED by elogind
|
|
# subdir('src/core')
|
|
# subdir('src/shutdown')
|
|
# subdir('src/udev')
|
|
# subdir('src/network')
|
|
#
|
|
# subdir('src/analyze')
|
|
# subdir('src/journal-remote')
|
|
# subdir('src/coredump')
|
|
# subdir('src/pstore')
|
|
# subdir('src/hostname')
|
|
# subdir('src/import')
|
|
# subdir('src/partition')
|
|
# subdir('src/kernel-install')
|
|
# subdir('src/locale')
|
|
# subdir('src/machine')
|
|
# subdir('src/portable')
|
|
# subdir('src/userdb')
|
|
# subdir('src/home')
|
|
# subdir('src/nspawn')
|
|
# subdir('src/resolve')
|
|
# subdir('src/timedate')
|
|
# subdir('src/timesync')
|
|
# subdir('src/tmpfiles')
|
|
# subdir('src/vconsole')
|
|
# subdir('src/boot/efi')
|
|
#endif // 0
|
|
|
|
subdir('src/test')
|
|
#if 0 /// UNNEEDED by elogind
|
|
# subdir('src/fuzz')
|
|
# subdir('rules.d')
|
|
# subdir('test')
|
|
#endif // 0
|
|
|
|
############################################################
|
|
|
|
# only static linking apart from libdl, to make sure that the
|
|
# module is linked to all libraries that it uses.
|
|
test_dlopen = executable(
|
|
'test-dlopen',
|
|
test_dlopen_c,
|
|
disable_mempool_c,
|
|
include_directories : includes,
|
|
link_with : [libbasic],
|
|
dependencies : [libdl],
|
|
build_by_default : want_tests != 'false')
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# foreach tuple : [['myhostname', 'ENABLE_NSS_MYHOSTNAME'],
|
|
# ['systemd', 'ENABLE_NSS_SYSTEMD', 'src/nss-systemd/userdb-glue.c src/nss-systemd/userdb-glue.h src/nss-systemd/nss-systemd.h'],
|
|
# ['mymachines', 'ENABLE_NSS_MYMACHINES'],
|
|
# ['resolve', 'ENABLE_NSS_RESOLVE']]
|
|
#
|
|
# condition = tuple[1] == '' or conf.get(tuple[1]) == 1
|
|
# if condition
|
|
# module = tuple[0]
|
|
#
|
|
# sym = 'src/nss-@0@/nss-@0@.sym'.format(module)
|
|
# version_script_arg = join_paths(project_source_root, sym)
|
|
#
|
|
# sources = ['src/nss-@0@/nss-@0@.c'.format(module)]
|
|
# if tuple.length() > 2
|
|
# sources += tuple[2].split()
|
|
# endif
|
|
#
|
|
# nss = shared_library(
|
|
# 'nss_' + module,
|
|
# sources,
|
|
# disable_mempool_c,
|
|
# version : '2',
|
|
# include_directories : includes,
|
|
# # Note that we link NSS modules with '-z nodelete' so that mempools never get orphaned
|
|
# link_args : ['-Wl,-z,nodelete',
|
|
# '-shared',
|
|
# '-Wl,--version-script=' + version_script_arg],
|
|
# link_with : [libsystemd_static,
|
|
# libshared_static,
|
|
# libbasic],
|
|
# dependencies : [threads,
|
|
# librt],
|
|
# link_depends : sym,
|
|
# install : true,
|
|
# install_dir : rootlibdir)
|
|
#
|
|
# # We cannot use shared_module because it does not support version suffix.
|
|
# # Unfortunately shared_library insists on creating the symlink…
|
|
# meson.add_install_script('sh', '-c',
|
|
# 'rm $DESTDIR@0@/libnss_@1@.so'
|
|
# .format(rootlibdir, module))
|
|
#
|
|
# if want_tests != 'false'
|
|
# test('dlopen-nss_' + module,
|
|
# test_dlopen,
|
|
# # path to dlopen must include a slash
|
|
# args : nss.full_path())
|
|
# endif
|
|
# endif
|
|
# endforeach
|
|
#endif // 0
|
|
|
|
############################################################
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# executable(
|
|
# 'systemd',
|
|
# systemd_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libcore,
|
|
# libshared],
|
|
# dependencies : [versiondep,
|
|
# threads,
|
|
# librt,
|
|
# libseccomp,
|
|
# libselinux,
|
|
# libmount,
|
|
# libblkid],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# meson.add_install_script(meson_make_symlink,
|
|
# join_paths(rootlibexecdir, 'systemd'),
|
|
# join_paths(rootsbindir, 'init'))
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-analyze',
|
|
# systemd_analyze_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libcore,
|
|
# libshared],
|
|
# dependencies : [versiondep,
|
|
# threads,
|
|
# librt,
|
|
# libseccomp,
|
|
# libselinux,
|
|
# libmount,
|
|
# libblkid],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : conf.get('ENABLE_ANALYZE'))
|
|
#
|
|
# executable(
|
|
# 'systemd-journald',
|
|
# systemd_journald_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libjournal_core,
|
|
# libshared],
|
|
# dependencies : [threads,
|
|
# libxz,
|
|
# liblz4,
|
|
# libselinux,
|
|
# libzstd],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-cat',
|
|
# systemd_cat_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libjournal_core,
|
|
# libshared],
|
|
# dependencies : [threads],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true)
|
|
#
|
|
# public_programs += executable(
|
|
# 'journalctl',
|
|
# journalctl_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [threads,
|
|
# libqrencode,
|
|
# libxz,
|
|
# liblz4,
|
|
# libpcre2,
|
|
# libzstd],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
#
|
|
# executable(
|
|
# 'systemd-getty-generator',
|
|
# 'src/getty-generator/getty-generator.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : systemgeneratordir)
|
|
#
|
|
# executable(
|
|
# 'systemd-debug-generator',
|
|
# 'src/debug-generator/debug-generator.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : systemgeneratordir)
|
|
#
|
|
# executable(
|
|
# 'systemd-run-generator',
|
|
# 'src/run-generator/run-generator.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : systemgeneratordir)
|
|
#
|
|
# executable(
|
|
# 'systemd-fstab-generator',
|
|
# 'src/fstab-generator/fstab-generator.c',
|
|
# include_directories : includes,
|
|
# link_with : [libcore_shared,
|
|
# libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : systemgeneratordir)
|
|
#
|
|
# if conf.get('ENABLE_ENVIRONMENT_D') == 1
|
|
# executable(
|
|
# '30-systemd-environment-d-generator',
|
|
# 'src/environment-d-generator/environment-d-generator.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : userenvgeneratordir)
|
|
#
|
|
# meson.add_install_script(meson_make_symlink,
|
|
# join_paths(sysconfdir, 'environment'),
|
|
# join_paths(environmentdir, '99-environment.conf'))
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_HIBERNATE') == 1
|
|
# executable(
|
|
# 'systemd-hibernate-resume-generator',
|
|
# 'src/hibernate-resume/hibernate-resume-generator.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : systemgeneratordir)
|
|
#
|
|
# executable(
|
|
# 'systemd-hibernate-resume',
|
|
# 'src/hibernate-resume/hibernate-resume.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
# endif
|
|
#
|
|
# if conf.get('HAVE_BLKID') == 1
|
|
# executable(
|
|
# 'systemd-gpt-auto-generator',
|
|
# 'src/gpt-auto-generator/gpt-auto-generator.c',
|
|
# 'src/shared/blkid-util.h',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : libblkid,
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : systemgeneratordir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-dissect',
|
|
# 'src/dissect/dissect.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_RESOLVE') == 1
|
|
# executable(
|
|
# 'systemd-resolved',
|
|
# systemd_resolved_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared,
|
|
# libbasic_gcrypt,
|
|
# libsystemd_resolve_core],
|
|
# dependencies : systemd_resolved_dependencies,
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'resolvectl',
|
|
# resolvectl_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared,
|
|
# libbasic_gcrypt,
|
|
# libsystemd_resolve_core],
|
|
# dependencies : [threads,
|
|
# libgpg_error,
|
|
# libm,
|
|
# libidn],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true)
|
|
#
|
|
# meson.add_install_script(meson_make_symlink,
|
|
# join_paths(bindir, 'resolvectl'),
|
|
# join_paths(rootsbindir, 'resolvconf'))
|
|
#
|
|
# meson.add_install_script(meson_make_symlink,
|
|
# join_paths(bindir, 'resolvectl'),
|
|
# join_paths(bindir, 'systemd-resolve'))
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_LOGIND') == 1
|
|
# executable(
|
|
# 'systemd-logind',
|
|
# systemd_logind_sources,
|
|
# include_directories : includes,
|
|
# link_with : [liblogind_core,
|
|
# libshared],
|
|
# dependencies : [threads,
|
|
# libacl],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'loginctl',
|
|
# loginctl_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [threads,
|
|
# liblz4,
|
|
# libxz,
|
|
# libzstd],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-inhibit',
|
|
# 'src/login/inhibit.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
#
|
|
# if conf.get('HAVE_PAM') == 1
|
|
# version_script_arg = join_paths(project_source_root, pam_systemd_sym)
|
|
# pam_systemd = shared_library(
|
|
# 'pam_systemd',
|
|
# pam_systemd_c,
|
|
# name_prefix : '',
|
|
# include_directories : includes,
|
|
# link_args : ['-shared',
|
|
# '-Wl,--version-script=' + version_script_arg],
|
|
# link_with : [libsystemd_static,
|
|
# libshared_static],
|
|
# dependencies : [threads,
|
|
# libpam,
|
|
# libpam_misc],
|
|
# link_depends : pam_systemd_sym,
|
|
# install : true,
|
|
# install_dir : pamlibdir)
|
|
#
|
|
# if want_tests != 'false'
|
|
# test('dlopen-pam_systemd',
|
|
# test_dlopen,
|
|
# # path to dlopen must include a slash
|
|
# args : pam_systemd.full_path())
|
|
# endif
|
|
# endif
|
|
#
|
|
# executable(
|
|
# 'systemd-user-runtime-dir',
|
|
# user_runtime_dir_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
# endif
|
|
#else // 0
|
|
|
|
executable('elogind',
|
|
elogind_sources,
|
|
include_directories : includes,
|
|
link_with : [liblogind_core,
|
|
libshared],
|
|
dependencies : [threads,
|
|
libacl,
|
|
libudev],
|
|
install_rpath : rootlibexecdir,
|
|
install : true,
|
|
install_dir : rootlibexecdir)
|
|
|
|
exe = executable('loginctl',
|
|
loginctl_sources,
|
|
include_directories : includes,
|
|
link_with : [libshared],
|
|
dependencies : [threads,
|
|
libudev],
|
|
install_rpath : rootlibexecdir,
|
|
install : true,
|
|
install_dir : rootbindir)
|
|
public_programs += [exe]
|
|
|
|
exe = executable('elogind-inhibit',
|
|
'src/login/inhibit.c',
|
|
include_directories : includes,
|
|
link_with : [libshared],
|
|
dependencies : [threads],
|
|
install_rpath : rootlibexecdir,
|
|
install : true,
|
|
install_dir : rootbindir)
|
|
public_programs += [exe]
|
|
#endif // 0
|
|
|
|
if conf.get('HAVE_PAM') == 1
|
|
#if 0 /// elogind needs pam_elogind. Doing it like this keeps diff happy.
|
|
# executable(
|
|
# 'systemd-user-sessions',
|
|
# 'src/user-sessions/user-sessions.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#else // 0
|
|
version_script_arg = join_paths(project_source_root, pam_elogind_sym)
|
|
pam_elogind = shared_library(
|
|
'pam_elogind',
|
|
pam_elogind_c,
|
|
name_prefix : '',
|
|
include_directories : includes,
|
|
link_args : ['-shared',
|
|
'-Wl,--version-script=' + version_script_arg],
|
|
link_with : [libelogind_static,
|
|
libshared_static],
|
|
dependencies : [threads,
|
|
libpam,
|
|
libpam_misc],
|
|
link_depends : pam_elogind_sym,
|
|
install : true,
|
|
install_dir : pamlibdir)
|
|
|
|
if want_tests != 'false'
|
|
test('dlopen-pam_elogind',
|
|
test_dlopen,
|
|
# path to dlopen must include a slash
|
|
args : pam_elogind.full_path())
|
|
endif
|
|
#endif // 0
|
|
endif
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# if conf.get('ENABLE_EFI') == 1 and conf.get('HAVE_BLKID') == 1
|
|
# public_programs += executable(
|
|
# 'bootctl',
|
|
# 'src/boot/bootctl.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [libblkid],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true)
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-bless-boot',
|
|
# 'src/boot/bless-boot.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [libblkid],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# executable(
|
|
# 'systemd-bless-boot-generator',
|
|
# 'src/boot/bless-boot-generator.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : systemgeneratordir)
|
|
# endif
|
|
#
|
|
# executable(
|
|
# 'systemd-boot-check-no-failures',
|
|
# 'src/boot/boot-check-no-failures.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [libblkid],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-socket-activate',
|
|
# 'src/activate/activate.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [threads],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true)
|
|
#
|
|
# if get_option('link-systemctl-shared')
|
|
# systemctl_link_with = [libshared]
|
|
# else
|
|
# systemctl_link_with = [libsystemd_static,
|
|
# libshared_static,
|
|
# libjournal_client,
|
|
# libbasic_gcrypt]
|
|
# endif
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemctl',
|
|
# 'src/systemctl/systemctl.c',
|
|
# 'src/systemctl/sysv-compat.h',
|
|
# 'src/systemctl/sysv-compat.c',
|
|
# include_directories : includes,
|
|
# link_with : systemctl_link_with,
|
|
# dependencies : [threads,
|
|
# libcap,
|
|
# libselinux,
|
|
# libxz,
|
|
# liblz4,
|
|
# libzstd],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
#
|
|
# if conf.get('ENABLE_PORTABLED') == 1
|
|
# executable(
|
|
# 'systemd-portabled',
|
|
# systemd_portabled_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [threads],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'portablectl',
|
|
# 'src/portable/portablectl.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [threads],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_USERDB') == 1
|
|
# executable(
|
|
# 'systemd-userwork',
|
|
# systemd_userwork_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [threads],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# executable(
|
|
# 'systemd-userdbd',
|
|
# systemd_userdbd_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [threads],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'userdbctl',
|
|
# userdbctl_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [threads],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_HOMED') == 1
|
|
# executable(
|
|
# 'systemd-homework',
|
|
# systemd_homework_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [threads,
|
|
# libcryptsetup,
|
|
# libblkid,
|
|
# libcrypt,
|
|
# libopenssl,
|
|
# libfdisk,
|
|
# libp11kit,
|
|
# libfido2],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# executable(
|
|
# 'systemd-homed',
|
|
# systemd_homed_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [threads,
|
|
# libcrypt,
|
|
# libopenssl,
|
|
# libpwquality],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'homectl',
|
|
# homectl_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [threads,
|
|
# libcrypt,
|
|
# libopenssl,
|
|
# libp11kit,
|
|
# libfido2,
|
|
# libpwquality],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
#
|
|
# if conf.get('HAVE_PAM') == 1
|
|
# version_script_arg = join_paths(project_source_root, pam_systemd_home_sym)
|
|
# pam_systemd = shared_library(
|
|
# 'pam_systemd_home',
|
|
# pam_systemd_home_c,
|
|
# name_prefix : '',
|
|
# include_directories : includes,
|
|
# link_args : ['-shared',
|
|
# '-Wl,--version-script=' + version_script_arg],
|
|
# link_with : [libsystemd_static,
|
|
# libshared_static],
|
|
# dependencies : [threads,
|
|
# libpam,
|
|
# libpam_misc,
|
|
# libcrypt],
|
|
# link_depends : pam_systemd_home_sym,
|
|
# install : true,
|
|
# install_dir : pamlibdir)
|
|
# endif
|
|
# endif
|
|
#
|
|
# foreach alias : (['halt', 'poweroff', 'reboot', 'shutdown'] +
|
|
# (conf.get('HAVE_SYSV_COMPAT') == 1 ? ['runlevel', 'telinit'] : []))
|
|
# meson.add_install_script(meson_make_symlink,
|
|
# join_paths(rootbindir, 'systemctl'),
|
|
# join_paths(rootsbindir, alias))
|
|
# endforeach
|
|
#
|
|
# meson.add_install_script(meson_make_symlink,
|
|
# join_paths(rootbindir, 'udevadm'),
|
|
# join_paths(rootlibexecdir, 'systemd-udevd'))
|
|
#
|
|
# if conf.get('ENABLE_BACKLIGHT') == 1
|
|
# executable(
|
|
# 'systemd-backlight',
|
|
# 'src/backlight/backlight.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_RFKILL') == 1
|
|
# executable(
|
|
# 'systemd-rfkill',
|
|
# 'src/rfkill/rfkill.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
# endif
|
|
#
|
|
# executable(
|
|
# 'systemd-system-update-generator',
|
|
# 'src/system-update-generator/system-update-generator.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : systemgeneratordir)
|
|
#
|
|
# if conf.get('HAVE_LIBCRYPTSETUP') == 1
|
|
# systemd_cryptsetup_sources = files('''
|
|
# src/cryptsetup/cryptsetup-pkcs11.h
|
|
# src/cryptsetup/cryptsetup-util.c
|
|
# src/cryptsetup/cryptsetup-util.h
|
|
# src/cryptsetup/cryptsetup.c
|
|
# '''.split())
|
|
#
|
|
# if conf.get('HAVE_P11KIT') == 1
|
|
# systemd_cryptsetup_sources += files('src/cryptsetup/cryptsetup-pkcs11.c')
|
|
# endif
|
|
#
|
|
# executable(
|
|
# 'systemd-cryptsetup',
|
|
# systemd_cryptsetup_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [libcryptsetup,
|
|
# libp11kit],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# executable(
|
|
# 'systemd-cryptsetup-generator',
|
|
# 'src/cryptsetup/cryptsetup-generator.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [libcryptsetup],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : systemgeneratordir)
|
|
#
|
|
# executable(
|
|
# 'systemd-veritysetup',
|
|
# 'src/veritysetup/veritysetup.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [libcryptsetup],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# executable(
|
|
# 'systemd-veritysetup-generator',
|
|
# 'src/veritysetup/veritysetup-generator.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [libcryptsetup],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : systemgeneratordir)
|
|
# endif
|
|
#
|
|
# if conf.get('HAVE_SYSV_COMPAT') == 1
|
|
# executable(
|
|
# 'systemd-sysv-generator',
|
|
# 'src/sysv-generator/sysv-generator.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : systemgeneratordir)
|
|
#
|
|
# executable(
|
|
# 'systemd-rc-local-generator',
|
|
# 'src/rc-local-generator/rc-local-generator.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : systemgeneratordir)
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_XDG_AUTOSTART') == 1
|
|
# executable(
|
|
# 'systemd-xdg-autostart-generator',
|
|
# 'src/xdg-autostart-generator/xdg-autostart-generator.c',
|
|
# 'src/xdg-autostart-generator/xdg-autostart-service.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : usergeneratordir)
|
|
#
|
|
# executable(
|
|
# 'systemd-xdg-autostart-condition',
|
|
# 'src/xdg-autostart-generator/xdg-autostart-condition.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_HOSTNAMED') == 1
|
|
# executable(
|
|
# 'systemd-hostnamed',
|
|
# 'src/hostname/hostnamed.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'hostnamectl',
|
|
# 'src/hostname/hostnamectl.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true)
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_LOCALED') == 1
|
|
# if conf.get('HAVE_XKBCOMMON') == 1
|
|
# # logind will load libxkbcommon.so dynamically on its own
|
|
# deps = [libdl]
|
|
# else
|
|
# deps = []
|
|
# endif
|
|
#
|
|
# executable(
|
|
# 'systemd-localed',
|
|
# systemd_localed_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : deps,
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'localectl',
|
|
# localectl_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true)
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_TIMEDATED') == 1
|
|
# executable(
|
|
# 'systemd-timedated',
|
|
# 'src/timedate/timedated.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_TIMEDATECTL') == 1
|
|
# public_programs += executable(
|
|
# 'timedatectl',
|
|
# 'src/timedate/timedatectl.c',
|
|
# include_directories : includes,
|
|
# install_rpath : rootlibexecdir,
|
|
# link_with : [libshared],
|
|
# dependencies : [libm],
|
|
# install : true)
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_TIMESYNCD') == 1
|
|
# if get_option('link-timesyncd-shared')
|
|
# timesyncd_link_with = [libshared]
|
|
# else
|
|
# timesyncd_link_with = [libsystemd_static,
|
|
# libshared_static,
|
|
# libjournal_client,
|
|
# libbasic_gcrypt]
|
|
# endif
|
|
#
|
|
# executable(
|
|
# 'systemd-timesyncd',
|
|
# systemd_timesyncd_sources,
|
|
# include_directories : includes,
|
|
# link_with : [timesyncd_link_with],
|
|
# dependencies : [threads,
|
|
# libm],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# executable(
|
|
# 'systemd-time-wait-sync',
|
|
# 'src/time-wait-sync/time-wait-sync.c',
|
|
# include_directories : includes,
|
|
# link_with : [timesyncd_link_with],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_MACHINED') == 1
|
|
# executable(
|
|
# 'systemd-machined',
|
|
# systemd_machined_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libmachine_core,
|
|
# libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'machinectl',
|
|
# 'src/machine/machinectl.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [threads,
|
|
# libxz,
|
|
# liblz4,
|
|
# libzstd],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_IMPORTD') == 1
|
|
# executable(
|
|
# 'systemd-importd',
|
|
# systemd_importd_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [threads],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# systemd_pull = executable(
|
|
# 'systemd-pull',
|
|
# systemd_pull_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [versiondep,
|
|
# libcurl,
|
|
# libz,
|
|
# libbzip2,
|
|
# libxz,
|
|
# libgcrypt],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# systemd_import = executable(
|
|
# 'systemd-import',
|
|
# systemd_import_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [libcurl,
|
|
# libz,
|
|
# libbzip2,
|
|
# libxz],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# systemd_import_fs = executable(
|
|
# 'systemd-import-fs',
|
|
# systemd_import_fs_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# systemd_export = executable(
|
|
# 'systemd-export',
|
|
# systemd_export_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [libcurl,
|
|
# libz,
|
|
# libbzip2,
|
|
# libxz],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# public_programs += [systemd_pull, systemd_import, systemd_import_fs, systemd_export]
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_REMOTE') == 1 and conf.get('HAVE_LIBCURL') == 1
|
|
# public_programs += executable(
|
|
# 'systemd-journal-upload',
|
|
# systemd_journal_upload_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [versiondep,
|
|
# threads,
|
|
# libcurl,
|
|
# libgnutls,
|
|
# libxz,
|
|
# liblz4,
|
|
# libzstd],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_REMOTE') == 1 and conf.get('HAVE_MICROHTTPD') == 1
|
|
# public_programs += executable(
|
|
# 'systemd-journal-remote',
|
|
# systemd_journal_remote_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared,
|
|
# libsystemd_journal_remote],
|
|
# dependencies : [threads,
|
|
# libmicrohttpd,
|
|
# libgnutls,
|
|
# libxz,
|
|
# liblz4,
|
|
# libzstd],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-journal-gatewayd',
|
|
# systemd_journal_gatewayd_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [threads,
|
|
# libmicrohttpd,
|
|
# libgnutls,
|
|
# libxz,
|
|
# liblz4,
|
|
# libzstd],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_COREDUMP') == 1
|
|
# executable(
|
|
# 'systemd-coredump',
|
|
# systemd_coredump_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [threads,
|
|
# libacl,
|
|
# libdw,
|
|
# libxz,
|
|
# liblz4,
|
|
# libzstd],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'coredumpctl',
|
|
# coredumpctl_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [threads,
|
|
# libxz,
|
|
# liblz4,
|
|
# libzstd],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true)
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_PSTORE') == 1
|
|
# executable(
|
|
# 'systemd-pstore',
|
|
# systemd_pstore_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [threads,
|
|
# libacl,
|
|
# libdw,
|
|
# libxz,
|
|
# liblz4,
|
|
# libzstd],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_BINFMT') == 1
|
|
# public_programs += executable(
|
|
# 'systemd-binfmt',
|
|
# 'src/binfmt/binfmt.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# meson.add_install_script('sh', '-c',
|
|
# mkdir_p.format(binfmtdir))
|
|
# meson.add_install_script('sh', '-c',
|
|
# mkdir_p.format(join_paths(sysconfdir, 'binfmt.d')))
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_REPART') == 1
|
|
# exe = executable(
|
|
# 'systemd-repart',
|
|
# systemd_repart_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [threads,
|
|
# libcryptsetup,
|
|
# libblkid,
|
|
# libfdisk,
|
|
# libopenssl],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
#
|
|
# if want_tests != 'false'
|
|
# test('test-repart',
|
|
# test_repart_sh,
|
|
# args : exe.full_path())
|
|
# endif
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_VCONSOLE') == 1
|
|
# executable(
|
|
# 'systemd-vconsole-setup',
|
|
# 'src/vconsole/vconsole-setup.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_RANDOMSEED') == 1
|
|
# executable(
|
|
# 'systemd-random-seed',
|
|
# 'src/random-seed/random-seed.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_FIRSTBOOT') == 1
|
|
# executable(
|
|
# 'systemd-firstboot',
|
|
# 'src/firstboot/firstboot.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [libcrypt],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
# endif
|
|
#
|
|
# executable(
|
|
# 'systemd-remount-fs',
|
|
# 'src/remount-fs/remount-fs.c',
|
|
# include_directories : includes,
|
|
# link_with : [libcore_shared,
|
|
# libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# executable(
|
|
# 'systemd-machine-id-setup',
|
|
# 'src/machine-id-setup/machine-id-setup-main.c',
|
|
# include_directories : includes,
|
|
# link_with : [libcore_shared,
|
|
# libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
#
|
|
# executable(
|
|
# 'systemd-fsck',
|
|
# 'src/fsck/fsck.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# executable('systemd-growfs',
|
|
# 'src/partition/growfs.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [libcryptsetup],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# executable(
|
|
# 'systemd-makefs',
|
|
# 'src/partition/makefs.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# executable(
|
|
# 'systemd-sleep',
|
|
# 'src/sleep/sleep.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# install_data('src/sleep/sleep.conf',
|
|
# install_dir : pkgsysconfdir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-sysctl',
|
|
# 'src/sysctl/sysctl.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# executable(
|
|
# 'systemd-ac-power',
|
|
# 'src/ac-power/ac-power.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-detect-virt',
|
|
# 'src/detect-virt/detect-virt.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true)
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-delta',
|
|
# 'src/delta/delta.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true)
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-escape',
|
|
# 'src/escape/escape.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-notify',
|
|
# 'src/notify/notify.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
#
|
|
# executable(
|
|
# 'systemd-volatile-root',
|
|
# 'src/volatile-root/volatile-root.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : conf.get('ENABLE_INITRD') == 1,
|
|
# install_dir : rootlibexecdir)
|
|
#else // 0
|
|
executable('elogind-cgroups-agent',
|
|
'src/cgroups-agent/cgroups-agent.c',
|
|
include_directories : includes,
|
|
link_with : [libshared],
|
|
install_rpath : rootlibexecdir,
|
|
install : true,
|
|
install_dir : rootlibexecdir)
|
|
#endif // 0
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# executable(
|
|
# 'systemd-cgroups-agent',
|
|
# 'src/cgroups-agent/cgroups-agent.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-id128',
|
|
# 'src/id128/id128.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true)
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-path',
|
|
# 'src/path/path.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true)
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-ask-password',
|
|
# 'src/ask-password/ask-password.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
#
|
|
# executable(
|
|
# 'systemd-reply-password',
|
|
# 'src/reply-password/reply-password.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-tty-ask-password-agent',
|
|
# 'src/tty-ask-password-agent/tty-ask-password-agent.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-cgls',
|
|
# 'src/cgls/cgls.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true)
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-cgtop',
|
|
# 'src/cgtop/cgtop.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true)
|
|
#
|
|
# executable(
|
|
# 'systemd-initctl',
|
|
# 'src/initctl/initctl.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : (conf.get('HAVE_SYSV_COMPAT') == 1),
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-mount',
|
|
# 'src/mount/mount-tool.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies: [libmount],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true)
|
|
#
|
|
# meson.add_install_script(meson_make_symlink,
|
|
# 'systemd-mount', join_paths(bindir, 'systemd-umount'))
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-run',
|
|
# 'src/run/run.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true)
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-stdio-bridge',
|
|
# 'src/stdio-bridge/stdio-bridge.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [versiondep],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true)
|
|
#endif // 0
|
|
|
|
public_programs += executable(
|
|
'busctl',
|
|
'src/busctl/busctl.c',
|
|
'src/busctl/busctl-introspect.c',
|
|
'src/busctl/busctl-introspect.h',
|
|
include_directories : includes,
|
|
link_with : [libshared],
|
|
install_rpath : rootlibexecdir,
|
|
install : true)
|
|
|
|
#if 0 /// UNNEEDED by elogind
|
|
# if conf.get('ENABLE_SYSUSERS') == 1
|
|
# public_programs += executable(
|
|
# 'systemd-sysusers',
|
|
# 'src/sysusers/sysusers.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
#
|
|
# if have_standalone_binaries
|
|
# public_programs += executable(
|
|
# 'systemd-sysusers.standalone',
|
|
# 'src/sysusers/sysusers.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared_static,
|
|
# libbasic,
|
|
# libbasic_gcrypt,
|
|
# libsystemd_static,
|
|
# libjournal_client],
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
# endif
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_TMPFILES') == 1
|
|
# exe = executable(
|
|
# 'systemd-tmpfiles',
|
|
# systemd_tmpfiles_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [libacl],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
# public_programs += exe
|
|
#
|
|
# if want_tests != 'false'
|
|
# test('test-systemd-tmpfiles',
|
|
# test_systemd_tmpfiles_py,
|
|
# # https://github.com/mesonbuild/meson/issues/2681
|
|
# args : exe.full_path())
|
|
# endif
|
|
#
|
|
# if have_standalone_binaries
|
|
# public_programs += executable(
|
|
# 'systemd-tmpfiles.standalone',
|
|
# systemd_tmpfiles_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libshared_static,
|
|
# libbasic,
|
|
# libbasic_gcrypt,
|
|
# libsystemd_static,
|
|
# libjournal_client],
|
|
# dependencies : [libacl],
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
# endif
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_HWDB') == 1
|
|
# public_programs += executable(
|
|
# 'systemd-hwdb',
|
|
# 'src/hwdb/hwdb.c',
|
|
# 'src/libsystemd/sd-hwdb/hwdb-internal.h',
|
|
# include_directories : includes,
|
|
# link_with : [libudev_static],
|
|
# install_rpath : udev_rpath,
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
# endif
|
|
#
|
|
# if conf.get('ENABLE_QUOTACHECK') == 1
|
|
# executable(
|
|
# 'systemd-quotacheck',
|
|
# 'src/quotacheck/quotacheck.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
# endif
|
|
#
|
|
# public_programs += executable(
|
|
# 'systemd-socket-proxyd',
|
|
# 'src/socket-proxy/socket-proxyd.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [threads],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# public_programs += executable(
|
|
# 'udevadm',
|
|
# udevadm_sources,
|
|
# c_args : '-DLOG_REALM=LOG_REALM_UDEV',
|
|
# include_directories : includes,
|
|
# link_with : [libudev_core,
|
|
# libsystemd_network,
|
|
# libudev_static],
|
|
# dependencies : [versiondep,
|
|
# threads,
|
|
# libkmod,
|
|
# libidn,
|
|
# libacl,
|
|
# libblkid],
|
|
# install_rpath : udev_rpath,
|
|
# install : true,
|
|
# install_dir : rootbindir)
|
|
#
|
|
# executable(
|
|
# 'systemd-shutdown',
|
|
# systemd_shutdown_sources,
|
|
# include_directories : includes,
|
|
# link_with : [libcore_shared,
|
|
# libshared],
|
|
# dependencies : [libmount],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# executable(
|
|
# 'systemd-update-done',
|
|
# 'src/update-done/update-done.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# install_rpath : rootlibexecdir,
|
|
# install : true,
|
|
# install_dir : rootlibexecdir)
|
|
#
|
|
# executable(
|
|
# 'systemd-update-utmp',
|
|
# 'src/update-utmp/update-utmp.c',
|
|
# include_directories : includes,
|
|
# link_with : [libshared],
|
|
# dependencies : [libaudit],
|
|
# install_rpath : rootlibexecdir,
|
|