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