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