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