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