Zbigniew Jędrzejewski-Szmek | 3a726fc | 2017-11-18 18:32:01 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: LGPL-2.1+ |
Zbigniew Jędrzejewski-Szmek | 3a726fc | 2017-11-18 18:32:01 +0100 | [diff] [blame] | 2 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3 | project('systemd', 'c', |
Zbigniew Jędrzejewski-Szmek | 3994922 | 2020-07-08 17:35:54 +0200 | [diff] [blame] | 4 | version : '246', |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 5 | license : 'LGPLv2+', |
| 6 | default_options: [ |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 7 | 'c_std=gnu99', |
| 8 | 'prefix=/usr', |
| 9 | 'sysconfdir=/etc', |
| 10 | 'localstatedir=/var', |
Zbigniew Jędrzejewski-Szmek | 827ca90 | 2019-11-10 11:39:15 +0100 | [diff] [blame] | 11 | 'warning_level=2', |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 12 | ], |
Yu Watanabe | 7a6397d | 2018-05-15 20:18:24 +0900 | [diff] [blame] | 13 | meson_version : '>= 0.46', |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 14 | ) |
| 15 | |
Zbigniew Jędrzejewski-Szmek | 3994922 | 2020-07-08 17:35:54 +0200 | [diff] [blame] | 16 | libsystemd_version = '0.29.0' |
Lennart Poettering | 3b684be | 2018-12-13 18:08:45 +0100 | [diff] [blame] | 17 | libudev_version = '1.7.0' |
Zbigniew Jędrzejewski-Szmek | 56d50ab | 2017-09-28 19:24:16 +0200 | [diff] [blame] | 18 | |
Yu Watanabe | 348b443 | 2018-05-07 18:17:35 +0900 | [diff] [blame] | 19 | # We need the same data in two different formats, ugh! |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 20 | # Also, for hysterical reasons, we use different variable |
| 21 | # names, sometimes. Not all variables are included in every |
| 22 | # set. Ugh, ugh, ugh! |
| 23 | conf = configuration_data() |
Zbigniew Jędrzejewski-Szmek | 6ffeca8 | 2020-02-28 11:09:16 +0100 | [diff] [blame] | 24 | conf.set('PROJECT_VERSION', meson.project_version(), |
| 25 | description : 'Numerical project version (used where a simple number is expected)') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 26 | |
| 27 | substs = configuration_data() |
Zbigniew Jędrzejewski-Szmek | a67c318 | 2018-12-19 11:23:42 +0100 | [diff] [blame] | 28 | substs.set('PROJECT_URL', 'https://www.freedesktop.org/wiki/Software/systemd') |
Zbigniew Jędrzejewski-Szmek | 6ffeca8 | 2020-02-28 11:09:16 +0100 | [diff] [blame] | 29 | substs.set('PROJECT_VERSION', meson.project_version(), |
| 30 | description : 'Numerical project version (used where a simple number is expected)') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 31 | |
Davide Cavalca | 1485aac | 2019-02-27 11:19:07 -0500 | [diff] [blame] | 32 | # This is to be used instead of meson.source_root(), as the latter will return |
| 33 | # the wrong result when systemd is being built as a meson subproject |
| 34 | project_source_root = meson.current_source_dir() |
Zbigniew Jędrzejewski-Szmek | 81e0677 | 2020-04-24 20:12:03 +0200 | [diff] [blame] | 35 | project_build_root = meson.current_build_dir() |
Zbigniew Jędrzejewski-Szmek | a0b15b4 | 2019-06-07 14:41:36 +0200 | [diff] [blame] | 36 | relative_source_path = run_command('realpath', |
Zbigniew Jędrzejewski-Szmek | 81e0677 | 2020-04-24 20:12:03 +0200 | [diff] [blame] | 37 | '--relative-to=@0@'.format(project_build_root), |
Zbigniew Jędrzejewski-Szmek | a0b15b4 | 2019-06-07 14:41:36 +0200 | [diff] [blame] | 38 | project_source_root).stdout().strip() |
| 39 | conf.set_quoted('RELATIVE_SOURCE_PATH', relative_source_path) |
Davide Cavalca | 1485aac | 2019-02-27 11:19:07 -0500 | [diff] [blame] | 40 | |
Zbigniew Jędrzejewski-Szmek | b8ee349 | 2020-10-21 10:04:23 +0200 | [diff] [blame] | 41 | conf.set('BUILD_MODE', 'BUILD_MODE_' + get_option('mode').to_upper(), |
| 42 | description : 'tailor build to development or release builds') |
Zbigniew Jędrzejewski-Szmek | 839bdf2 | 2020-08-27 17:26:49 +0200 | [diff] [blame] | 43 | |
Zbigniew Jędrzejewski-Szmek | c09edc7 | 2018-10-10 11:56:45 +0200 | [diff] [blame] | 44 | want_ossfuzz = get_option('oss-fuzz') |
| 45 | want_libfuzzer = get_option('llvm-fuzz') |
Evgeny Vereshchagin | 6b8d32e | 2020-03-30 06:42:19 +0000 | [diff] [blame] | 46 | if want_ossfuzz + want_libfuzzer > 1 |
| 47 | error('only one of oss-fuzz or llvm-fuzz can be specified') |
Zbigniew Jędrzejewski-Szmek | c09edc7 | 2018-10-10 11:56:45 +0200 | [diff] [blame] | 48 | endif |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 49 | |
| 50 | skip_deps = want_ossfuzz or want_libfuzzer |
Evgeny Vereshchagin | 6b8d32e | 2020-03-30 06:42:19 +0000 | [diff] [blame] | 51 | fuzzer_build = want_ossfuzz or want_libfuzzer |
Zbigniew Jędrzejewski-Szmek | c09edc7 | 2018-10-10 11:56:45 +0200 | [diff] [blame] | 52 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 53 | ##################################################################### |
| 54 | |
Zbigniew Jędrzejewski-Szmek | 003c887 | 2017-07-24 04:41:45 -0400 | [diff] [blame] | 55 | # Try to install the git pre-commit hook |
Zbigniew Jędrzejewski-Szmek | e2d612a | 2020-03-28 09:30:51 +0100 | [diff] [blame] | 56 | add_git_hook_sh = find_program('tools/add-git-hook.sh', required : false) |
| 57 | if add_git_hook_sh.found() |
| 58 | git_hook = run_command(add_git_hook_sh) |
| 59 | if git_hook.returncode() == 0 |
| 60 | message(git_hook.stdout().strip()) |
| 61 | endif |
Zbigniew Jędrzejewski-Szmek | 003c887 | 2017-07-24 04:41:45 -0400 | [diff] [blame] | 62 | endif |
| 63 | |
| 64 | ##################################################################### |
| 65 | |
Zbigniew Jędrzejewski-Szmek | 2675413 | 2018-03-01 11:49:42 +0100 | [diff] [blame] | 66 | if get_option('split-usr') == 'auto' |
| 67 | split_usr = run_command('test', '-L', '/bin').returncode() != 0 |
| 68 | else |
| 69 | split_usr = get_option('split-usr') == 'true' |
| 70 | endif |
Zbigniew Jędrzejewski-Szmek | 671f0f8 | 2018-03-01 21:48:36 +0100 | [diff] [blame] | 71 | conf.set10('HAVE_SPLIT_USR', split_usr, |
| 72 | description : '/usr/bin and /bin directories are separate') |
Zbigniew Jędrzejewski-Szmek | 9a8e64b | 2017-11-28 21:46:53 +0100 | [diff] [blame] | 73 | |
Zbigniew Jędrzejewski-Szmek | 157baa8 | 2018-03-01 10:28:29 +0100 | [diff] [blame] | 74 | if get_option('split-bin') == 'auto' |
| 75 | split_bin = run_command('test', '-L', '/usr/sbin').returncode() != 0 |
| 76 | else |
| 77 | split_bin = get_option('split-bin') == 'true' |
| 78 | endif |
Zbigniew Jędrzejewski-Szmek | 671f0f8 | 2018-03-01 21:48:36 +0100 | [diff] [blame] | 79 | conf.set10('HAVE_SPLIT_BIN', split_bin, |
| 80 | description : 'bin and sbin directories are separate') |
Zbigniew Jędrzejewski-Szmek | 157baa8 | 2018-03-01 10:28:29 +0100 | [diff] [blame] | 81 | |
Zbigniew Jędrzejewski-Szmek | 74344a1 | 2017-11-28 20:00:10 +0100 | [diff] [blame] | 82 | rootprefixdir = get_option('rootprefix') |
Zbigniew Jędrzejewski-Szmek | 74344a1 | 2017-11-28 20:00:10 +0100 | [diff] [blame] | 83 | # Unusual rootprefixdir values are used by some distros |
| 84 | # (see https://github.com/systemd/systemd/pull/7461). |
Zbigniew Jędrzejewski-Szmek | ba7f4ae | 2018-02-28 10:20:48 +0100 | [diff] [blame] | 85 | rootprefix_default = split_usr ? '/' : '/usr' |
Zbigniew Jędrzejewski-Szmek | 9a8e64b | 2017-11-28 21:46:53 +0100 | [diff] [blame] | 86 | if rootprefixdir == '' |
| 87 | rootprefixdir = rootprefix_default |
Zbigniew Jędrzejewski-Szmek | 74344a1 | 2017-11-28 20:00:10 +0100 | [diff] [blame] | 88 | endif |
Zbigniew Jędrzejewski-Szmek | 23bdba6 | 2019-03-05 16:46:52 +0100 | [diff] [blame] | 89 | rootprefixdir_noslash = rootprefixdir == '/' ? '' : rootprefixdir |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 90 | |
Filipe Brandenburger | 8ef8f3d | 2020-06-03 14:02:59 -0700 | [diff] [blame] | 91 | have_standalone_binaries = get_option('standalone-binaries') |
| 92 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 93 | sysvinit_path = get_option('sysvinit-path') |
| 94 | sysvrcnd_path = get_option('sysvrcnd-path') |
Yu Watanabe | 348b443 | 2018-05-07 18:17:35 +0900 | [diff] [blame] | 95 | conf.set10('HAVE_SYSV_COMPAT', sysvinit_path != '' and sysvrcnd_path != '', |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 96 | description : 'SysV init scripts and rcN.d links are supported') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 97 | |
Norbert Lange | cdf7ad3 | 2020-04-08 23:59:13 +0200 | [diff] [blame] | 98 | if get_option('hibernate') and not get_option('initrd') |
| 99 | error('hibernate depends on initrd') |
| 100 | endif |
| 101 | |
Lennart Poettering | a8b627a | 2018-10-11 18:23:26 +0200 | [diff] [blame] | 102 | conf.set10('BUMP_PROC_SYS_FS_FILE_MAX', get_option('bump-proc-sys-fs-file-max')) |
| 103 | conf.set10('BUMP_PROC_SYS_FS_NR_OPEN', get_option('bump-proc-sys-fs-nr-open')) |
Lennart Poettering | 09dad04 | 2018-11-15 09:50:42 +0100 | [diff] [blame] | 104 | conf.set('HIGH_RLIMIT_NOFILE', 512*1024) |
Lennart Poettering | a8b627a | 2018-10-11 18:23:26 +0200 | [diff] [blame] | 105 | |
Zbigniew Jędrzejewski-Szmek | 23bdba6 | 2019-03-05 16:46:52 +0100 | [diff] [blame] | 106 | # join_paths ignores the preceding arguments if an absolute component is |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 107 | # encountered, so this should canonicalize various paths when they are |
| 108 | # absolute or relative. |
| 109 | prefixdir = get_option('prefix') |
| 110 | if not prefixdir.startswith('/') |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 111 | error('Prefix is not absolute: "@0@"'.format(prefixdir)) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 112 | endif |
| 113 | bindir = join_paths(prefixdir, get_option('bindir')) |
| 114 | libdir = join_paths(prefixdir, get_option('libdir')) |
| 115 | sysconfdir = join_paths(prefixdir, get_option('sysconfdir')) |
| 116 | includedir = join_paths(prefixdir, get_option('includedir')) |
| 117 | datadir = join_paths(prefixdir, get_option('datadir')) |
| 118 | localstatedir = join_paths('/', get_option('localstatedir')) |
| 119 | |
| 120 | rootbindir = join_paths(rootprefixdir, 'bin') |
Zbigniew Jędrzejewski-Szmek | 157baa8 | 2018-03-01 10:28:29 +0100 | [diff] [blame] | 121 | rootsbindir = join_paths(rootprefixdir, split_bin ? 'sbin' : 'bin') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 122 | rootlibexecdir = join_paths(rootprefixdir, 'lib/systemd') |
| 123 | |
| 124 | rootlibdir = get_option('rootlibdir') |
| 125 | if rootlibdir == '' |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 126 | rootlibdir = join_paths(rootprefixdir, libdir.split('/')[-1]) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 127 | endif |
| 128 | |
| 129 | # Dirs of external packages |
Benedikt Morbach | a95696e | 2018-08-10 04:59:54 +0200 | [diff] [blame] | 130 | pkgconfigdatadir = get_option('pkgconfigdatadir') == '' ? join_paths(datadir, 'pkgconfig') : get_option('pkgconfigdatadir') |
| 131 | pkgconfiglibdir = get_option('pkgconfiglibdir') == '' ? join_paths(libdir, 'pkgconfig') : get_option('pkgconfiglibdir') |
Michael Biebl | e17e5ba | 2017-04-13 10:30:56 -0400 | [diff] [blame] | 132 | polkitpolicydir = join_paths(datadir, 'polkit-1/actions') |
| 133 | polkitrulesdir = join_paths(datadir, 'polkit-1/rules.d') |
| 134 | polkitpkladir = join_paths(localstatedir, 'lib/polkit-1/localauthority/10-vendor.d') |
Michael Biebl | e17e5ba | 2017-04-13 10:30:56 -0400 | [diff] [blame] | 135 | xinitrcdir = join_paths(sysconfdir, 'X11/xinit/xinitrc.d') |
Yu Watanabe | 8a38aac | 2017-11-23 22:20:22 +0900 | [diff] [blame] | 136 | rpmmacrosdir = get_option('rpmmacrosdir') |
| 137 | if rpmmacrosdir != 'no' |
| 138 | rpmmacrosdir = join_paths(prefixdir, rpmmacrosdir) |
| 139 | endif |
Michael Biebl | 02fa054 | 2017-10-21 08:32:50 +0200 | [diff] [blame] | 140 | modprobedir = join_paths(rootprefixdir, 'lib/modprobe.d') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 141 | |
| 142 | # Our own paths |
Michael Biebl | e17e5ba | 2017-04-13 10:30:56 -0400 | [diff] [blame] | 143 | pkgdatadir = join_paths(datadir, 'systemd') |
| 144 | environmentdir = join_paths(prefixdir, 'lib/environment.d') |
| 145 | pkgsysconfdir = join_paths(sysconfdir, 'systemd') |
| 146 | userunitdir = join_paths(prefixdir, 'lib/systemd/user') |
| 147 | userpresetdir = join_paths(prefixdir, 'lib/systemd/user-preset') |
| 148 | tmpfilesdir = join_paths(prefixdir, 'lib/tmpfiles.d') |
| 149 | sysusersdir = join_paths(prefixdir, 'lib/sysusers.d') |
| 150 | sysctldir = join_paths(prefixdir, 'lib/sysctl.d') |
| 151 | binfmtdir = join_paths(prefixdir, 'lib/binfmt.d') |
| 152 | modulesloaddir = join_paths(prefixdir, 'lib/modules-load.d') |
| 153 | networkdir = join_paths(rootprefixdir, 'lib/systemd/network') |
| 154 | pkgincludedir = join_paths(includedir, 'systemd') |
| 155 | systemgeneratordir = join_paths(rootlibexecdir, 'system-generators') |
| 156 | usergeneratordir = join_paths(prefixdir, 'lib/systemd/user-generators') |
| 157 | systemenvgeneratordir = join_paths(prefixdir, 'lib/systemd/system-environment-generators') |
| 158 | userenvgeneratordir = join_paths(prefixdir, 'lib/systemd/user-environment-generators') |
| 159 | systemshutdowndir = join_paths(rootlibexecdir, 'system-shutdown') |
| 160 | systemsleepdir = join_paths(rootlibexecdir, 'system-sleep') |
| 161 | systemunitdir = join_paths(rootprefixdir, 'lib/systemd/system') |
| 162 | systempresetdir = join_paths(rootprefixdir, 'lib/systemd/system-preset') |
| 163 | udevlibexecdir = join_paths(rootprefixdir, 'lib/udev') |
Michael Biebl | e17e5ba | 2017-04-13 10:30:56 -0400 | [diff] [blame] | 164 | udevrulesdir = join_paths(udevlibexecdir, 'rules.d') |
| 165 | udevhwdbdir = join_paths(udevlibexecdir, 'hwdb.d') |
| 166 | catalogdir = join_paths(prefixdir, 'lib/systemd/catalog') |
| 167 | kernelinstalldir = join_paths(prefixdir, 'lib/kernel/install.d') |
| 168 | factorydir = join_paths(datadir, 'factory') |
Michael Biebl | e17e5ba | 2017-04-13 10:30:56 -0400 | [diff] [blame] | 169 | bootlibdir = join_paths(prefixdir, 'lib/systemd/boot/efi') |
| 170 | testsdir = join_paths(prefixdir, 'lib/systemd/tests') |
| 171 | systemdstatedir = join_paths(localstatedir, 'lib/systemd') |
| 172 | catalogstatedir = join_paths(systemdstatedir, 'catalog') |
| 173 | randomseeddir = join_paths(localstatedir, 'lib/systemd') |
Lennart Poettering | 61d0578 | 2018-04-16 21:41:40 +0200 | [diff] [blame] | 174 | profiledir = join_paths(rootlibexecdir, 'portable', 'profile') |
Zbigniew Jędrzejewski-Szmek | e5ea741 | 2019-07-22 14:47:51 +0200 | [diff] [blame] | 175 | ntpservicelistdir = join_paths(rootprefixdir, 'lib/systemd/ntp-units.d') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 176 | |
tblume | 75aaade | 2018-02-01 22:46:15 +0100 | [diff] [blame] | 177 | docdir = get_option('docdir') |
| 178 | if docdir == '' |
| 179 | docdir = join_paths(datadir, 'doc/systemd') |
| 180 | endif |
| 181 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 182 | dbuspolicydir = get_option('dbuspolicydir') |
| 183 | if dbuspolicydir == '' |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 184 | dbuspolicydir = join_paths(datadir, 'dbus-1/system.d') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 185 | endif |
| 186 | |
| 187 | dbussessionservicedir = get_option('dbussessionservicedir') |
| 188 | if dbussessionservicedir == '' |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 189 | dbussessionservicedir = join_paths(datadir, 'dbus-1/services') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 190 | endif |
| 191 | |
| 192 | dbussystemservicedir = get_option('dbussystemservicedir') |
| 193 | if dbussystemservicedir == '' |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 194 | dbussystemservicedir = join_paths(datadir, 'dbus-1/system-services') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 195 | endif |
| 196 | |
| 197 | pamlibdir = get_option('pamlibdir') |
| 198 | if pamlibdir == '' |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 199 | pamlibdir = join_paths(rootlibdir, 'security') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 200 | endif |
| 201 | |
| 202 | pamconfdir = get_option('pamconfdir') |
| 203 | if pamconfdir == '' |
Lennart Poettering | bae66f4 | 2020-09-09 18:55:35 +0200 | [diff] [blame] | 204 | pamconfdir = join_paths(prefixdir, 'lib/pam.d') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 205 | endif |
| 206 | |
Zbigniew Jędrzejewski-Szmek | 444d586 | 2018-02-15 11:43:08 +0100 | [diff] [blame] | 207 | memory_accounting_default = get_option('memory-accounting-default') |
Zbigniew Jędrzejewski-Szmek | 36cf450 | 2019-06-06 19:22:20 +0200 | [diff] [blame] | 208 | status_unit_format_default = get_option('status-unit-format-default') |
Zbigniew Jędrzejewski-Szmek | 444d586 | 2018-02-15 11:43:08 +0100 | [diff] [blame] | 209 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 210 | conf.set_quoted('PKGSYSCONFDIR', pkgsysconfdir) |
Zbigniew Jędrzejewski-Szmek | 96d33e4 | 2020-03-24 16:28:26 +0100 | [diff] [blame] | 211 | conf.set_quoted('SYSTEM_CONFIG_UNIT_DIR', join_paths(pkgsysconfdir, 'system')) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 212 | conf.set_quoted('SYSTEM_DATA_UNIT_PATH', systemunitdir) |
| 213 | conf.set_quoted('SYSTEM_SYSVINIT_PATH', sysvinit_path) |
| 214 | conf.set_quoted('SYSTEM_SYSVRCND_PATH', sysvrcnd_path) |
Zbigniew Jędrzejewski-Szmek | 452d2df | 2020-09-15 17:44:26 +0200 | [diff] [blame] | 215 | conf.set_quoted('RC_LOCAL_PATH', get_option('rc-local')) |
Alexander F Rødseth | 96164a3 | 2018-03-01 13:12:02 +0100 | [diff] [blame] | 216 | |
Zbigniew Jędrzejewski-Szmek | f7c5427 | 2018-03-02 09:09:29 +0100 | [diff] [blame] | 217 | 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] | 218 | |
Zbigniew Jędrzejewski-Szmek | 96d33e4 | 2020-03-24 16:28:26 +0100 | [diff] [blame] | 219 | conf.set_quoted('USER_CONFIG_UNIT_DIR', join_paths(pkgsysconfdir, 'user')) |
| 220 | conf.set_quoted('USER_DATA_UNIT_DIR', userunitdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 221 | conf.set_quoted('CERTIFICATE_ROOT', get_option('certificate-root')) |
Michael Biebl | e17e5ba | 2017-04-13 10:30:56 -0400 | [diff] [blame] | 222 | conf.set_quoted('CATALOG_DATABASE', join_paths(catalogstatedir, 'database')) |
| 223 | conf.set_quoted('SYSTEMD_CGROUP_AGENT_PATH', join_paths(rootlibexecdir, 'systemd-cgroups-agent')) |
| 224 | conf.set_quoted('SYSTEMD_BINARY_PATH', join_paths(rootlibexecdir, 'systemd')) |
| 225 | 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] | 226 | 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] | 227 | conf.set_quoted('SYSTEMD_GROWFS_PATH', join_paths(rootlibexecdir, 'systemd-growfs')) |
Michael Biebl | e17e5ba | 2017-04-13 10:30:56 -0400 | [diff] [blame] | 228 | conf.set_quoted('SYSTEMD_SHUTDOWN_BINARY_PATH', join_paths(rootlibexecdir, 'systemd-shutdown')) |
Michael Biebl | e17e5ba | 2017-04-13 10:30:56 -0400 | [diff] [blame] | 229 | conf.set_quoted('SYSTEMCTL_BINARY_PATH', join_paths(rootbindir, 'systemctl')) |
| 230 | conf.set_quoted('SYSTEMD_TTY_ASK_PASSWORD_AGENT_BINARY_PATH', join_paths(rootbindir, 'systemd-tty-ask-password-agent')) |
| 231 | 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] | 232 | conf.set_quoted('ROOTPREFIX', rootprefixdir) |
Lennart Poettering | b612c26 | 2020-09-10 18:20:05 +0200 | [diff] [blame] | 233 | conf.set_quoted('ROOTPREFIX_NOSLASH', rootprefixdir_noslash) |
Zbigniew Jędrzejewski-Szmek | 3131bfe | 2017-04-10 19:06:45 -0400 | [diff] [blame] | 234 | conf.set_quoted('RANDOM_SEED_DIR', randomseeddir) |
Michael Biebl | e17e5ba | 2017-04-13 10:30:56 -0400 | [diff] [blame] | 235 | conf.set_quoted('RANDOM_SEED', join_paths(randomseeddir, 'random-seed')) |
| 236 | conf.set_quoted('SYSTEMD_CRYPTSETUP_PATH', join_paths(rootlibexecdir, 'systemd-cryptsetup')) |
Zbigniew Jędrzejewski-Szmek | 96d33e4 | 2020-03-24 16:28:26 +0100 | [diff] [blame] | 237 | conf.set_quoted('SYSTEM_GENERATOR_DIR', systemgeneratordir) |
| 238 | conf.set_quoted('USER_GENERATOR_DIR', usergeneratordir) |
| 239 | conf.set_quoted('SYSTEM_ENV_GENERATOR_DIR', systemenvgeneratordir) |
| 240 | conf.set_quoted('USER_ENV_GENERATOR_DIR', userenvgeneratordir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 241 | conf.set_quoted('SYSTEM_SHUTDOWN_PATH', systemshutdowndir) |
| 242 | conf.set_quoted('SYSTEM_SLEEP_PATH', systemsleepdir) |
Michael Biebl | e17e5ba | 2017-04-13 10:30:56 -0400 | [diff] [blame] | 243 | conf.set_quoted('SYSTEMD_KBD_MODEL_MAP', join_paths(pkgdatadir, 'kbd-model-map')) |
| 244 | conf.set_quoted('SYSTEMD_LANGUAGE_FALLBACK_MAP', join_paths(pkgdatadir, 'language-fallback-map')) |
Filipe Brandenburger | e2d4137 | 2018-09-11 23:55:02 -0700 | [diff] [blame] | 245 | conf.set_quoted('SYSTEMD_TEST_DATA', join_paths(testsdir, 'testdata')) |
Filipe Brandenburger | 49cdae6 | 2018-09-12 00:23:40 -0700 | [diff] [blame] | 246 | conf.set_quoted('SYSTEMD_CATALOG_DIR', catalogdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 247 | conf.set_quoted('UDEVLIBEXECDIR', udevlibexecdir) |
Michael Biebl | e17e5ba | 2017-04-13 10:30:56 -0400 | [diff] [blame] | 248 | 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] | 249 | conf.set_quoted('LIBDIR', libdir) |
| 250 | conf.set_quoted('ROOTLIBDIR', rootlibdir) |
| 251 | conf.set_quoted('ROOTLIBEXECDIR', rootlibexecdir) |
| 252 | conf.set_quoted('BOOTLIBDIR', bootlibdir) |
Michael Biebl | e17e5ba | 2017-04-13 10:30:56 -0400 | [diff] [blame] | 253 | conf.set_quoted('SYSTEMD_PULL_PATH', join_paths(rootlibexecdir, 'systemd-pull')) |
| 254 | conf.set_quoted('SYSTEMD_IMPORT_PATH', join_paths(rootlibexecdir, 'systemd-import')) |
Lennart Poettering | 1d7579c | 2018-10-10 21:20:08 +0200 | [diff] [blame] | 255 | conf.set_quoted('SYSTEMD_IMPORT_FS_PATH', join_paths(rootlibexecdir, 'systemd-import-fs')) |
Michael Biebl | e17e5ba | 2017-04-13 10:30:56 -0400 | [diff] [blame] | 256 | conf.set_quoted('SYSTEMD_EXPORT_PATH', join_paths(rootlibexecdir, 'systemd-export')) |
| 257 | conf.set_quoted('VENDOR_KEYRING_PATH', join_paths(rootlibexecdir, 'import-pubring.gpg')) |
| 258 | conf.set_quoted('USER_KEYRING_PATH', join_paths(pkgsysconfdir, 'import-pubring.gpg')) |
| 259 | conf.set_quoted('DOCUMENT_ROOT', join_paths(pkgdatadir, 'gatewayd')) |
Lennart Poettering | 70a5db5 | 2019-07-04 18:35:39 +0200 | [diff] [blame] | 260 | conf.set_quoted('SYSTEMD_HOMEWORK_PATH', join_paths(rootlibexecdir, 'systemd-homework')) |
Lennart Poettering | d093b62 | 2019-07-04 18:33:30 +0200 | [diff] [blame] | 261 | conf.set_quoted('SYSTEMD_USERWORK_PATH', join_paths(rootlibexecdir, 'systemd-userwork')) |
Zbigniew Jędrzejewski-Szmek | 30538ff | 2018-10-17 14:36:09 +0200 | [diff] [blame] | 262 | conf.set10('MEMORY_ACCOUNTING_DEFAULT', memory_accounting_default) |
Michal Koutný | 7f672e8 | 2018-03-09 18:27:13 +0100 | [diff] [blame] | 263 | conf.set_quoted('MEMORY_ACCOUNTING_DEFAULT_YES_NO', memory_accounting_default ? 'yes' : 'no') |
Zbigniew Jędrzejewski-Szmek | 36cf450 | 2019-06-06 19:22:20 +0200 | [diff] [blame] | 264 | conf.set('STATUS_UNIT_FORMAT_DEFAULT', 'STATUS_UNIT_FORMAT_' + status_unit_format_default.to_upper()) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 265 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 266 | substs.set('prefix', prefixdir) |
Zbigniew Jędrzejewski-Szmek | 1c2c7c6 | 2018-11-17 15:38:15 +0100 | [diff] [blame] | 267 | substs.set('rootprefix', rootprefixdir) |
Zbigniew Jędrzejewski-Szmek | 23bdba6 | 2019-03-05 16:46:52 +0100 | [diff] [blame] | 268 | substs.set('rootprefix_noslash', rootprefixdir_noslash) |
Zbigniew Jędrzejewski-Szmek | 3131bfe | 2017-04-10 19:06:45 -0400 | [diff] [blame] | 269 | substs.set('exec_prefix', prefixdir) |
| 270 | substs.set('libdir', libdir) |
| 271 | substs.set('rootlibdir', rootlibdir) |
| 272 | substs.set('includedir', includedir) |
Zbigniew Jędrzejewski-Szmek | 1c2c7c6 | 2018-11-17 15:38:15 +0100 | [diff] [blame] | 273 | substs.set('sysconfdir', sysconfdir) |
Zbigniew Jędrzejewski-Szmek | 3131bfe | 2017-04-10 19:06:45 -0400 | [diff] [blame] | 274 | substs.set('bindir', bindir) |
| 275 | substs.set('rootbindir', rootbindir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 276 | substs.set('rootlibexecdir', rootlibexecdir) |
| 277 | substs.set('systemunitdir', systemunitdir) |
| 278 | substs.set('userunitdir', userunitdir) |
| 279 | substs.set('systempresetdir', systempresetdir) |
| 280 | substs.set('userpresetdir', userpresetdir) |
| 281 | substs.set('udevhwdbdir', udevhwdbdir) |
| 282 | substs.set('udevrulesdir', udevrulesdir) |
Zbigniew Jędrzejewski-Szmek | 3131bfe | 2017-04-10 19:06:45 -0400 | [diff] [blame] | 283 | substs.set('udevlibexecdir', udevlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 424e80b | 2018-05-19 17:02:37 +0200 | [diff] [blame] | 284 | substs.set('environmentdir', environmentdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 285 | substs.set('catalogdir', catalogdir) |
| 286 | substs.set('tmpfilesdir', tmpfilesdir) |
| 287 | substs.set('sysusersdir', sysusersdir) |
| 288 | substs.set('sysctldir', sysctldir) |
| 289 | substs.set('binfmtdir', binfmtdir) |
| 290 | substs.set('modulesloaddir', modulesloaddir) |
Zbigniew Jędrzejewski-Szmek | 424e80b | 2018-05-19 17:02:37 +0200 | [diff] [blame] | 291 | substs.set('modprobedir', modprobedir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 292 | substs.set('systemgeneratordir', systemgeneratordir) |
| 293 | substs.set('usergeneratordir', usergeneratordir) |
| 294 | substs.set('systemenvgeneratordir', systemenvgeneratordir) |
| 295 | substs.set('userenvgeneratordir', userenvgeneratordir) |
| 296 | substs.set('systemshutdowndir', systemshutdowndir) |
| 297 | substs.set('systemsleepdir', systemsleepdir) |
Zbigniew Jędrzejewski-Szmek | 2a4c156 | 2017-04-12 19:54:33 -0400 | [diff] [blame] | 298 | substs.set('CERTIFICATEROOT', get_option('certificate-root')) |
Michael Biebl | e17e5ba | 2017-04-13 10:30:56 -0400 | [diff] [blame] | 299 | substs.set('RANDOM_SEED', join_paths(randomseeddir, 'random-seed')) |
Zbigniew Jędrzejewski-Szmek | 2a4c156 | 2017-04-12 19:54:33 -0400 | [diff] [blame] | 300 | substs.set('SYSTEM_SYSVINIT_PATH', sysvinit_path) |
| 301 | substs.set('SYSTEM_SYSVRCND_PATH', sysvrcnd_path) |
Zbigniew Jędrzejewski-Szmek | bd7e6aa | 2020-09-26 11:58:24 +0200 | [diff] [blame] | 302 | substs.set('SYSTEMD_TEST_DATA', join_paths(testsdir, 'testdata')) |
Zbigniew Jędrzejewski-Szmek | 452d2df | 2020-09-15 17:44:26 +0200 | [diff] [blame] | 303 | substs.set('RC_LOCAL_PATH', get_option('rc-local')) |
Zbigniew Jędrzejewski-Szmek | 444d586 | 2018-02-15 11:43:08 +0100 | [diff] [blame] | 304 | substs.set('MEMORY_ACCOUNTING_DEFAULT', memory_accounting_default ? 'yes' : 'no') |
Zbigniew Jędrzejewski-Szmek | 36cf450 | 2019-06-06 19:22:20 +0200 | [diff] [blame] | 305 | substs.set('STATUS_UNIT_FORMAT_DEFAULT', status_unit_format_default) |
Zbigniew Jędrzejewski-Szmek | c02b6ee | 2018-10-17 10:21:48 +0200 | [diff] [blame] | 306 | substs.set('HIGH_RLIMIT_NOFILE', conf.get('HIGH_RLIMIT_NOFILE')) |
Zbigniew Jędrzejewski-Szmek | 81e0677 | 2020-04-24 20:12:03 +0200 | [diff] [blame] | 307 | substs.set('BUILD_ROOT', project_build_root) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 308 | |
| 309 | ##################################################################### |
| 310 | |
| 311 | cc = meson.get_compiler('c') |
| 312 | pkgconfig = import('pkgconfig') |
Zbigniew Jędrzejewski-Szmek | dd1e33c | 2020-05-07 13:54:10 +0200 | [diff] [blame] | 313 | check_compilation_sh = find_program('tools/check-compilation.sh') |
Zbigniew Jędrzejewski-Szmek | b68dfb9 | 2018-01-19 17:54:30 +1100 | [diff] [blame] | 314 | meson_build_sh = find_program('tools/meson-build.sh') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 315 | |
Zbigniew Jędrzejewski-Szmek | d3da291 | 2018-09-12 11:02:58 +0200 | [diff] [blame] | 316 | want_tests = get_option('tests') |
| 317 | slow_tests = want_tests != 'false' and get_option('slow-tests') |
Frantisek Sumsal | c56463f | 2020-05-21 16:59:40 +0200 | [diff] [blame] | 318 | fuzz_tests = want_tests != 'false' and get_option('fuzz-tests') |
Zbigniew Jędrzejewski-Szmek | d3da291 | 2018-09-12 11:02:58 +0200 | [diff] [blame] | 319 | install_tests = get_option('install-tests') |
| 320 | |
James Hilliard | 46e63a2 | 2018-12-27 09:16:20 +0800 | [diff] [blame] | 321 | if add_languages('cpp', required : fuzzer_build) |
Zbigniew Jędrzejewski-Szmek | 3b2bdd6 | 2018-09-12 16:52:08 +0200 | [diff] [blame] | 322 | # Used only for tests |
Zbigniew Jędrzejewski-Szmek | e9f4f56 | 2019-11-10 12:16:41 +0100 | [diff] [blame] | 323 | cxx = meson.get_compiler('cpp') |
| 324 | cxx_cmd = ' '.join(cxx.cmd_array()) |
Zbigniew Jędrzejewski-Szmek | 1b2acaa | 2018-10-09 18:48:09 +0200 | [diff] [blame] | 325 | else |
Zbigniew Jędrzejewski-Szmek | 9b0ca01 | 2018-10-10 11:50:57 +0200 | [diff] [blame] | 326 | cxx_cmd = '' |
Zbigniew Jędrzejewski-Szmek | 94e2523 | 2017-05-13 13:23:28 -0400 | [diff] [blame] | 327 | endif |
| 328 | |
Jonathan Rudenberg | 31e57a3 | 2018-01-16 10:25:43 -0500 | [diff] [blame] | 329 | if want_libfuzzer |
Evgeny Vereshchagin | 9c5c467 | 2019-05-09 00:03:41 +0200 | [diff] [blame] | 330 | fuzzing_engine = meson.get_compiler('cpp').find_library('Fuzzer', required : false) |
| 331 | if fuzzing_engine.found() |
| 332 | add_project_arguments('-fsanitize-coverage=trace-pc-guard,trace-cmp', language : 'c') |
| 333 | elif cc.has_argument('-fsanitize=fuzzer-no-link') |
| 334 | add_project_arguments('-fsanitize=fuzzer-no-link', language : 'c') |
| 335 | else |
| 336 | error('Looks like neither libFuzzer nor -fsanitize=fuzzer-no-link is supported') |
| 337 | endif |
Zbigniew Jędrzejewski-Szmek | c09edc7 | 2018-10-10 11:56:45 +0200 | [diff] [blame] | 338 | elif want_ossfuzz |
Jonathan Rudenberg | 7db7d5b | 2018-01-13 19:51:07 -0500 | [diff] [blame] | 339 | fuzzing_engine = meson.get_compiler('cpp').find_library('FuzzingEngine') |
| 340 | endif |
| 341 | |
Zbigniew Jędrzejewski-Szmek | e9f4f56 | 2019-11-10 12:16:41 +0100 | [diff] [blame] | 342 | # Those generate many false positives, and we do not want to change the code to |
| 343 | # avoid them. |
| 344 | basic_disabled_warnings = [ |
| 345 | '-Wno-unused-parameter', |
| 346 | '-Wno-missing-field-initializers', |
| 347 | '-Wno-unused-result', |
| 348 | '-Wno-format-signedness', |
| 349 | ] |
Zbigniew Jędrzejewski-Szmek | e9f4f56 | 2019-11-10 12:16:41 +0100 | [diff] [blame] | 350 | |
Yu Watanabe | 30a4ddf | 2018-05-10 15:30:42 +0900 | [diff] [blame] | 351 | possible_cc_flags = [ |
Yu Watanabe | 30a4ddf | 2018-05-10 15:30:42 +0900 | [diff] [blame] | 352 | '-Werror=undef', |
| 353 | '-Wlogical-op', |
| 354 | '-Wmissing-include-dirs', |
| 355 | '-Wold-style-definition', |
| 356 | '-Wpointer-arith', |
| 357 | '-Winit-self', |
Yu Watanabe | 30a4ddf | 2018-05-10 15:30:42 +0900 | [diff] [blame] | 358 | '-Wfloat-equal', |
| 359 | '-Wsuggest-attribute=noreturn', |
| 360 | '-Werror=missing-prototypes', |
| 361 | '-Werror=implicit-function-declaration', |
| 362 | '-Werror=missing-declarations', |
| 363 | '-Werror=return-type', |
| 364 | '-Werror=incompatible-pointer-types', |
| 365 | '-Werror=format=2', |
| 366 | '-Wstrict-prototypes', |
| 367 | '-Wredundant-decls', |
| 368 | '-Wmissing-noreturn', |
| 369 | '-Wimplicit-fallthrough=5', |
| 370 | '-Wshadow', |
| 371 | '-Wendif-labels', |
| 372 | '-Wstrict-aliasing=2', |
| 373 | '-Wwrite-strings', |
| 374 | '-Werror=overflow', |
Zbigniew Jędrzejewski-Szmek | b05ecb8 | 2018-06-09 13:12:52 +0200 | [diff] [blame] | 375 | '-Werror=shift-count-overflow', |
Zbigniew Jędrzejewski-Szmek | d28b67d | 2018-06-11 13:17:43 +0200 | [diff] [blame] | 376 | '-Werror=shift-overflow=2', |
Yu Watanabe | 30a4ddf | 2018-05-10 15:30:42 +0900 | [diff] [blame] | 377 | '-Wdate-time', |
| 378 | '-Wnested-externs', |
Filipe Brandenburger | bf7efeb | 2018-09-08 13:55:09 -0700 | [diff] [blame] | 379 | |
| 380 | # negative arguments are correctly detected starting with meson 0.46. |
Zbigniew Jędrzejewski-Szmek | eed3362 | 2019-03-07 10:56:15 +0100 | [diff] [blame] | 381 | '-Wno-error=#warnings', # clang |
| 382 | '-Wno-string-plus-int', # clang |
Filipe Brandenburger | bf7efeb | 2018-09-08 13:55:09 -0700 | [diff] [blame] | 383 | |
Filipe Brandenburger | bf7efeb | 2018-09-08 13:55:09 -0700 | [diff] [blame] | 384 | # Disable -Wmaybe-uninitialized, since it's noisy on gcc 8 with |
| 385 | # optimizations enabled, producing essentially false positives. |
| 386 | '-Wno-maybe-uninitialized', |
| 387 | |
Yu Watanabe | 30a4ddf | 2018-05-10 15:30:42 +0900 | [diff] [blame] | 388 | '-ffast-math', |
| 389 | '-fno-common', |
| 390 | '-fdiagnostics-show-option', |
| 391 | '-fno-strict-aliasing', |
| 392 | '-fvisibility=hidden', |
| 393 | '-fstack-protector', |
| 394 | '-fstack-protector-strong', |
| 395 | '--param=ssp-buffer-size=4', |
| 396 | ] |
| 397 | |
| 398 | # --as-needed and --no-undefined are provided by meson by default, |
| 399 | # run mesonconf to see what is enabled |
| 400 | possible_link_flags = [ |
| 401 | '-Wl,-z,relro', |
| 402 | '-Wl,-z,now', |
Norbert Lange | 68e70ac | 2019-09-19 17:49:20 +0200 | [diff] [blame] | 403 | '-fstack-protector', |
Yu Watanabe | 30a4ddf | 2018-05-10 15:30:42 +0900 | [diff] [blame] | 404 | ] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 405 | |
Yu Watanabe | 30a4ddf | 2018-05-10 15:30:42 +0900 | [diff] [blame] | 406 | if cc.get_id() == 'clang' |
| 407 | possible_cc_flags += [ |
| 408 | '-Wno-typedef-redefinition', |
| 409 | '-Wno-gnu-variable-sized-type-not-at-end', |
| 410 | ] |
| 411 | endif |
| 412 | |
| 413 | if get_option('buildtype') != 'debug' |
| 414 | possible_cc_flags += [ |
| 415 | '-ffunction-sections', |
| 416 | '-fdata-sections', |
| 417 | ] |
| 418 | |
| 419 | possible_link_flags += '-Wl,--gc-sections' |
| 420 | endif |
| 421 | |
Zbigniew Jędrzejewski-Szmek | e9f4f56 | 2019-11-10 12:16:41 +0100 | [diff] [blame] | 422 | add_project_arguments(cc.get_supported_arguments(basic_disabled_warnings), language : 'c') |
Yu Watanabe | 30a4ddf | 2018-05-10 15:30:42 +0900 | [diff] [blame] | 423 | add_project_arguments(cc.get_supported_arguments(possible_cc_flags), language : 'c') |
Yu Watanabe | 7a6397d | 2018-05-15 20:18:24 +0900 | [diff] [blame] | 424 | add_project_link_arguments(cc.get_supported_link_arguments(possible_link_flags), language : 'c') |
Yu Watanabe | 30a4ddf | 2018-05-10 15:30:42 +0900 | [diff] [blame] | 425 | |
Zbigniew Jędrzejewski-Szmek | 94c0c5b | 2020-05-09 09:09:11 +0200 | [diff] [blame] | 426 | have = cc.has_argument('-Wzero-length-bounds') |
| 427 | conf.set10('HAVE_ZERO_LENGTH_BOUNDS', have) |
| 428 | |
Caio Marcelo de Oliveira Filho | 9e70f2f | 2018-02-19 01:37:19 -0800 | [diff] [blame] | 429 | if cc.compiles(''' |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 430 | #include <time.h> |
| 431 | #include <inttypes.h> |
| 432 | typedef uint64_t usec_t; |
| 433 | usec_t now(clockid_t clock); |
| 434 | int main(void) { |
| 435 | struct timespec now; |
| 436 | return 0; |
| 437 | } |
Fabrice Fontaine | 38c1c96 | 2018-11-29 13:22:08 +0100 | [diff] [blame] | 438 | ''', args: '-Werror=shadow', name : '-Werror=shadow with local shadowing') |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 439 | add_project_arguments('-Werror=shadow', language : 'c') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 440 | endif |
| 441 | |
Zbigniew Jędrzejewski-Szmek | e9f4f56 | 2019-11-10 12:16:41 +0100 | [diff] [blame] | 442 | if cxx_cmd != '' |
| 443 | add_project_arguments(cxx.get_supported_arguments(basic_disabled_warnings), language : 'cpp') |
| 444 | endif |
| 445 | |
Zbigniew Jędrzejewski-Szmek | 0e3cc90 | 2018-10-11 15:12:41 +0200 | [diff] [blame] | 446 | cpp = ' '.join(cc.cmd_array()) + ' -E' |
Zbigniew Jędrzejewski-Szmek | 9cc0e6e | 2017-04-11 10:25:34 -0400 | [diff] [blame] | 447 | |
Zbigniew Jędrzejewski-Szmek | 6695c20 | 2019-05-07 15:10:58 +0200 | [diff] [blame] | 448 | has_wstringop_truncation = cc.has_argument('-Wstringop-truncation') |
| 449 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 450 | ##################################################################### |
| 451 | # compilation result tests |
| 452 | |
Zbigniew Jędrzejewski-Szmek | 2c201c2 | 2017-04-27 21:13:08 -0400 | [diff] [blame] | 453 | conf.set('_GNU_SOURCE', true) |
| 454 | conf.set('__SANE_USERSPACE_TYPES__', true) |
Zbigniew Jędrzejewski-Szmek | 6695c20 | 2019-05-07 15:10:58 +0200 | [diff] [blame] | 455 | conf.set10('HAVE_WSTRINGOP_TRUNCATION', has_wstringop_truncation) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 456 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 457 | conf.set('SIZEOF_DEV_T', cc.sizeof('dev_t', prefix : '#include <sys/types.h>')) |
| 458 | conf.set('SIZEOF_INO_T', cc.sizeof('ino_t', prefix : '#include <sys/types.h>')) |
| 459 | conf.set('SIZEOF_TIME_T', cc.sizeof('time_t', prefix : '#include <sys/time.h>')) |
| 460 | conf.set('SIZEOF_RLIM_T', cc.sizeof('rlim_t', prefix : '#include <sys/resource.h>')) |
| 461 | |
| 462 | decl_headers = ''' |
| 463 | #include <uchar.h> |
Lennart Poettering | 4c2e1b3 | 2018-02-20 12:48:33 +0100 | [diff] [blame] | 464 | #include <sys/stat.h> |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 465 | ''' |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 466 | |
| 467 | foreach decl : ['char16_t', |
| 468 | 'char32_t', |
Lennart Poettering | 4c2e1b3 | 2018-02-20 12:48:33 +0100 | [diff] [blame] | 469 | 'struct statx', |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 470 | ] |
Zbigniew Jędrzejewski-Szmek | 2c201c2 | 2017-04-27 21:13:08 -0400 | [diff] [blame] | 471 | |
| 472 | # We get -1 if the size cannot be determined |
Zbigniew Jędrzejewski-Szmek | 9c869d0 | 2018-07-18 17:26:17 +0200 | [diff] [blame] | 473 | have = cc.sizeof(decl, prefix : decl_headers, args : '-D_GNU_SOURCE') > 0 |
| 474 | |
| 475 | if decl == 'struct statx' |
| 476 | if have |
| 477 | want_linux_stat_h = false |
| 478 | else |
| 479 | have = cc.sizeof(decl, |
| 480 | prefix : decl_headers + '#include <linux/stat.h>', |
| 481 | args : '-D_GNU_SOURCE') > 0 |
| 482 | want_linux_stat_h = have |
| 483 | endif |
| 484 | endif |
| 485 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 486 | conf.set10('HAVE_' + decl.underscorify().to_upper(), have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 487 | endforeach |
| 488 | |
Zbigniew Jędrzejewski-Szmek | 9c869d0 | 2018-07-18 17:26:17 +0200 | [diff] [blame] | 489 | conf.set10('WANT_LINUX_STAT_H', want_linux_stat_h) |
Filipe Brandenburger | 75720bf | 2018-07-15 22:43:35 -0700 | [diff] [blame] | 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>'''], |
Michal Sekletar | b070c7c | 2019-03-12 18:58:26 +0100 | [diff] [blame] | 519 | ['set_mempolicy', '''#include <stdlib.h> |
| 520 | #include <unistd.h>'''], |
| 521 | ['get_mempolicy', '''#include <stdlib.h> |
| 522 | #include <unistd.h>'''], |
Lennart Poettering | 5f152f4 | 2019-10-25 16:06:06 +0200 | [diff] [blame] | 523 | ['pidfd_send_signal', '''#include <stdlib.h> |
| 524 | #include <unistd.h> |
| 525 | #include <signal.h> |
| 526 | #include <sys/wait.h>'''], |
| 527 | ['pidfd_open', '''#include <stdlib.h> |
| 528 | #include <unistd.h> |
| 529 | #include <signal.h> |
| 530 | #include <sys/wait.h>'''], |
Lennart Poettering | 5ead4e8 | 2019-10-30 16:29:42 +0100 | [diff] [blame] | 531 | ['rt_sigqueueinfo', '''#include <stdlib.h> |
| 532 | #include <unistd.h> |
| 533 | #include <signal.h> |
| 534 | #include <sys/wait.h>'''], |
Zbigniew Jędrzejewski-Szmek | 4b6f74f | 2020-10-09 16:48:03 +0200 | [diff] [blame] | 535 | ['mallinfo', '''#include <malloc.h>'''], |
Lennart Poettering | 441e0fd | 2020-10-13 17:53:25 +0200 | [diff] [blame] | 536 | ['close_range', '''#include <unistd.h>'''], |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 537 | ] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 538 | |
Lennart Poettering | 85db59b | 2017-12-25 12:01:14 +0100 | [diff] [blame] | 539 | 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] | 540 | conf.set10('HAVE_' + ident[0].to_upper(), have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 541 | endforeach |
| 542 | |
Lennart Poettering | 85db59b | 2017-12-25 12:01:14 +0100 | [diff] [blame] | 543 | 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] | 544 | conf.set10('USE_SYS_RANDOM_H', true) |
Zbigniew Jędrzejewski-Szmek | 4b9545f | 2017-10-03 10:32:34 +0200 | [diff] [blame] | 545 | conf.set10('HAVE_GETRANDOM', true) |
Zbigniew Jędrzejewski-Szmek | 4984c8b | 2017-04-19 21:20:54 -0400 | [diff] [blame] | 546 | else |
| 547 | have = cc.has_function('getrandom', prefix : '''#include <linux/random.h>''') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 548 | conf.set10('USE_SYS_RANDOM_H', false) |
Zbigniew Jędrzejewski-Szmek | 4b9545f | 2017-10-03 10:32:34 +0200 | [diff] [blame] | 549 | conf.set10('HAVE_GETRANDOM', have) |
Zbigniew Jędrzejewski-Szmek | 4984c8b | 2017-04-19 21:20:54 -0400 | [diff] [blame] | 550 | endif |
| 551 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 552 | ##################################################################### |
| 553 | |
Davide Cavalca | 1485aac | 2019-02-27 11:19:07 -0500 | [diff] [blame] | 554 | vcs_tagger = [project_source_root + '/tools/meson-vcs-tag.sh', |
| 555 | project_source_root, |
Zbigniew Jędrzejewski-Szmek | e1ca734 | 2018-12-19 13:33:09 +0100 | [diff] [blame] | 556 | get_option('version-tag'), |
Zbigniew Jędrzejewski-Szmek | 681bd2c | 2018-12-20 20:35:25 +0100 | [diff] [blame] | 557 | meson.project_version()] |
| 558 | |
Louis Taylor | d1084aa | 2019-01-21 21:45:36 +0000 | [diff] [blame] | 559 | version_h = vcs_tag( |
| 560 | input : 'src/version/version.h.in', |
| 561 | output : 'version.h', |
| 562 | command: vcs_tagger) |
| 563 | |
| 564 | versiondep = declare_dependency(sources: version_h) |
| 565 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 566 | sed = find_program('sed') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 567 | awk = find_program('awk') |
Zbigniew Jędrzejewski-Szmek | d730e2d | 2017-04-25 08:49:58 -0400 | [diff] [blame] | 568 | m4 = find_program('m4') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 569 | stat = find_program('stat') |
Zbigniew Jędrzejewski-Szmek | d68b342 | 2017-04-06 14:33:27 -0400 | [diff] [blame] | 570 | git = find_program('git', required : false) |
Zbigniew Jędrzejewski-Szmek | b68dfb9 | 2018-01-19 17:54:30 +1100 | [diff] [blame] | 571 | env = find_program('env') |
Zbigniew Jędrzejewski-Szmek | b1ffacb | 2018-03-22 08:34:21 +0100 | [diff] [blame] | 572 | perl = find_program('perl', required : false) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 573 | |
Davide Cavalca | 1485aac | 2019-02-27 11:19:07 -0500 | [diff] [blame] | 574 | meson_make_symlink = project_source_root + '/tools/meson-make-symlink.sh' |
Zbigniew Jędrzejewski-Szmek | 94e75a5 | 2017-04-09 23:55:05 -0400 | [diff] [blame] | 575 | mkdir_p = 'mkdir -p $DESTDIR/@0@' |
Zbigniew Jędrzejewski-Szmek | d83f4f5 | 2017-04-16 12:04:46 -0400 | [diff] [blame] | 576 | test_efi_create_disk_sh = find_program('test/test-efi-create-disk.sh') |
| 577 | splash_bmp = files('test/splash.bmp') |
Zbigniew Jędrzejewski-Szmek | 94e75a5 | 2017-04-09 23:55:05 -0400 | [diff] [blame] | 578 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 579 | # if -Dxxx-path option is found, use that. Otherwise, check in $PATH, |
| 580 | # /usr/sbin, /sbin, and fall back to the default from middle column. |
Mike Gilbert | 2fa645f | 2018-01-04 07:14:20 -0500 | [diff] [blame] | 581 | progs = [['quotaon', '/usr/sbin/quotaon' ], |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 582 | ['quotacheck', '/usr/sbin/quotacheck' ], |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 583 | ['kmod', '/usr/bin/kmod' ], |
| 584 | ['kexec', '/usr/sbin/kexec' ], |
| 585 | ['sulogin', '/usr/sbin/sulogin' ], |
| 586 | ['mount', '/usr/bin/mount', 'MOUNT_PATH'], |
| 587 | ['umount', '/usr/bin/umount', 'UMOUNT_PATH'], |
| 588 | ['loadkeys', '/usr/bin/loadkeys', 'KBD_LOADKEYS'], |
| 589 | ['setfont', '/usr/bin/setfont', 'KBD_SETFONT'], |
Michael Biebl | 6db9046 | 2019-07-18 01:24:00 +0200 | [diff] [blame] | 590 | ['nologin', '/usr/sbin/nologin', ], |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 591 | ] |
| 592 | foreach prog : progs |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 593 | path = get_option(prog[0] + '-path') |
| 594 | if path != '' |
| 595 | message('Using @1@ for @0@'.format(prog[0], path)) |
| 596 | else |
| 597 | exe = find_program(prog[0], |
| 598 | '/usr/sbin/' + prog[0], |
| 599 | '/sbin/' + prog[0], |
| 600 | required: false) |
| 601 | path = exe.found() ? exe.path() : prog[1] |
| 602 | endif |
| 603 | name = prog.length() > 2 ? prog[2] : prog[0].to_upper() |
| 604 | conf.set_quoted(name, path) |
| 605 | substs.set(name, path) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 606 | endforeach |
| 607 | |
Mike Gilbert | 2fa645f | 2018-01-04 07:14:20 -0500 | [diff] [blame] | 608 | conf.set_quoted('TELINIT', get_option('telinit-path')) |
| 609 | |
Zbigniew Jędrzejewski-Szmek | 1276a9f | 2017-04-18 19:11:54 -0400 | [diff] [blame] | 610 | if run_command('ln', '--relative', '--help').returncode() != 0 |
Zbigniew Jędrzejewski-Szmek | cd00101 | 2018-03-09 08:56:23 +0100 | [diff] [blame] | 611 | 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] | 612 | endif |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 613 | |
| 614 | ############################################################ |
| 615 | |
| 616 | gperf = find_program('gperf') |
| 617 | |
| 618 | gperf_test_format = ''' |
| 619 | #include <string.h> |
| 620 | const char * in_word_set(const char *, @0@); |
| 621 | @1@ |
| 622 | ''' |
| 623 | gperf_snippet_format = 'echo foo,bar | @0@ -L ANSI-C' |
| 624 | gperf_snippet = run_command('sh', '-c', gperf_snippet_format.format(gperf.path())) |
| 625 | gperf_test = gperf_test_format.format('size_t', gperf_snippet.stdout()) |
| 626 | if cc.compiles(gperf_test) |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 627 | gperf_len_type = 'size_t' |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 628 | else |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 629 | gperf_test = gperf_test_format.format('unsigned', gperf_snippet.stdout()) |
| 630 | if cc.compiles(gperf_test) |
| 631 | gperf_len_type = 'unsigned' |
| 632 | else |
| 633 | error('unable to determine gperf len type') |
| 634 | endif |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 635 | endif |
| 636 | message('gperf len type is @0@'.format(gperf_len_type)) |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 637 | conf.set('GPERF_LEN_TYPE', gperf_len_type, |
| 638 | description : 'The type of gperf "len" parameter') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 639 | |
| 640 | ############################################################ |
| 641 | |
| 642 | if not cc.has_header('sys/capability.h') |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 643 | error('POSIX caps headers not found') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 644 | endif |
Björn Esser | 9f555bb | 2018-01-25 15:30:15 +0100 | [diff] [blame] | 645 | foreach header : ['crypt.h', |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 646 | 'linux/memfd.h', |
| 647 | 'linux/vm_sockets.h', |
Zbigniew Jędrzejewski-Szmek | af8786b | 2017-10-03 12:09:40 +0200 | [diff] [blame] | 648 | 'sys/auxv.h', |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 649 | 'valgrind/memcheck.h', |
| 650 | 'valgrind/valgrind.h', |
| 651 | ] |
Zbigniew Jędrzejewski-Szmek | 2c201c2 | 2017-04-27 21:13:08 -0400 | [diff] [blame] | 652 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 653 | conf.set10('HAVE_' + header.underscorify().to_upper(), |
| 654 | cc.has_header(header)) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 655 | endforeach |
| 656 | |
| 657 | ############################################################ |
| 658 | |
Zbigniew Jędrzejewski-Szmek | eef4b80 | 2020-05-07 17:30:02 +0200 | [diff] [blame] | 659 | fallback_hostname = get_option('fallback-hostname') |
| 660 | if fallback_hostname == '' or fallback_hostname[0] == '.' or fallback_hostname[0] == '-' |
| 661 | error('Invalid fallback-hostname configuration') |
| 662 | # A more extensive test is done in test-hostname-util. Let's catch |
| 663 | # the most obvious errors here so we don't fail with an assert later. |
| 664 | endif |
| 665 | conf.set_quoted('FALLBACK_HOSTNAME', fallback_hostname) |
| 666 | |
Zbigniew Jędrzejewski-Szmek | 5248e7e | 2017-07-11 02:15:08 -0400 | [diff] [blame] | 667 | conf.set10('ENABLE_COMPAT_GATEWAY_HOSTNAME', get_option('compat-gateway-hostname')) |
| 668 | 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] | 669 | |
| 670 | default_hierarchy = get_option('default-hierarchy') |
| 671 | conf.set_quoted('DEFAULT_HIERARCHY_NAME', default_hierarchy, |
| 672 | description : 'default cgroup hierarchy as string') |
| 673 | if default_hierarchy == 'legacy' |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 674 | conf.set('DEFAULT_HIERARCHY', 'CGROUP_UNIFIED_NONE') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 675 | elif default_hierarchy == 'hybrid' |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 676 | conf.set('DEFAULT_HIERARCHY', 'CGROUP_UNIFIED_SYSTEMD') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 677 | else |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 678 | conf.set('DEFAULT_HIERARCHY', 'CGROUP_UNIFIED_ALL') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 679 | endif |
| 680 | |
Zbigniew Jędrzejewski-Szmek | 06da5c6 | 2018-12-11 23:28:29 +0100 | [diff] [blame] | 681 | default_net_naming_scheme = get_option('default-net-naming-scheme') |
| 682 | conf.set_quoted('DEFAULT_NET_NAMING_SCHEME', default_net_naming_scheme) |
| 683 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 684 | time_epoch = get_option('time-epoch') |
Yu Watanabe | ac09340 | 2018-05-10 16:04:16 +0900 | [diff] [blame] | 685 | if time_epoch == -1 |
Zbigniew Jędrzejewski-Szmek | 0390b09 | 2020-07-23 12:23:58 +0200 | [diff] [blame] | 686 | time_epoch = run_command('sh', ['-c', 'echo "$SOURCE_DATE_EPOCH"']).stdout().strip() |
| 687 | if time_epoch == '' and git.found() and run_command('test', '-e', '.git').returncode() == 0 |
Daan De Meyer | bd19089 | 2020-07-20 20:41:48 +0100 | [diff] [blame] | 688 | # If we're in a git repository, use the creation time of the latest git tag. |
| 689 | latest_tag = run_command('git', 'describe', '--abbrev=0', '--tags').stdout().strip() |
Zbigniew Jędrzejewski-Szmek | 0390b09 | 2020-07-23 12:23:58 +0200 | [diff] [blame] | 690 | time_epoch = run_command('git', 'log', '-1', '--format=%at', latest_tag).stdout() |
Dimitri John Ledkov | 6dbf352 | 2020-05-15 19:16:05 +0100 | [diff] [blame] | 691 | endif |
Zbigniew Jędrzejewski-Szmek | 0390b09 | 2020-07-23 12:23:58 +0200 | [diff] [blame] | 692 | if time_epoch == '' |
| 693 | NEWS = files('NEWS') |
| 694 | time_epoch = run_command(stat, '-c', '%Y', NEWS).stdout() |
| 695 | endif |
| 696 | time_epoch = time_epoch.to_int() |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 697 | endif |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 698 | conf.set('TIME_EPOCH', time_epoch) |
| 699 | |
Zbigniew Jędrzejewski-Szmek | fc1a5d1 | 2020-09-25 16:50:45 +0200 | [diff] [blame] | 700 | foreach tuple : [['system-alloc-uid-min', 'SYS_UID_MIN', 1], # Also see login.defs(5). |
| 701 | ['system-uid-max', 'SYS_UID_MAX', 999], |
| 702 | ['system-alloc-gid-min', 'SYS_GID_MIN', 1], |
| 703 | ['system-gid-max', 'SYS_GID_MAX', 999]] |
| 704 | v = get_option(tuple[0]) |
| 705 | if v == -1 |
| 706 | v = run_command( |
| 707 | awk, |
| 708 | '/^\s*@0@\s+/ { uid=$2 } END { print uid }'.format(tuple[1]), |
| 709 | '/etc/login.defs').stdout().strip() |
| 710 | if v == '' |
| 711 | v = tuple[2] |
| 712 | else |
| 713 | v = v.to_int() |
| 714 | endif |
Caio Marcelo de Oliveira Filho | 2f62cf3 | 2018-02-18 18:33:16 -0800 | [diff] [blame] | 715 | endif |
Zbigniew Jędrzejewski-Szmek | fc1a5d1 | 2020-09-25 16:50:45 +0200 | [diff] [blame] | 716 | conf.set(tuple[0].underscorify().to_upper(), v) |
| 717 | substs.set(tuple[0].underscorify().to_upper(), v) |
| 718 | endforeach |
| 719 | if conf.get('SYSTEM_ALLOC_UID_MIN') >= conf.get('SYSTEM_UID_MAX') |
| 720 | error('Invalid uid allocation range') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 721 | endif |
Zbigniew Jędrzejewski-Szmek | fc1a5d1 | 2020-09-25 16:50:45 +0200 | [diff] [blame] | 722 | if conf.get('SYSTEM_ALLOC_GID_MIN') >= conf.get('SYSTEM_GID_MAX') |
| 723 | error('Invalid gid allocation range') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 724 | endif |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 725 | |
Yu Watanabe | ac09340 | 2018-05-10 16:04:16 +0900 | [diff] [blame] | 726 | dynamic_uid_min = get_option('dynamic-uid-min') |
| 727 | dynamic_uid_max = get_option('dynamic-uid-max') |
Lennart Poettering | 87d5e4f | 2017-12-02 12:48:31 +0100 | [diff] [blame] | 728 | conf.set('DYNAMIC_UID_MIN', dynamic_uid_min) |
| 729 | conf.set('DYNAMIC_UID_MAX', dynamic_uid_max) |
| 730 | substs.set('dynamicuidmin', dynamic_uid_min) |
| 731 | substs.set('dynamicuidmax', dynamic_uid_max) |
| 732 | |
Yu Watanabe | ac09340 | 2018-05-10 16:04:16 +0900 | [diff] [blame] | 733 | container_uid_base_min = get_option('container-uid-base-min') |
| 734 | container_uid_base_max = get_option('container-uid-base-max') |
Lennart Poettering | 87d5e4f | 2017-12-02 12:48:31 +0100 | [diff] [blame] | 735 | conf.set('CONTAINER_UID_BASE_MIN', container_uid_base_min) |
| 736 | conf.set('CONTAINER_UID_BASE_MAX', container_uid_base_max) |
| 737 | substs.set('containeruidbasemin', container_uid_base_min) |
| 738 | substs.set('containeruidbasemax', container_uid_base_max) |
| 739 | |
Lennart Poettering | afde457 | 2017-12-05 11:00:24 +0100 | [diff] [blame] | 740 | nobody_user = get_option('nobody-user') |
| 741 | nobody_group = get_option('nobody-group') |
| 742 | |
Chen Qi | 2484bff | 2018-07-23 14:53:09 +0800 | [diff] [blame] | 743 | if not meson.is_cross_build() |
| 744 | getent_result = run_command('getent', 'passwd', '65534') |
| 745 | if getent_result.returncode() == 0 |
| 746 | name = getent_result.stdout().split(':')[0] |
| 747 | if name != nobody_user |
| 748 | warning('\n' + |
| 749 | '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) + |
| 750 | 'Your build will result in an user table setup that is incompatible with the local system.') |
| 751 | endif |
Lennart Poettering | afde457 | 2017-12-05 11:00:24 +0100 | [diff] [blame] | 752 | endif |
Chen Qi | 2484bff | 2018-07-23 14:53:09 +0800 | [diff] [blame] | 753 | id_result = run_command('id', '-u', nobody_user) |
| 754 | if id_result.returncode() == 0 |
| 755 | id = id_result.stdout().to_int() |
| 756 | if id != 65534 |
| 757 | warning('\n' + |
| 758 | '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) + |
| 759 | 'Your build will result in an user table setup that is incompatible with the local system.') |
| 760 | endif |
Lennart Poettering | afde457 | 2017-12-05 11:00:24 +0100 | [diff] [blame] | 761 | endif |
Lennart Poettering | afde457 | 2017-12-05 11:00:24 +0100 | [diff] [blame] | 762 | |
Chen Qi | 2484bff | 2018-07-23 14:53:09 +0800 | [diff] [blame] | 763 | getent_result = run_command('getent', 'group', '65534') |
| 764 | if getent_result.returncode() == 0 |
| 765 | name = getent_result.stdout().split(':')[0] |
| 766 | if name != nobody_group |
| 767 | warning('\n' + |
| 768 | '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) + |
| 769 | 'Your build will result in an group table setup that is incompatible with the local system.') |
| 770 | endif |
Lennart Poettering | afde457 | 2017-12-05 11:00:24 +0100 | [diff] [blame] | 771 | endif |
Chen Qi | 2484bff | 2018-07-23 14:53:09 +0800 | [diff] [blame] | 772 | id_result = run_command('id', '-g', nobody_group) |
| 773 | if id_result.returncode() == 0 |
| 774 | id = id_result.stdout().to_int() |
| 775 | if id != 65534 |
| 776 | warning('\n' + |
| 777 | '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) + |
| 778 | 'Your build will result in an group table setup that is incompatible with the local system.') |
| 779 | endif |
Lennart Poettering | afde457 | 2017-12-05 11:00:24 +0100 | [diff] [blame] | 780 | endif |
| 781 | endif |
Yu Watanabe | 8374cc6 | 2017-12-07 17:19:11 +0900 | [diff] [blame] | 782 | if nobody_user != nobody_group and not (nobody_user == 'nobody' and nobody_group == 'nogroup') |
Yu Watanabe | 8ea9fad | 2018-05-10 14:50:52 +0900 | [diff] [blame] | 783 | warning('\n' + |
| 784 | 'The configured user name "@0@" and group name "@0@" of the nobody user/group are not equivalent.\n'.format(nobody_user, nobody_group) + |
| 785 | 'Please re-check that both "nobody-user" and "nobody-group" options are correctly set.') |
Yu Watanabe | 8374cc6 | 2017-12-07 17:19:11 +0900 | [diff] [blame] | 786 | endif |
Lennart Poettering | afde457 | 2017-12-05 11:00:24 +0100 | [diff] [blame] | 787 | |
| 788 | conf.set_quoted('NOBODY_USER_NAME', nobody_user) |
| 789 | conf.set_quoted('NOBODY_GROUP_NAME', nobody_group) |
Yu Watanabe | 6071202 | 2017-12-07 15:49:16 +0900 | [diff] [blame] | 790 | substs.set('NOBODY_USER_NAME', nobody_user) |
| 791 | substs.set('NOBODY_GROUP_NAME', nobody_group) |
Lennart Poettering | 87d5e4f | 2017-12-02 12:48:31 +0100 | [diff] [blame] | 792 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 793 | tty_gid = get_option('tty-gid') |
| 794 | conf.set('TTY_GID', tty_gid) |
Zbigniew Jędrzejewski-Szmek | 2a4c156 | 2017-04-12 19:54:33 -0400 | [diff] [blame] | 795 | substs.set('TTY_GID', tty_gid) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 796 | |
Zbigniew Jędrzejewski-Szmek | 2aed63f | 2020-08-20 11:23:26 +0200 | [diff] [blame] | 797 | # Ensure provided GID argument is numeric, otherwise fall back to default assignment |
Yu Watanabe | ac09340 | 2018-05-10 16:04:16 +0900 | [diff] [blame] | 798 | users_gid = get_option('users-gid') |
| 799 | substs.set('USERS_GID', users_gid < 0 ? '-' : users_gid) |
Ikey Doherty | 84786b8 | 2017-12-03 12:28:23 +0000 | [diff] [blame] | 800 | |
Yu Watanabe | 348b443 | 2018-05-07 18:17:35 +0900 | [diff] [blame] | 801 | conf.set10('ENABLE_ADM_GROUP', get_option('adm-group')) |
| 802 | conf.set10('ENABLE_WHEEL_GROUP', get_option('wheel-group')) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 803 | |
Michael Biebl | ace5e31 | 2018-07-13 23:36:13 +0200 | [diff] [blame] | 804 | dev_kvm_mode = get_option('dev-kvm-mode') |
| 805 | substs.set('DEV_KVM_MODE', dev_kvm_mode) |
| 806 | conf.set10('DEV_KVM_UACCESS', dev_kvm_mode != '0666') |
Michael Biebl | 055a083 | 2019-03-13 23:22:26 +0100 | [diff] [blame] | 807 | group_render_mode = get_option('group-render-mode') |
| 808 | substs.set('GROUP_RENDER_MODE', group_render_mode) |
| 809 | conf.set10('GROUP_RENDER_UACCESS', group_render_mode != '0666') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 810 | |
Zbigniew Jędrzejewski-Szmek | 2a4c156 | 2017-04-12 19:54:33 -0400 | [diff] [blame] | 811 | kill_user_processes = get_option('default-kill-user-processes') |
| 812 | conf.set10('KILL_USER_PROCESSES', kill_user_processes) |
Michal Koutný | c7f7e85 | 2018-03-09 16:40:41 +0100 | [diff] [blame] | 813 | 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] | 814 | substs.set('KILL_USER_PROCESSES', kill_user_processes ? 'yes' : 'no') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 815 | |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 816 | dns_servers = get_option('dns-servers') |
| 817 | conf.set_quoted('DNS_SERVERS', dns_servers) |
| 818 | substs.set('DNS_SERVERS', dns_servers) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 819 | |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 820 | ntp_servers = get_option('ntp-servers') |
| 821 | conf.set_quoted('NTP_SERVERS', ntp_servers) |
| 822 | substs.set('NTP_SERVERS', ntp_servers) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 823 | |
Dave Reisner | 8ca9e92 | 2018-12-28 07:38:36 -0500 | [diff] [blame] | 824 | default_locale = get_option('default-locale') |
Yu Watanabe | 03475e2 | 2018-12-29 22:00:07 +0900 | [diff] [blame] | 825 | if default_locale == '' |
James Hilliard | 50f2fc7 | 2019-01-05 11:28:59 +0800 | [diff] [blame] | 826 | if not meson.is_cross_build() |
| 827 | choose_default_locale_sh = find_program('tools/choose-default-locale.sh') |
| 828 | default_locale = run_command(choose_default_locale_sh).stdout().strip() |
| 829 | else |
| 830 | default_locale = 'C.UTF-8' |
| 831 | endif |
Yu Watanabe | 03475e2 | 2018-12-29 22:00:07 +0900 | [diff] [blame] | 832 | endif |
Dave Reisner | 8ca9e92 | 2018-12-28 07:38:36 -0500 | [diff] [blame] | 833 | conf.set_quoted('SYSTEMD_DEFAULT_LOCALE', default_locale) |
| 834 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 835 | conf.set_quoted('GETTEXT_PACKAGE', meson.project_name()) |
| 836 | |
Zbigniew Jędrzejewski-Szmek | 21d0dd5 | 2019-10-25 12:17:24 +0200 | [diff] [blame] | 837 | service_watchdog = get_option('service-watchdog') |
Anita Zhang | 7bc9ea5 | 2019-10-25 15:46:21 -0700 | [diff] [blame] | 838 | watchdog_value = service_watchdog == '' ? '' : 'WatchdogSec=' + service_watchdog |
| 839 | substs.set('SERVICE_WATCHDOG', watchdog_value) |
Zbigniew Jędrzejewski-Szmek | 21d0dd5 | 2019-10-25 12:17:24 +0200 | [diff] [blame] | 840 | |
Zbigniew Jędrzejewski-Szmek | 3131bfe | 2017-04-10 19:06:45 -0400 | [diff] [blame] | 841 | substs.set('SUSHELL', get_option('debug-shell')) |
| 842 | substs.set('DEBUGTTY', get_option('debug-tty')) |
Jan Synacek | 93912e8 | 2019-04-25 12:19:16 +0200 | [diff] [blame] | 843 | conf.set_quoted('DEBUGTTY', get_option('debug-tty')) |
Zbigniew Jędrzejewski-Szmek | 3131bfe | 2017-04-10 19:06:45 -0400 | [diff] [blame] | 844 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 845 | enable_debug_hashmap = false |
| 846 | enable_debug_mmap_cache = false |
Yu Watanabe | d660149 | 2018-11-23 00:36:35 +0900 | [diff] [blame] | 847 | enable_debug_siphash = false |
Zbigniew Jędrzejewski-Szmek | 8f6b442 | 2018-08-19 19:11:30 +0200 | [diff] [blame] | 848 | foreach name : get_option('debug-extra') |
Yu Watanabe | ad7aa76 | 2018-05-02 13:56:28 +0900 | [diff] [blame] | 849 | if name == 'hashmap' |
| 850 | enable_debug_hashmap = true |
| 851 | elif name == 'mmap-cache' |
| 852 | enable_debug_mmap_cache = true |
Yu Watanabe | d660149 | 2018-11-23 00:36:35 +0900 | [diff] [blame] | 853 | elif name == 'siphash' |
| 854 | enable_debug_siphash = true |
Yu Watanabe | ad7aa76 | 2018-05-02 13:56:28 +0900 | [diff] [blame] | 855 | else |
| 856 | message('unknown debug option "@0@", ignoring'.format(name)) |
| 857 | endif |
| 858 | endforeach |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 859 | conf.set10('ENABLE_DEBUG_HASHMAP', enable_debug_hashmap) |
| 860 | conf.set10('ENABLE_DEBUG_MMAP_CACHE', enable_debug_mmap_cache) |
Yu Watanabe | d660149 | 2018-11-23 00:36:35 +0900 | [diff] [blame] | 861 | conf.set10('ENABLE_DEBUG_SIPHASH', enable_debug_siphash) |
Zbigniew Jędrzejewski-Szmek | 671677d | 2017-04-27 20:51:34 -0400 | [diff] [blame] | 862 | |
Zbigniew Jędrzejewski-Szmek | d18cb39 | 2018-05-13 22:28:24 +0200 | [diff] [blame] | 863 | conf.set10('VALGRIND', get_option('valgrind')) |
Zbigniew Jędrzejewski-Szmek | fd5dec9 | 2018-08-07 17:34:47 +0200 | [diff] [blame] | 864 | conf.set10('LOG_TRACE', get_option('log-trace')) |
Zbigniew Jędrzejewski-Szmek | d18cb39 | 2018-05-13 22:28:24 +0200 | [diff] [blame] | 865 | |
Zbigniew Jędrzejewski-Szmek | 3602ca6 | 2019-11-12 15:38:19 +0100 | [diff] [blame] | 866 | default_user_path = get_option('user-path') |
| 867 | if default_user_path != '' |
| 868 | conf.set_quoted('DEFAULT_USER_PATH', default_user_path) |
Zbigniew Jędrzejewski-Szmek | 5bc655c | 2019-11-13 22:22:58 +0100 | [diff] [blame] | 869 | default_user_path_display = default_user_path |
| 870 | else |
| 871 | # meson 0.49 fails when ?: is used in .format() |
| 872 | default_user_path_display = '(same as system services)' |
Zbigniew Jędrzejewski-Szmek | 3602ca6 | 2019-11-12 15:38:19 +0100 | [diff] [blame] | 873 | endif |
| 874 | |
Zbigniew Jędrzejewski-Szmek | 5bc655c | 2019-11-13 22:22:58 +0100 | [diff] [blame] | 875 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 876 | ##################################################################### |
| 877 | |
| 878 | threads = dependency('threads') |
| 879 | librt = cc.find_library('rt') |
| 880 | libm = cc.find_library('m') |
| 881 | libdl = cc.find_library('dl') |
| 882 | libcrypt = cc.find_library('crypt') |
| 883 | |
Anita Zhang | 06ca077 | 2020-09-21 11:41:17 -0700 | [diff] [blame] | 884 | crypt_header = conf.get('HAVE_CRYPT_H') == 1 ? '''#include <crypt.h>''' : '''#include <unistd.h>''' |
Zbigniew Jędrzejewski-Szmek | e8644a4 | 2020-09-08 20:02:31 +0200 | [diff] [blame] | 885 | foreach ident : [ |
Luca Boccassi | feee7f6 | 2020-09-25 11:19:56 +0100 | [diff] [blame] | 886 | ['crypt_ra', crypt_header], |
| 887 | ['crypt_preferred_method', crypt_header], |
| 888 | ['crypt_gensalt_ra', crypt_header]] |
Zbigniew Jędrzejewski-Szmek | e8644a4 | 2020-09-08 20:02:31 +0200 | [diff] [blame] | 889 | |
| 890 | have = cc.has_function(ident[0], prefix : ident[1], args : '-D_GNU_SOURCE', |
| 891 | dependencies : libcrypt) |
| 892 | conf.set10('HAVE_' + ident[0].to_upper(), have) |
| 893 | endforeach |
| 894 | |
Zbigniew Jędrzejewski-Szmek | 1800cc8 | 2017-04-27 01:30:30 -0400 | [diff] [blame] | 895 | libcap = dependency('libcap', required : false) |
| 896 | if not libcap.found() |
| 897 | # Compat with Ubuntu 14.04 which ships libcap w/o .pc file |
| 898 | libcap = cc.find_library('cap') |
| 899 | endif |
| 900 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 901 | libmount = dependency('mount', |
Zbigniew Jędrzejewski-Szmek | c0b4b0f | 2018-03-09 14:58:47 +0100 | [diff] [blame] | 902 | version : fuzzer_build ? '>= 0' : '>= 2.30') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 903 | |
Lennart Poettering | e594a3b | 2019-12-10 21:31:41 +0100 | [diff] [blame] | 904 | want_libfdisk = get_option('fdisk') |
| 905 | if want_libfdisk != 'false' and not skip_deps |
| 906 | libfdisk = dependency('fdisk', |
Anita Zhang | e71f558 | 2020-08-17 23:09:38 -0700 | [diff] [blame] | 907 | version : '>= 2.33', |
Lennart Poettering | e594a3b | 2019-12-10 21:31:41 +0100 | [diff] [blame] | 908 | required : want_libfdisk == 'true') |
| 909 | have = libfdisk.found() |
| 910 | else |
| 911 | have = false |
| 912 | libfdisk = [] |
| 913 | endif |
| 914 | conf.set10('HAVE_LIBFDISK', have) |
| 915 | |
Lennart Poettering | 70a5db5 | 2019-07-04 18:35:39 +0200 | [diff] [blame] | 916 | want_pwquality = get_option('pwquality') |
| 917 | if want_pwquality != 'false' and not skip_deps |
| 918 | libpwquality = dependency('pwquality', required : want_pwquality == 'true') |
| 919 | have = libpwquality.found() |
| 920 | else |
| 921 | have = false |
| 922 | libpwquality = [] |
| 923 | endif |
| 924 | conf.set10('HAVE_PWQUALITY', have) |
| 925 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 926 | want_seccomp = get_option('seccomp') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 927 | if want_seccomp != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 928 | libseccomp = dependency('libseccomp', |
Zbigniew Jędrzejewski-Szmek | 9f0e9c0 | 2017-04-27 10:05:18 -0400 | [diff] [blame] | 929 | version : '>= 2.3.1', |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 930 | required : want_seccomp == 'true') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 931 | have = libseccomp.found() |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 932 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 933 | have = false |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 934 | libseccomp = [] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 935 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 936 | conf.set10('HAVE_SECCOMP', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 937 | |
| 938 | want_selinux = get_option('selinux') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 939 | if want_selinux != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 940 | libselinux = dependency('libselinux', |
| 941 | version : '>= 2.1.9', |
| 942 | required : want_selinux == 'true') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 943 | have = libselinux.found() |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 944 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 945 | have = false |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 946 | libselinux = [] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 947 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 948 | conf.set10('HAVE_SELINUX', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 949 | |
| 950 | want_apparmor = get_option('apparmor') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 951 | if want_apparmor != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 952 | libapparmor = dependency('libapparmor', |
YmrDtnJu | 2ffadd3 | 2020-05-25 10:46:54 +0200 | [diff] [blame] | 953 | version : '>= 2.13', |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 954 | required : want_apparmor == 'true') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 955 | have = libapparmor.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 | libapparmor = [] |
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_APPARMOR', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 961 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 962 | smack_run_label = get_option('smack-run-label') |
| 963 | if smack_run_label != '' |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 964 | conf.set_quoted('SMACK_RUN_LABEL', smack_run_label) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 965 | endif |
| 966 | |
Zbigniew Jędrzejewski-Szmek | 3ca0cb7 | 2017-04-12 19:09:26 -0400 | [diff] [blame] | 967 | want_polkit = get_option('polkit') |
| 968 | install_polkit = false |
| 969 | install_polkit_pkla = false |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 970 | if want_polkit != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 971 | install_polkit = true |
Zbigniew Jędrzejewski-Szmek | 3ca0cb7 | 2017-04-12 19:09:26 -0400 | [diff] [blame] | 972 | |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 973 | libpolkit = dependency('polkit-gobject-1', |
| 974 | required : false) |
| 975 | if libpolkit.found() and libpolkit.version().version_compare('< 0.106') |
| 976 | message('Old polkit detected, will install pkla files') |
| 977 | install_polkit_pkla = true |
| 978 | endif |
Zbigniew Jędrzejewski-Szmek | 3ca0cb7 | 2017-04-12 19:09:26 -0400 | [diff] [blame] | 979 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 980 | conf.set10('ENABLE_POLKIT', install_polkit) |
Zbigniew Jędrzejewski-Szmek | 3ca0cb7 | 2017-04-12 19:09:26 -0400 | [diff] [blame] | 981 | |
Zbigniew Jędrzejewski-Szmek | 36f0387 | 2017-04-21 13:53:59 -0400 | [diff] [blame] | 982 | want_acl = get_option('acl') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 983 | if want_acl != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 36f0387 | 2017-04-21 13:53:59 -0400 | [diff] [blame] | 984 | libacl = cc.find_library('acl', required : want_acl == 'true') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 985 | have = libacl.found() |
Zbigniew Jędrzejewski-Szmek | 36f0387 | 2017-04-21 13:53:59 -0400 | [diff] [blame] | 986 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 987 | have = false |
Zbigniew Jędrzejewski-Szmek | 36f0387 | 2017-04-21 13:53:59 -0400 | [diff] [blame] | 988 | libacl = [] |
| 989 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 990 | conf.set10('HAVE_ACL', have) |
Zbigniew Jędrzejewski-Szmek | 36f0387 | 2017-04-21 13:53:59 -0400 | [diff] [blame] | 991 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 992 | want_audit = get_option('audit') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 993 | if want_audit != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 994 | libaudit = dependency('audit', required : want_audit == 'true') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 995 | have = libaudit.found() |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 996 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 997 | have = false |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 998 | libaudit = [] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 999 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1000 | conf.set10('HAVE_AUDIT', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1001 | |
| 1002 | want_blkid = get_option('blkid') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1003 | if want_blkid != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1004 | libblkid = dependency('blkid', required : want_blkid == 'true') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1005 | have = libblkid.found() |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1006 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1007 | have = false |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1008 | libblkid = [] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1009 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1010 | conf.set10('HAVE_BLKID', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1011 | |
| 1012 | want_kmod = get_option('kmod') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1013 | if want_kmod != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1014 | libkmod = dependency('libkmod', |
| 1015 | version : '>= 15', |
| 1016 | required : want_kmod == 'true') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1017 | have = libkmod.found() |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1018 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1019 | have = false |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1020 | libkmod = [] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1021 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1022 | conf.set10('HAVE_KMOD', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1023 | |
| 1024 | want_pam = get_option('pam') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1025 | if want_pam != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1026 | libpam = cc.find_library('pam', required : want_pam == 'true') |
| 1027 | 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] | 1028 | have = libpam.found() and libpam_misc.found() |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1029 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1030 | have = false |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1031 | libpam = [] |
| 1032 | libpam_misc = [] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1033 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1034 | conf.set10('HAVE_PAM', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1035 | |
| 1036 | want_microhttpd = get_option('microhttpd') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1037 | if want_microhttpd != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1038 | libmicrohttpd = dependency('libmicrohttpd', |
| 1039 | version : '>= 0.9.33', |
| 1040 | required : want_microhttpd == 'true') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1041 | have = libmicrohttpd.found() |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1042 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1043 | have = false |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1044 | libmicrohttpd = [] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1045 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1046 | conf.set10('HAVE_MICROHTTPD', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1047 | |
| 1048 | want_libcryptsetup = get_option('libcryptsetup') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1049 | if want_libcryptsetup != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1050 | libcryptsetup = dependency('libcryptsetup', |
Jay Strict | d90874b | 2019-09-26 15:54:29 +0200 | [diff] [blame] | 1051 | version : '>= 2.0.1', |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1052 | required : want_libcryptsetup == 'true') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1053 | have = libcryptsetup.found() |
Lennart Poettering | 70a5db5 | 2019-07-04 18:35:39 +0200 | [diff] [blame] | 1054 | |
| 1055 | conf.set10('HAVE_CRYPT_SET_METADATA_SIZE', |
| 1056 | have and cc.has_function('crypt_set_metadata_size', dependencies : libcryptsetup)) |
Luca Boccassi | c2923fd | 2020-06-02 15:35:58 +0100 | [diff] [blame] | 1057 | conf.set10('HAVE_CRYPT_ACTIVATE_BY_SIGNED_KEY', |
| 1058 | have and cc.has_function('crypt_activate_by_signed_key', dependencies : libcryptsetup)) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1059 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1060 | have = false |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1061 | libcryptsetup = [] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1062 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1063 | conf.set10('HAVE_LIBCRYPTSETUP', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1064 | |
| 1065 | want_libcurl = get_option('libcurl') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1066 | if want_libcurl != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1067 | libcurl = dependency('libcurl', |
| 1068 | version : '>= 7.32.0', |
| 1069 | required : want_libcurl == 'true') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1070 | have = libcurl.found() |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1071 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1072 | have = false |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1073 | libcurl = [] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1074 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1075 | conf.set10('HAVE_LIBCURL', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1076 | |
| 1077 | want_libidn = get_option('libidn') |
Zbigniew Jędrzejewski-Szmek | 87057e2 | 2017-05-09 21:56:34 -0400 | [diff] [blame] | 1078 | want_libidn2 = get_option('libidn2') |
| 1079 | if want_libidn == 'true' and want_libidn2 == 'true' |
| 1080 | error('libidn and libidn2 cannot be requested simultaneously') |
| 1081 | endif |
| 1082 | |
Yu Watanabe | 1b93139 | 2019-06-29 03:13:30 +0900 | [diff] [blame] | 1083 | if want_libidn2 != 'false' and want_libidn != 'true' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 7f7ab22 | 2017-07-12 03:25:59 -0400 | [diff] [blame] | 1084 | libidn = dependency('libidn2', |
| 1085 | required : want_libidn2 == 'true') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1086 | have = libidn.found() |
| 1087 | else |
| 1088 | have = false |
Yu Watanabe | 1b93139 | 2019-06-29 03:13:30 +0900 | [diff] [blame] | 1089 | libidn = [] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1090 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1091 | conf.set10('HAVE_LIBIDN2', have) |
Yu Watanabe | 1b93139 | 2019-06-29 03:13:30 +0900 | [diff] [blame] | 1092 | if not have and want_libidn != 'false' and not skip_deps |
| 1093 | # libidn is used for both libidn and libidn2 objects |
| 1094 | libidn = dependency('libidn', |
| 1095 | required : want_libidn == 'true') |
| 1096 | have = libidn.found() |
| 1097 | else |
| 1098 | have = false |
| 1099 | endif |
| 1100 | conf.set10('HAVE_LIBIDN', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1101 | |
| 1102 | want_libiptc = get_option('libiptc') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1103 | if want_libiptc != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1104 | libiptc = dependency('libiptc', |
| 1105 | required : want_libiptc == 'true') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1106 | have = libiptc.found() |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1107 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1108 | have = false |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1109 | libiptc = [] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1110 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1111 | conf.set10('HAVE_LIBIPTC', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1112 | |
| 1113 | want_qrencode = get_option('qrencode') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1114 | if want_qrencode != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1115 | libqrencode = dependency('libqrencode', |
| 1116 | required : want_qrencode == 'true') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1117 | have = libqrencode.found() |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1118 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1119 | have = false |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1120 | libqrencode = [] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1121 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1122 | conf.set10('HAVE_QRENCODE', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1123 | |
Zbigniew Jędrzejewski-Szmek | a44fb60 | 2017-07-26 14:08:46 -0400 | [diff] [blame] | 1124 | want_gcrypt = get_option('gcrypt') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1125 | if want_gcrypt != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | a44fb60 | 2017-07-26 14:08:46 -0400 | [diff] [blame] | 1126 | libgcrypt = cc.find_library('gcrypt', required : want_gcrypt == 'true') |
| 1127 | 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] | 1128 | have = libgcrypt.found() and libgpg_error.found() |
Zbigniew Jędrzejewski-Szmek | a44fb60 | 2017-07-26 14:08:46 -0400 | [diff] [blame] | 1129 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1130 | have = false |
| 1131 | endif |
| 1132 | if not have |
| 1133 | # 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] | 1134 | libgcrypt = [] |
| 1135 | libgpg_error = [] |
| 1136 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1137 | conf.set10('HAVE_GCRYPT', have) |
Zbigniew Jędrzejewski-Szmek | a44fb60 | 2017-07-26 14:08:46 -0400 | [diff] [blame] | 1138 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1139 | want_gnutls = get_option('gnutls') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1140 | if want_gnutls != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1141 | libgnutls = dependency('gnutls', |
| 1142 | version : '>= 3.1.4', |
| 1143 | required : want_gnutls == 'true') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1144 | have = libgnutls.found() |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1145 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1146 | have = false |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1147 | libgnutls = [] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1148 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1149 | conf.set10('HAVE_GNUTLS', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1150 | |
Iwan Timmer | 096cbdc | 2018-07-26 22:47:50 +0100 | [diff] [blame] | 1151 | want_openssl = get_option('openssl') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1152 | if want_openssl != 'false' and not skip_deps |
Iwan Timmer | 096cbdc | 2018-07-26 22:47:50 +0100 | [diff] [blame] | 1153 | libopenssl = dependency('openssl', |
| 1154 | version : '>= 1.1.0', |
| 1155 | required : want_openssl == 'true') |
| 1156 | have = libopenssl.found() |
| 1157 | else |
| 1158 | have = false |
| 1159 | libopenssl = [] |
| 1160 | endif |
| 1161 | conf.set10('HAVE_OPENSSL', have) |
| 1162 | |
Lennart Poettering | 839fddb | 2019-11-05 11:49:27 +0100 | [diff] [blame] | 1163 | want_p11kit = get_option('p11kit') |
| 1164 | if want_p11kit != 'false' and not skip_deps |
| 1165 | libp11kit = dependency('p11-kit-1', |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1166 | version : '>= 0.23.3', |
| 1167 | required : want_p11kit == 'true') |
Lennart Poettering | 839fddb | 2019-11-05 11:49:27 +0100 | [diff] [blame] | 1168 | have = libp11kit.found() |
| 1169 | else |
| 1170 | have = false |
| 1171 | libp11kit = [] |
| 1172 | endif |
| 1173 | conf.set10('HAVE_P11KIT', have) |
| 1174 | |
Lennart Poettering | af4fbd4 | 2020-04-14 15:54:52 +0200 | [diff] [blame] | 1175 | want_libfido2 = get_option('libfido2') |
| 1176 | if want_libfido2 != 'false' and not skip_deps |
| 1177 | libfido2 = dependency('libfido2', |
| 1178 | required : want_libfido2 == 'true') |
| 1179 | have = libfido2.found() |
| 1180 | else |
| 1181 | have = false |
| 1182 | libfido2 = [] |
| 1183 | endif |
| 1184 | conf.set10('HAVE_LIBFIDO2', have) |
| 1185 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1186 | want_elfutils = get_option('elfutils') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1187 | if want_elfutils != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1188 | libdw = dependency('libdw', |
| 1189 | required : want_elfutils == 'true') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1190 | have = libdw.found() |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1191 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1192 | have = false |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1193 | libdw = [] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1194 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1195 | conf.set10('HAVE_ELFUTILS', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1196 | |
| 1197 | want_zlib = get_option('zlib') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1198 | if want_zlib != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1199 | libz = dependency('zlib', |
| 1200 | required : want_zlib == 'true') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1201 | have = libz.found() |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1202 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1203 | have = false |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1204 | libz = [] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1205 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1206 | conf.set10('HAVE_ZLIB', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1207 | |
| 1208 | want_bzip2 = get_option('bzip2') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1209 | if want_bzip2 != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1210 | libbzip2 = cc.find_library('bz2', |
| 1211 | required : want_bzip2 == 'true') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1212 | have = libbzip2.found() |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1213 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1214 | have = false |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1215 | libbzip2 = [] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1216 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1217 | conf.set10('HAVE_BZIP2', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1218 | |
| 1219 | want_xz = get_option('xz') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1220 | if want_xz != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1221 | libxz = dependency('liblzma', |
| 1222 | required : want_xz == 'true') |
Lennart Poettering | d80b051 | 2020-06-24 16:33:41 +0200 | [diff] [blame] | 1223 | have_xz = libxz.found() |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1224 | else |
Lennart Poettering | d80b051 | 2020-06-24 16:33:41 +0200 | [diff] [blame] | 1225 | have_xz = false |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1226 | libxz = [] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1227 | endif |
Lennart Poettering | d80b051 | 2020-06-24 16:33:41 +0200 | [diff] [blame] | 1228 | conf.set10('HAVE_XZ', have_xz) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1229 | |
| 1230 | want_lz4 = get_option('lz4') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1231 | if want_lz4 != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1232 | liblz4 = dependency('liblz4', |
Zbigniew Jędrzejewski-Szmek | e0a1d4b | 2018-10-29 18:32:51 +0100 | [diff] [blame] | 1233 | version : '>= 1.3.0', |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1234 | required : want_lz4 == 'true') |
Lennart Poettering | d80b051 | 2020-06-24 16:33:41 +0200 | [diff] [blame] | 1235 | have_lz4 = liblz4.found() |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1236 | else |
Lennart Poettering | d80b051 | 2020-06-24 16:33:41 +0200 | [diff] [blame] | 1237 | have_lz4 = false |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1238 | liblz4 = [] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1239 | endif |
Lennart Poettering | d80b051 | 2020-06-24 16:33:41 +0200 | [diff] [blame] | 1240 | conf.set10('HAVE_LZ4', have_lz4) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1241 | |
Norbert Lange | ef5924a | 2020-04-12 01:09:05 +0200 | [diff] [blame] | 1242 | want_zstd = get_option('zstd') |
| 1243 | if want_zstd != 'false' and not skip_deps |
| 1244 | libzstd = dependency('libzstd', |
| 1245 | required : want_zstd == 'true', |
| 1246 | version : '>= 1.4.0') |
Lennart Poettering | d80b051 | 2020-06-24 16:33:41 +0200 | [diff] [blame] | 1247 | have_zstd = libzstd.found() |
Norbert Lange | ef5924a | 2020-04-12 01:09:05 +0200 | [diff] [blame] | 1248 | else |
Lennart Poettering | d80b051 | 2020-06-24 16:33:41 +0200 | [diff] [blame] | 1249 | have_zstd = false |
Norbert Lange | ef5924a | 2020-04-12 01:09:05 +0200 | [diff] [blame] | 1250 | libzstd = [] |
| 1251 | endif |
Lennart Poettering | d80b051 | 2020-06-24 16:33:41 +0200 | [diff] [blame] | 1252 | conf.set10('HAVE_ZSTD', have_zstd) |
| 1253 | |
| 1254 | conf.set10('HAVE_COMPRESSION', have_xz or have_lz4 or have_zstd) |
Norbert Lange | ef5924a | 2020-04-12 01:09:05 +0200 | [diff] [blame] | 1255 | |
Zbigniew Jędrzejewski-Szmek | a44fb60 | 2017-07-26 14:08:46 -0400 | [diff] [blame] | 1256 | want_xkbcommon = get_option('xkbcommon') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1257 | if want_xkbcommon != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | a44fb60 | 2017-07-26 14:08:46 -0400 | [diff] [blame] | 1258 | libxkbcommon = dependency('xkbcommon', |
| 1259 | version : '>= 0.3.0', |
| 1260 | required : want_xkbcommon == 'true') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1261 | have = libxkbcommon.found() |
Zbigniew Jędrzejewski-Szmek | a44fb60 | 2017-07-26 14:08:46 -0400 | [diff] [blame] | 1262 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1263 | have = false |
Zbigniew Jędrzejewski-Szmek | a44fb60 | 2017-07-26 14:08:46 -0400 | [diff] [blame] | 1264 | libxkbcommon = [] |
| 1265 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1266 | conf.set10('HAVE_XKBCOMMON', have) |
Zbigniew Jędrzejewski-Szmek | a44fb60 | 2017-07-26 14:08:46 -0400 | [diff] [blame] | 1267 | |
Zbigniew Jędrzejewski-Szmek | c4c978a | 2018-01-12 05:47:17 +0100 | [diff] [blame] | 1268 | want_pcre2 = get_option('pcre2') |
| 1269 | if want_pcre2 != 'false' |
| 1270 | libpcre2 = dependency('libpcre2-8', |
| 1271 | required : want_pcre2 == 'true') |
| 1272 | have = libpcre2.found() |
| 1273 | else |
| 1274 | have = false |
| 1275 | libpcre2 = [] |
| 1276 | endif |
| 1277 | conf.set10('HAVE_PCRE2', have) |
| 1278 | |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 1279 | want_glib = get_option('glib') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1280 | if want_glib != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1281 | libglib = dependency('glib-2.0', |
| 1282 | version : '>= 2.22.0', |
| 1283 | required : want_glib == 'true') |
| 1284 | libgobject = dependency('gobject-2.0', |
| 1285 | version : '>= 2.22.0', |
| 1286 | required : want_glib == 'true') |
| 1287 | libgio = dependency('gio-2.0', |
| 1288 | required : want_glib == 'true') |
Zbigniew Jędrzejewski-Szmek | 2c201c2 | 2017-04-27 21:13:08 -0400 | [diff] [blame] | 1289 | have = libglib.found() and libgobject.found() and libgio.found() |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 1290 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1291 | have = false |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1292 | libglib = [] |
| 1293 | libgobject = [] |
| 1294 | libgio = [] |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 1295 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1296 | conf.set10('HAVE_GLIB', have) |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 1297 | |
| 1298 | want_dbus = get_option('dbus') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1299 | if want_dbus != 'false' and not skip_deps |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1300 | libdbus = dependency('dbus-1', |
| 1301 | version : '>= 1.3.2', |
| 1302 | required : want_dbus == 'true') |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1303 | have = libdbus.found() |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 1304 | else |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1305 | have = false |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1306 | libdbus = [] |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 1307 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1308 | conf.set10('HAVE_DBUS', have) |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 1309 | |
Yu Watanabe | 42303dc | 2017-06-18 05:22:32 +0900 | [diff] [blame] | 1310 | default_dnssec = get_option('default-dnssec') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1311 | if skip_deps |
Jonathan Rudenberg | b4081f3 | 2018-01-15 18:27:37 -0500 | [diff] [blame] | 1312 | default_dnssec = 'no' |
| 1313 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1314 | if default_dnssec != 'no' and conf.get('HAVE_GCRYPT') == 0 |
Yu Watanabe | 42303dc | 2017-06-18 05:22:32 +0900 | [diff] [blame] | 1315 | message('default-dnssec cannot be set to yes or allow-downgrade when gcrypt is disabled. Setting default-dnssec to no.') |
| 1316 | default_dnssec = 'no' |
| 1317 | endif |
| 1318 | conf.set('DEFAULT_DNSSEC_MODE', |
| 1319 | 'DNSSEC_' + default_dnssec.underscorify().to_upper()) |
| 1320 | substs.set('DEFAULT_DNSSEC_MODE', default_dnssec) |
| 1321 | |
Yu Watanabe | 56ddbf1 | 2018-06-21 01:29:49 +0900 | [diff] [blame] | 1322 | dns_over_tls = get_option('dns-over-tls') |
| 1323 | if dns_over_tls != 'false' |
Iwan Timmer | 096cbdc | 2018-07-26 22:47:50 +0100 | [diff] [blame] | 1324 | if dns_over_tls == 'openssl' |
| 1325 | have_gnutls = false |
| 1326 | else |
Iwan Timmer | 38e053c | 2019-10-29 20:26:05 +0100 | [diff] [blame] | 1327 | have_gnutls = (conf.get('HAVE_GNUTLS') == 1 and libgnutls.version().version_compare('>= 3.6.0')) |
Iwan Timmer | 096cbdc | 2018-07-26 22:47:50 +0100 | [diff] [blame] | 1328 | if dns_over_tls == 'gnutls' and not have_gnutls |
| 1329 | error('DNS-over-TLS support was requested with gnutls, but dependencies are not available') |
| 1330 | endif |
Yu Watanabe | 56ddbf1 | 2018-06-21 01:29:49 +0900 | [diff] [blame] | 1331 | endif |
Iwan Timmer | 096cbdc | 2018-07-26 22:47:50 +0100 | [diff] [blame] | 1332 | if dns_over_tls == 'gnutls' or have_gnutls |
| 1333 | have_openssl = false |
| 1334 | else |
| 1335 | have_openssl = conf.get('HAVE_OPENSSL') == 1 |
| 1336 | if dns_over_tls != 'auto' and not have_openssl |
| 1337 | str = dns_over_tls == 'openssl' ? ' with openssl' : '' |
Yu Watanabe | b349bc5 | 2019-06-17 10:22:54 +0900 | [diff] [blame] | 1338 | error('DNS-over-TLS support was requested@0@, but dependencies are not available'.format(str)) |
Iwan Timmer | 096cbdc | 2018-07-26 22:47:50 +0100 | [diff] [blame] | 1339 | endif |
| 1340 | endif |
| 1341 | have = have_gnutls or have_openssl |
Yu Watanabe | 56ddbf1 | 2018-06-21 01:29:49 +0900 | [diff] [blame] | 1342 | else |
Michael Olbrich | be5536a | 2018-11-11 11:30:53 +0100 | [diff] [blame] | 1343 | have = false |
| 1344 | have_gnutls = false |
| 1345 | have_openssl = false |
Yu Watanabe | 56ddbf1 | 2018-06-21 01:29:49 +0900 | [diff] [blame] | 1346 | endif |
| 1347 | conf.set10('ENABLE_DNS_OVER_TLS', have) |
Iwan Timmer | 096cbdc | 2018-07-26 22:47:50 +0100 | [diff] [blame] | 1348 | conf.set10('DNS_OVER_TLS_USE_GNUTLS', have_gnutls) |
| 1349 | conf.set10('DNS_OVER_TLS_USE_OPENSSL', have_openssl) |
Yu Watanabe | 56ddbf1 | 2018-06-21 01:29:49 +0900 | [diff] [blame] | 1350 | |
Iwan Timmer | c9299be | 2018-06-13 20:26:24 +0200 | [diff] [blame] | 1351 | default_dns_over_tls = get_option('default-dns-over-tls') |
Evgeny Vereshchagin | 87ac55a | 2019-05-05 19:28:42 +0000 | [diff] [blame] | 1352 | if skip_deps |
Iwan Timmer | c9299be | 2018-06-13 20:26:24 +0200 | [diff] [blame] | 1353 | default_dns_over_tls = 'no' |
Iwan Timmer | 5d67a7a | 2018-04-27 17:50:38 +0200 | [diff] [blame] | 1354 | endif |
Yu Watanabe | 56ddbf1 | 2018-06-21 01:29:49 +0900 | [diff] [blame] | 1355 | if default_dns_over_tls != 'no' and conf.get('ENABLE_DNS_OVER_TLS') == 0 |
Iwan Timmer | 4310bfc | 2019-02-18 20:41:46 +0100 | [diff] [blame] | 1356 | message('default-dns-over-tls cannot be enabled or set to opportunistic when DNS-over-TLS support is disabled. Setting default-dns-over-tls to no.') |
Iwan Timmer | c9299be | 2018-06-13 20:26:24 +0200 | [diff] [blame] | 1357 | default_dns_over_tls = 'no' |
Iwan Timmer | 5d67a7a | 2018-04-27 17:50:38 +0200 | [diff] [blame] | 1358 | endif |
Iwan Timmer | c9299be | 2018-06-13 20:26:24 +0200 | [diff] [blame] | 1359 | conf.set('DEFAULT_DNS_OVER_TLS_MODE', |
| 1360 | 'DNS_OVER_TLS_' + default_dns_over_tls.underscorify().to_upper()) |
| 1361 | substs.set('DEFAULT_DNS_OVER_TLS_MODE', default_dns_over_tls) |
Iwan Timmer | 5d67a7a | 2018-04-27 17:50:38 +0200 | [diff] [blame] | 1362 | |
Zbigniew Jędrzejewski-Szmek | 3614df0 | 2020-04-14 22:18:18 +0200 | [diff] [blame] | 1363 | default_mdns = get_option('default-mdns') |
| 1364 | conf.set('DEFAULT_MDNS_MODE', |
| 1365 | 'RESOLVE_SUPPORT_' + default_mdns.to_upper()) |
| 1366 | substs.set('DEFAULT_MDNS_MODE', default_mdns) |
| 1367 | |
| 1368 | default_llmnr = get_option('default-llmnr') |
| 1369 | conf.set('DEFAULT_LLMNR_MODE', |
| 1370 | 'RESOLVE_SUPPORT_' + default_llmnr.to_upper()) |
| 1371 | substs.set('DEFAULT_LLMNR_MODE', default_llmnr) |
| 1372 | |
Lennart Poettering | e594a3b | 2019-12-10 21:31:41 +0100 | [diff] [blame] | 1373 | want_repart = get_option('repart') |
| 1374 | if want_repart != 'false' |
| 1375 | have = (conf.get('HAVE_OPENSSL') == 1 and |
| 1376 | conf.get('HAVE_LIBFDISK') == 1) |
| 1377 | if want_repart == 'true' and not have |
| 1378 | error('repart support was requested, but dependencies are not available') |
| 1379 | endif |
| 1380 | else |
| 1381 | have = false |
| 1382 | endif |
| 1383 | conf.set10('ENABLE_REPART', have) |
| 1384 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1385 | want_importd = get_option('importd') |
Zbigniew Jędrzejewski-Szmek | 4390be3 | 2017-04-13 20:30:07 -0400 | [diff] [blame] | 1386 | if want_importd != 'false' |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1387 | have = (conf.get('HAVE_LIBCURL') == 1 and |
| 1388 | conf.get('HAVE_ZLIB') == 1 and |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1389 | conf.get('HAVE_XZ') == 1 and |
| 1390 | conf.get('HAVE_GCRYPT') == 1) |
| 1391 | if want_importd == 'true' and not have |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1392 | error('importd support was requested, but dependencies are not available') |
| 1393 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1394 | else |
| 1395 | have = false |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1396 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1397 | conf.set10('ENABLE_IMPORTD', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1398 | |
Lennart Poettering | 70a5db5 | 2019-07-04 18:35:39 +0200 | [diff] [blame] | 1399 | want_homed = get_option('homed') |
| 1400 | if want_homed != 'false' |
| 1401 | have = (conf.get('HAVE_OPENSSL') == 1 and |
| 1402 | conf.get('HAVE_LIBFDISK') == 1 and |
| 1403 | conf.get('HAVE_LIBCRYPTSETUP') == 1) |
| 1404 | if want_homed == 'true' and not have |
| 1405 | error('homed support was requested, but dependencies are not available') |
| 1406 | endif |
| 1407 | else |
| 1408 | have = false |
| 1409 | endif |
| 1410 | conf.set10('ENABLE_HOMED', have) |
| 1411 | |
Yu Watanabe | af06ddf | 2020-02-01 11:01:41 +0900 | [diff] [blame] | 1412 | have = have and conf.get('HAVE_PAM') == 1 |
| 1413 | conf.set10('ENABLE_PAM_HOME', have) |
| 1414 | |
Zbigniew Jędrzejewski-Szmek | d58c5f0 | 2020-10-15 15:53:57 +0200 | [diff] [blame] | 1415 | have = get_option('oomd') |
| 1416 | if have == 'auto' |
| 1417 | have = get_option('mode') == 'developer' |
| 1418 | else |
| 1419 | have = have == 'true' |
| 1420 | if have and get_option('mode') != 'developer' |
| 1421 | error('oomd is not available in release mode (yet)') |
| 1422 | endif |
| 1423 | endif |
Anita Zhang | c199dd3 | 2020-10-14 23:14:15 -0700 | [diff] [blame] | 1424 | conf.set10('ENABLE_OOMD', have) |
| 1425 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1426 | want_remote = get_option('remote') |
Zbigniew Jędrzejewski-Szmek | 4390be3 | 2017-04-13 20:30:07 -0400 | [diff] [blame] | 1427 | if want_remote != 'false' |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1428 | have_deps = [conf.get('HAVE_MICROHTTPD') == 1, |
| 1429 | conf.get('HAVE_LIBCURL') == 1] |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1430 | # sd-j-remote requires µhttpd, and sd-j-upload requires libcurl, so |
| 1431 | # it's possible to build one without the other. Complain only if |
Ben Boeckel | 5238e95 | 2019-04-26 20:22:40 -0400 | [diff] [blame] | 1432 | # support was explicitly requested. The auxiliary files like sysusers |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1433 | # config should be installed when any of the programs are built. |
| 1434 | if want_remote == 'true' and not (have_deps[0] and have_deps[1]) |
| 1435 | error('remote support was requested, but dependencies are not available') |
| 1436 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1437 | have = have_deps[0] or have_deps[1] |
| 1438 | else |
| 1439 | have = false |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1440 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1441 | conf.set10('ENABLE_REMOTE', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1442 | |
Zbigniew Jędrzejewski-Szmek | b3259a6 | 2020-08-20 17:35:50 +0200 | [diff] [blame] | 1443 | foreach term : ['analyze', |
| 1444 | 'backlight', |
Zbigniew Jędrzejewski-Szmek | a9149d8 | 2017-10-03 13:15:27 +0200 | [diff] [blame] | 1445 | 'binfmt', |
| 1446 | 'coredump', |
Zbigniew Jędrzejewski-Szmek | b3259a6 | 2020-08-20 17:35:50 +0200 | [diff] [blame] | 1447 | 'efi', |
| 1448 | 'environment-d', |
| 1449 | 'firstboot', |
| 1450 | 'gshadow', |
| 1451 | 'hibernate', |
Zbigniew Jędrzejewski-Szmek | a9149d8 | 2017-10-03 13:15:27 +0200 | [diff] [blame] | 1452 | 'hostnamed', |
Zbigniew Jędrzejewski-Szmek | b3259a6 | 2020-08-20 17:35:50 +0200 | [diff] [blame] | 1453 | 'hwdb', |
| 1454 | 'idn', |
| 1455 | 'ima', |
| 1456 | 'initrd', |
Zbigniew Jędrzejewski-Szmek | 53393c8 | 2020-09-25 16:31:42 +0200 | [diff] [blame] | 1457 | 'compat-mutable-uid-boundaries', |
Zbigniew Jędrzejewski-Szmek | b3259a6 | 2020-08-20 17:35:50 +0200 | [diff] [blame] | 1458 | 'ldconfig', |
Zbigniew Jędrzejewski-Szmek | a9149d8 | 2017-10-03 13:15:27 +0200 | [diff] [blame] | 1459 | 'localed', |
Zbigniew Jędrzejewski-Szmek | b3259a6 | 2020-08-20 17:35:50 +0200 | [diff] [blame] | 1460 | 'logind', |
Zbigniew Jędrzejewski-Szmek | a9149d8 | 2017-10-03 13:15:27 +0200 | [diff] [blame] | 1461 | 'machined', |
| 1462 | 'networkd', |
Zbigniew Jędrzejewski-Szmek | b3259a6 | 2020-08-20 17:35:50 +0200 | [diff] [blame] | 1463 | 'nss-myhostname', |
| 1464 | 'nss-systemd', |
Anita Zhang | 61ff739 | 2020-03-07 17:25:35 -0800 | [diff] [blame] | 1465 | 'oomd', |
Zbigniew Jędrzejewski-Szmek | b3259a6 | 2020-08-20 17:35:50 +0200 | [diff] [blame] | 1466 | 'portabled', |
| 1467 | 'pstore', |
| 1468 | 'quotacheck', |
| 1469 | 'randomseed', |
| 1470 | 'resolve', |
| 1471 | 'rfkill', |
| 1472 | 'smack', |
| 1473 | 'sysusers', |
Zbigniew Jędrzejewski-Szmek | a9149d8 | 2017-10-03 13:15:27 +0200 | [diff] [blame] | 1474 | 'timedated', |
| 1475 | 'timesyncd', |
Zbigniew Jędrzejewski-Szmek | a9149d8 | 2017-10-03 13:15:27 +0200 | [diff] [blame] | 1476 | 'tmpfiles', |
Zbigniew Jędrzejewski-Szmek | a9149d8 | 2017-10-03 13:15:27 +0200 | [diff] [blame] | 1477 | 'tpm', |
Zbigniew Jędrzejewski-Szmek | b3259a6 | 2020-08-20 17:35:50 +0200 | [diff] [blame] | 1478 | 'userdb', |
| 1479 | 'utmp', |
| 1480 | 'vconsole', |
| 1481 | 'xdg-autostart'] |
Zbigniew Jędrzejewski-Szmek | a9149d8 | 2017-10-03 13:15:27 +0200 | [diff] [blame] | 1482 | have = get_option(term) |
| 1483 | name = 'ENABLE_' + term.underscorify().to_upper() |
| 1484 | conf.set10(name, have) |
Zbigniew Jędrzejewski-Szmek | aa25270 | 2020-09-25 17:16:06 +0200 | [diff] [blame] | 1485 | substs.set10(name, have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1486 | endforeach |
| 1487 | |
Zbigniew Jędrzejewski-Szmek | bd7e6aa | 2020-09-26 11:58:24 +0200 | [diff] [blame] | 1488 | enable_sysusers = conf.get('ENABLE_SYSUSERS') == 1 |
| 1489 | |
Yu Watanabe | 08540a9 | 2018-07-18 09:25:57 +0900 | [diff] [blame] | 1490 | foreach tuple : [['nss-mymachines', 'machined'], |
| 1491 | ['nss-resolve', 'resolve']] |
| 1492 | want = get_option(tuple[0]) |
| 1493 | if want != 'false' |
| 1494 | have = get_option(tuple[1]) |
| 1495 | if want == 'true' and not have |
| 1496 | error('@0@ is requested but @1@ is disabled'.format(tuple[0], tuple[1])) |
| 1497 | endif |
| 1498 | else |
| 1499 | have = false |
| 1500 | endif |
| 1501 | name = 'ENABLE_' + tuple[0].underscorify().to_upper() |
| 1502 | conf.set10(name, have) |
| 1503 | endforeach |
| 1504 | |
| 1505 | enable_nss = false |
| 1506 | foreach term : ['ENABLE_NSS_MYHOSTNAME', |
| 1507 | 'ENABLE_NSS_MYMACHINES', |
| 1508 | 'ENABLE_NSS_RESOLVE', |
| 1509 | 'ENABLE_NSS_SYSTEMD'] |
| 1510 | if conf.get(term) == 1 |
| 1511 | enable_nss = true |
| 1512 | endif |
| 1513 | endforeach |
| 1514 | conf.set10('ENABLE_NSS', enable_nss) |
| 1515 | |
Yu Watanabe | 348b443 | 2018-05-07 18:17:35 +0900 | [diff] [blame] | 1516 | conf.set10('ENABLE_TIMEDATECTL', get_option('timedated') or get_option('timesyncd')) |
Yu Watanabe | 6129ec8 | 2018-05-03 18:07:43 +0900 | [diff] [blame] | 1517 | |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 1518 | tests = [] |
Jonathan Rudenberg | 7db7d5b | 2018-01-13 19:51:07 -0500 | [diff] [blame] | 1519 | fuzzers = [] |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 1520 | |
Zbigniew Jędrzejewski-Szmek | b68dfb9 | 2018-01-19 17:54:30 +1100 | [diff] [blame] | 1521 | conf.set10('SYSTEMD_SLOW_TESTS_DEFAULT', slow_tests) |
Zbigniew Jędrzejewski-Szmek | 00d82c8 | 2017-07-12 21:25:17 +0000 | [diff] [blame] | 1522 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1523 | ##################################################################### |
| 1524 | |
| 1525 | if get_option('efi') |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1526 | efi_arch = host_machine.cpu_family() |
Zbigniew Jędrzejewski-Szmek | b710072 | 2017-04-12 15:05:55 -0400 | [diff] [blame] | 1527 | |
Zbigniew Jędrzejewski-Szmek | 6800fe7 | 2017-04-19 22:57:52 -0400 | [diff] [blame] | 1528 | if efi_arch == 'x86' |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1529 | EFI_MACHINE_TYPE_NAME = 'ia32' |
Zbigniew Jędrzejewski-Szmek | 6800fe7 | 2017-04-19 22:57:52 -0400 | [diff] [blame] | 1530 | gnu_efi_arch = 'ia32' |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1531 | elif efi_arch == 'x86_64' |
| 1532 | EFI_MACHINE_TYPE_NAME = 'x64' |
Zbigniew Jędrzejewski-Szmek | 6800fe7 | 2017-04-19 22:57:52 -0400 | [diff] [blame] | 1533 | gnu_efi_arch = 'x86_64' |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1534 | elif efi_arch == 'arm' |
| 1535 | EFI_MACHINE_TYPE_NAME = 'arm' |
Zbigniew Jędrzejewski-Szmek | 6800fe7 | 2017-04-19 22:57:52 -0400 | [diff] [blame] | 1536 | gnu_efi_arch = 'arm' |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1537 | elif efi_arch == 'aarch64' |
| 1538 | EFI_MACHINE_TYPE_NAME = 'aa64' |
Zbigniew Jędrzejewski-Szmek | 6800fe7 | 2017-04-19 22:57:52 -0400 | [diff] [blame] | 1539 | gnu_efi_arch = 'aarch64' |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1540 | else |
| 1541 | EFI_MACHINE_TYPE_NAME = '' |
Zbigniew Jędrzejewski-Szmek | 6800fe7 | 2017-04-19 22:57:52 -0400 | [diff] [blame] | 1542 | gnu_efi_arch = '' |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1543 | endif |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1544 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1545 | have = true |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1546 | 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] | 1547 | |
Yu Watanabe | ac09340 | 2018-05-10 16:04:16 +0900 | [diff] [blame] | 1548 | conf.set('SD_TPM_PCR', get_option('tpm-pcrindex')) |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1549 | else |
| 1550 | have = false |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1551 | endif |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1552 | conf.set10('ENABLE_EFI', have) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1553 | |
| 1554 | ##################################################################### |
| 1555 | |
| 1556 | config_h = configure_file( |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1557 | output : 'config.h', |
| 1558 | configuration : conf) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1559 | |
Yu Watanabe | 348b443 | 2018-05-07 18:17:35 +0900 | [diff] [blame] | 1560 | meson_apply_m4 = find_program('tools/meson-apply-m4.sh') |
| 1561 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1562 | includes = include_directories('src/basic', |
Zbigniew Jędrzejewski-Szmek | 91b08bb | 2019-07-02 13:01:23 +0200 | [diff] [blame] | 1563 | 'src/boot', |
Lennart Poettering | c76dd73 | 2020-05-05 09:57:04 +0200 | [diff] [blame] | 1564 | 'src/home', |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1565 | 'src/shared', |
| 1566 | 'src/systemd', |
| 1567 | 'src/journal', |
Zbigniew Jędrzejewski-Szmek | a38f7fe | 2018-05-16 12:05:07 +0200 | [diff] [blame] | 1568 | 'src/journal-remote', |
Zbigniew Jędrzejewski-Szmek | 97d9061 | 2018-05-28 10:37:11 +0200 | [diff] [blame] | 1569 | 'src/nspawn', |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1570 | 'src/resolve', |
| 1571 | 'src/timesync', |
Peter A. Bigot | 5c3376e | 2018-03-21 06:42:04 -0500 | [diff] [blame] | 1572 | 'src/time-wait-sync', |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1573 | 'src/login', |
| 1574 | 'src/udev', |
| 1575 | 'src/libudev', |
| 1576 | 'src/core', |
Lennart Poettering | 9e71f5d | 2019-03-05 12:12:33 +0100 | [diff] [blame] | 1577 | 'src/shutdown', |
Benjamin Berg | 8feca24 | 2020-03-25 16:59:40 +0100 | [diff] [blame] | 1578 | 'src/xdg-autostart-generator', |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1579 | 'src/libsystemd/sd-bus', |
| 1580 | 'src/libsystemd/sd-device', |
Yu Watanabe | a137a1c | 2018-11-16 17:30:42 +0900 | [diff] [blame] | 1581 | 'src/libsystemd/sd-event', |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1582 | 'src/libsystemd/sd-hwdb', |
| 1583 | 'src/libsystemd/sd-id128', |
| 1584 | 'src/libsystemd/sd-netlink', |
| 1585 | 'src/libsystemd/sd-network', |
Yu Watanabe | ceb26cd | 2018-12-10 15:45:48 +0900 | [diff] [blame] | 1586 | 'src/libsystemd/sd-resolve', |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1587 | 'src/libsystemd-network', |
Zbigniew Jędrzejewski-Szmek | 2d4ceca | 2017-12-19 14:19:46 +0100 | [diff] [blame] | 1588 | '.') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1589 | |
| 1590 | add_project_arguments('-include', 'config.h', language : 'c') |
| 1591 | |
Yu Watanabe | 6ec439f | 2018-11-28 20:19:41 +0900 | [diff] [blame] | 1592 | generate_gperfs = find_program('tools/generate-gperfs.py') |
| 1593 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1594 | subdir('po') |
| 1595 | subdir('catalog') |
| 1596 | subdir('src/systemd') |
| 1597 | subdir('src/basic') |
| 1598 | subdir('src/libsystemd') |
| 1599 | subdir('src/libsystemd-network') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1600 | subdir('src/journal') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1601 | subdir('src/login') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1602 | |
| 1603 | libjournal_core = static_library( |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1604 | 'journal-core', |
| 1605 | libjournal_core_sources, |
| 1606 | journald_gperf_c, |
| 1607 | include_directories : includes, |
| 1608 | install : false) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1609 | |
Davide Cavalca | 1485aac | 2019-02-27 11:19:07 -0500 | [diff] [blame] | 1610 | libsystemd_sym_path = '@0@/@1@'.format(project_source_root, libsystemd_sym) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1611 | libsystemd = shared_library( |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1612 | 'systemd', |
Zbigniew Jędrzejewski-Szmek | a5d8835 | 2018-10-09 16:02:55 +0200 | [diff] [blame] | 1613 | disable_mempool_c, |
Zbigniew Jędrzejewski-Szmek | 56d50ab | 2017-09-28 19:24:16 +0200 | [diff] [blame] | 1614 | version : libsystemd_version, |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1615 | include_directories : includes, |
| 1616 | link_args : ['-shared', |
| 1617 | '-Wl,--version-script=' + libsystemd_sym_path], |
Zbigniew Jędrzejewski-Szmek | 34e221a | 2017-12-19 19:06:56 +0100 | [diff] [blame] | 1618 | link_with : [libbasic, |
| 1619 | libbasic_gcrypt], |
Zbigniew Jędrzejewski-Szmek | 5e3cec8 | 2017-12-19 19:38:43 +0100 | [diff] [blame] | 1620 | link_whole : [libsystemd_static, |
| 1621 | libjournal_client], |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1622 | dependencies : [threads, |
| 1623 | librt, |
| 1624 | libxz, |
Norbert Lange | ef5924a | 2020-04-12 01:09:05 +0200 | [diff] [blame] | 1625 | libzstd, |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1626 | liblz4], |
| 1627 | link_depends : libsystemd_sym, |
| 1628 | install : true, |
| 1629 | install_dir : rootlibdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1630 | |
Davide Cavalca | 70848ec | 2018-04-09 02:43:35 -0700 | [diff] [blame] | 1631 | static_libsystemd = get_option('static-libsystemd') |
| 1632 | static_libsystemd_pic = static_libsystemd == 'true' or static_libsystemd == 'pic' |
| 1633 | |
| 1634 | install_libsystemd_static = static_library( |
| 1635 | 'systemd', |
| 1636 | libsystemd_sources, |
| 1637 | journal_client_sources, |
Zbigniew Jędrzejewski-Szmek | 975464e | 2018-04-25 15:29:48 +0200 | [diff] [blame] | 1638 | basic_sources, |
| 1639 | basic_gcrypt_sources, |
Yu Watanabe | be44b57 | 2018-10-12 11:59:55 +0900 | [diff] [blame] | 1640 | disable_mempool_c, |
Davide Cavalca | 70848ec | 2018-04-09 02:43:35 -0700 | [diff] [blame] | 1641 | include_directories : includes, |
Davide Cavalca | 70848ec | 2018-04-09 02:43:35 -0700 | [diff] [blame] | 1642 | build_by_default : static_libsystemd != 'false', |
| 1643 | install : static_libsystemd != 'false', |
| 1644 | install_dir : rootlibdir, |
| 1645 | pic : static_libsystemd == 'true' or static_libsystemd == 'pic', |
| 1646 | dependencies : [threads, |
| 1647 | librt, |
| 1648 | libxz, |
Norbert Lange | ef5924a | 2020-04-12 01:09:05 +0200 | [diff] [blame] | 1649 | libzstd, |
Davide Cavalca | 70848ec | 2018-04-09 02:43:35 -0700 | [diff] [blame] | 1650 | liblz4, |
Zbigniew Jędrzejewski-Szmek | 975464e | 2018-04-25 15:29:48 +0200 | [diff] [blame] | 1651 | libcap, |
| 1652 | libblkid, |
| 1653 | libmount, |
| 1654 | libselinux, |
Davide Cavalca | 70848ec | 2018-04-09 02:43:35 -0700 | [diff] [blame] | 1655 | libgcrypt], |
| 1656 | c_args : libsystemd_c_args + (static_libsystemd_pic ? [] : ['-fno-PIC'])) |
| 1657 | |
Zbigniew Jędrzejewski-Szmek | 47354b4 | 2020-08-18 16:27:20 +0200 | [diff] [blame] | 1658 | ############################################################ |
| 1659 | |
| 1660 | autosuspend_update_sh = find_program('tools/autosuspend-update.sh') |
| 1661 | hwdb_update_sh = find_program('tools/hwdb-update.sh') |
Mario Limonciello | b61d777 | 2019-09-09 22:49:35 +0100 | [diff] [blame] | 1662 | make_autosuspend_rules_py = find_program('tools/make-autosuspend-rules.py') |
Zbigniew Jędrzejewski-Szmek | 47354b4 | 2020-08-18 16:27:20 +0200 | [diff] [blame] | 1663 | make_directive_index_py = find_program('tools/make-directive-index.py') |
| 1664 | make_man_index_py = find_program('tools/make-man-index.py') |
| 1665 | syscall_names_update_sh = find_program('tools/syscall-names-update.sh') |
| 1666 | xml_helper_py = find_program('tools/xml_helper.py') |
Zbigniew Jędrzejewski-Szmek | 4cc73cf | 2020-08-27 20:10:01 +0200 | [diff] [blame] | 1667 | update_dbus_docs_py = find_program('tools/update-dbus-docs.py') |
Mario Limonciello | b61d777 | 2019-09-09 22:49:35 +0100 | [diff] [blame] | 1668 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1669 | ############################################################ |
| 1670 | |
Zbigniew Jędrzejewski-Szmek | 005a29f | 2017-04-13 11:52:05 -0400 | [diff] [blame] | 1671 | # binaries that have --help and are intended for use by humans, |
| 1672 | # usually, but not always, installed in /bin. |
| 1673 | public_programs = [] |
| 1674 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1675 | subdir('src/libudev') |
| 1676 | subdir('src/shared') |
| 1677 | subdir('src/core') |
Lennart Poettering | 9e71f5d | 2019-03-05 12:12:33 +0100 | [diff] [blame] | 1678 | subdir('src/shutdown') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1679 | subdir('src/udev') |
| 1680 | subdir('src/network') |
| 1681 | |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 1682 | subdir('src/analyze') |
| 1683 | subdir('src/journal-remote') |
| 1684 | subdir('src/coredump') |
Eric DeVolder | 9b4abc6 | 2019-05-16 08:59:01 -0500 | [diff] [blame] | 1685 | subdir('src/pstore') |
Anita Zhang | 61ff739 | 2020-03-07 17:25:35 -0800 | [diff] [blame] | 1686 | subdir('src/oom') |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 1687 | subdir('src/hostname') |
| 1688 | subdir('src/import') |
Lennart Poettering | e594a3b | 2019-12-10 21:31:41 +0100 | [diff] [blame] | 1689 | subdir('src/partition') |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 1690 | subdir('src/kernel-install') |
| 1691 | subdir('src/locale') |
| 1692 | subdir('src/machine') |
Lennart Poettering | 61d0578 | 2018-04-16 21:41:40 +0200 | [diff] [blame] | 1693 | subdir('src/portable') |
Lennart Poettering | d093b62 | 2019-07-04 18:33:30 +0200 | [diff] [blame] | 1694 | subdir('src/userdb') |
Lennart Poettering | 70a5db5 | 2019-07-04 18:35:39 +0200 | [diff] [blame] | 1695 | subdir('src/home') |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 1696 | subdir('src/nspawn') |
| 1697 | subdir('src/resolve') |
| 1698 | subdir('src/timedate') |
| 1699 | subdir('src/timesync') |
Filipe Brandenburger | db64ba8 | 2020-06-03 14:49:53 -0700 | [diff] [blame] | 1700 | subdir('src/tmpfiles') |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 1701 | subdir('src/vconsole') |
Zbigniew Jędrzejewski-Szmek | b710072 | 2017-04-12 15:05:55 -0400 | [diff] [blame] | 1702 | subdir('src/boot/efi') |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 1703 | |
| 1704 | subdir('src/test') |
Jonathan Rudenberg | 7db7d5b | 2018-01-13 19:51:07 -0500 | [diff] [blame] | 1705 | subdir('src/fuzz') |
Zbigniew Jędrzejewski-Szmek | ef2ad30 | 2019-10-08 16:43:18 +0200 | [diff] [blame] | 1706 | subdir('rules.d') |
Zbigniew Jędrzejewski-Szmek | 4ff3f25 | 2017-04-13 20:47:20 -0400 | [diff] [blame] | 1707 | subdir('test') |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 1708 | |
Zbigniew Jędrzejewski-Szmek | 83b6af3 | 2017-04-14 20:10:28 -0400 | [diff] [blame] | 1709 | ############################################################ |
| 1710 | |
| 1711 | # only static linking apart from libdl, to make sure that the |
| 1712 | # module is linked to all libraries that it uses. |
| 1713 | test_dlopen = executable( |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1714 | 'test-dlopen', |
| 1715 | test_dlopen_c, |
Zbigniew Jędrzejewski-Szmek | a5d8835 | 2018-10-09 16:02:55 +0200 | [diff] [blame] | 1716 | disable_mempool_c, |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1717 | include_directories : includes, |
| 1718 | link_with : [libbasic], |
Yu Watanabe | fd1939f | 2018-09-12 21:47:56 +0900 | [diff] [blame] | 1719 | dependencies : [libdl], |
| 1720 | build_by_default : want_tests != 'false') |
Zbigniew Jędrzejewski-Szmek | 83b6af3 | 2017-04-14 20:10:28 -0400 | [diff] [blame] | 1721 | |
Yu Watanabe | 08540a9 | 2018-07-18 09:25:57 +0900 | [diff] [blame] | 1722 | foreach tuple : [['myhostname', 'ENABLE_NSS_MYHOSTNAME'], |
Lennart Poettering | 037b0a4 | 2020-06-04 11:46:36 +0200 | [diff] [blame] | 1723 | ['systemd', 'ENABLE_NSS_SYSTEMD', 'src/nss-systemd/userdb-glue.c src/nss-systemd/userdb-glue.h src/nss-systemd/nss-systemd.h'], |
Yu Watanabe | 08540a9 | 2018-07-18 09:25:57 +0900 | [diff] [blame] | 1724 | ['mymachines', 'ENABLE_NSS_MYMACHINES'], |
| 1725 | ['resolve', 'ENABLE_NSS_RESOLVE']] |
Zbigniew Jędrzejewski-Szmek | 83b6af3 | 2017-04-14 20:10:28 -0400 | [diff] [blame] | 1726 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1727 | condition = tuple[1] == '' or conf.get(tuple[1]) == 1 |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1728 | if condition |
| 1729 | module = tuple[0] |
Zbigniew Jędrzejewski-Szmek | 83b6af3 | 2017-04-14 20:10:28 -0400 | [diff] [blame] | 1730 | |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1731 | sym = 'src/nss-@0@/nss-@0@.sym'.format(module) |
Davide Cavalca | 1485aac | 2019-02-27 11:19:07 -0500 | [diff] [blame] | 1732 | version_script_arg = join_paths(project_source_root, sym) |
Zbigniew Jędrzejewski-Szmek | 83b6af3 | 2017-04-14 20:10:28 -0400 | [diff] [blame] | 1733 | |
Lennart Poettering | 1684c56 | 2019-07-04 18:31:11 +0200 | [diff] [blame] | 1734 | sources = ['src/nss-@0@/nss-@0@.c'.format(module)] |
| 1735 | if tuple.length() > 2 |
| 1736 | sources += tuple[2].split() |
| 1737 | endif |
| 1738 | |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1739 | nss = shared_library( |
| 1740 | 'nss_' + module, |
Lennart Poettering | 1684c56 | 2019-07-04 18:31:11 +0200 | [diff] [blame] | 1741 | sources, |
Zbigniew Jędrzejewski-Szmek | a5d8835 | 2018-10-09 16:02:55 +0200 | [diff] [blame] | 1742 | disable_mempool_c, |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1743 | version : '2', |
| 1744 | include_directories : includes, |
Lennart Poettering | b4b36f4 | 2017-12-12 20:13:16 +0100 | [diff] [blame] | 1745 | # Note that we link NSS modules with '-z nodelete' so that mempools never get orphaned |
| 1746 | link_args : ['-Wl,-z,nodelete', |
| 1747 | '-shared', |
Jussi Pakkanen | 700805f | 2019-04-06 21:59:06 +0200 | [diff] [blame] | 1748 | '-Wl,--version-script=' + version_script_arg], |
Zbigniew Jędrzejewski-Szmek | 37e4d7a | 2017-12-19 11:35:01 +0100 | [diff] [blame] | 1749 | link_with : [libsystemd_static, |
Lennart Poettering | 733cbd0 | 2019-07-23 14:22:06 +0200 | [diff] [blame] | 1750 | libshared_static, |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1751 | libbasic], |
| 1752 | dependencies : [threads, |
Zbigniew Jędrzejewski-Szmek | 5486a31 | 2017-05-12 08:31:46 -0400 | [diff] [blame] | 1753 | librt], |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1754 | link_depends : sym, |
| 1755 | install : true, |
| 1756 | install_dir : rootlibdir) |
Zbigniew Jędrzejewski-Szmek | 83b6af3 | 2017-04-14 20:10:28 -0400 | [diff] [blame] | 1757 | |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1758 | # We cannot use shared_module because it does not support version suffix. |
| 1759 | # Unfortunately shared_library insists on creating the symlink… |
| 1760 | meson.add_install_script('sh', '-c', |
| 1761 | 'rm $DESTDIR@0@/libnss_@1@.so' |
| 1762 | .format(rootlibdir, module)) |
Zbigniew Jędrzejewski-Szmek | 83b6af3 | 2017-04-14 20:10:28 -0400 | [diff] [blame] | 1763 | |
Zbigniew Jędrzejewski-Szmek | 938be08 | 2018-09-12 11:08:49 +0200 | [diff] [blame] | 1764 | if want_tests != 'false' |
| 1765 | test('dlopen-nss_' + module, |
| 1766 | test_dlopen, |
| 1767 | # path to dlopen must include a slash |
| 1768 | args : nss.full_path()) |
| 1769 | endif |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1770 | endif |
Zbigniew Jędrzejewski-Szmek | 83b6af3 | 2017-04-14 20:10:28 -0400 | [diff] [blame] | 1771 | endforeach |
| 1772 | |
| 1773 | ############################################################ |
| 1774 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1775 | executable( |
| 1776 | 'systemd', |
| 1777 | systemd_sources, |
| 1778 | include_directories : includes, |
| 1779 | link_with : [libcore, |
| 1780 | libshared], |
| 1781 | dependencies : [versiondep, |
| 1782 | threads, |
| 1783 | librt, |
| 1784 | libseccomp, |
| 1785 | libselinux, |
| 1786 | libmount, |
| 1787 | libblkid], |
| 1788 | install_rpath : rootlibexecdir, |
| 1789 | install : true, |
| 1790 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1791 | |
Zbigniew Jędrzejewski-Szmek | ba7f4ae | 2018-02-28 10:20:48 +0100 | [diff] [blame] | 1792 | meson.add_install_script(meson_make_symlink, |
| 1793 | join_paths(rootlibexecdir, 'systemd'), |
| 1794 | join_paths(rootsbindir, 'init')) |
| 1795 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1796 | public_programs += executable( |
| 1797 | 'systemd-analyze', |
| 1798 | systemd_analyze_sources, |
| 1799 | include_directories : includes, |
| 1800 | link_with : [libcore, |
| 1801 | libshared], |
| 1802 | dependencies : [versiondep, |
| 1803 | threads, |
| 1804 | librt, |
| 1805 | libseccomp, |
| 1806 | libselinux, |
| 1807 | libmount, |
| 1808 | libblkid], |
| 1809 | install_rpath : rootlibexecdir, |
Zbigniew Jędrzejewski-Szmek | b3259a6 | 2020-08-20 17:35:50 +0200 | [diff] [blame] | 1810 | install : conf.get('ENABLE_ANALYZE')) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1811 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1812 | executable( |
| 1813 | 'systemd-journald', |
| 1814 | systemd_journald_sources, |
| 1815 | include_directories : includes, |
| 1816 | link_with : [libjournal_core, |
| 1817 | libshared], |
| 1818 | dependencies : [threads, |
| 1819 | libxz, |
| 1820 | liblz4, |
Norbert Lange | ef5924a | 2020-04-12 01:09:05 +0200 | [diff] [blame] | 1821 | libselinux, |
| 1822 | libzstd], |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1823 | install_rpath : rootlibexecdir, |
| 1824 | install : true, |
| 1825 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1826 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1827 | public_programs += executable( |
| 1828 | 'systemd-cat', |
| 1829 | systemd_cat_sources, |
| 1830 | include_directories : includes, |
| 1831 | link_with : [libjournal_core, |
| 1832 | libshared], |
| 1833 | dependencies : [threads], |
| 1834 | install_rpath : rootlibexecdir, |
| 1835 | install : true) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1836 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1837 | public_programs += executable( |
| 1838 | 'journalctl', |
| 1839 | journalctl_sources, |
| 1840 | include_directories : includes, |
| 1841 | link_with : [libshared], |
| 1842 | dependencies : [threads, |
Lennart Poettering | e44b500 | 2020-06-11 13:16:53 +0200 | [diff] [blame] | 1843 | libdl, |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1844 | libxz, |
| 1845 | liblz4, |
Lennart Poettering | 9200bb3 | 2020-06-24 14:56:28 +0200 | [diff] [blame] | 1846 | libzstd, |
| 1847 | libdl], |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1848 | install_rpath : rootlibexecdir, |
| 1849 | install : true, |
| 1850 | install_dir : rootbindir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1851 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1852 | executable( |
| 1853 | 'systemd-getty-generator', |
| 1854 | 'src/getty-generator/getty-generator.c', |
| 1855 | include_directories : includes, |
| 1856 | link_with : [libshared], |
| 1857 | install_rpath : rootlibexecdir, |
| 1858 | install : true, |
| 1859 | install_dir : systemgeneratordir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1860 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1861 | executable( |
| 1862 | 'systemd-debug-generator', |
| 1863 | 'src/debug-generator/debug-generator.c', |
| 1864 | include_directories : includes, |
| 1865 | link_with : [libshared], |
| 1866 | install_rpath : rootlibexecdir, |
| 1867 | install : true, |
| 1868 | install_dir : systemgeneratordir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1869 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1870 | executable( |
| 1871 | 'systemd-run-generator', |
| 1872 | 'src/run-generator/run-generator.c', |
| 1873 | include_directories : includes, |
| 1874 | link_with : [libshared], |
| 1875 | install_rpath : rootlibexecdir, |
| 1876 | install : true, |
| 1877 | install_dir : systemgeneratordir) |
Lennart Poettering | 35a1ff4 | 2018-11-15 22:09:29 +0100 | [diff] [blame] | 1878 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1879 | executable( |
| 1880 | 'systemd-fstab-generator', |
| 1881 | 'src/fstab-generator/fstab-generator.c', |
| 1882 | include_directories : includes, |
| 1883 | link_with : [libcore_shared, |
| 1884 | libshared], |
| 1885 | install_rpath : rootlibexecdir, |
| 1886 | install : true, |
| 1887 | install_dir : systemgeneratordir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1888 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1889 | if conf.get('ENABLE_ENVIRONMENT_D') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1890 | executable( |
| 1891 | '30-systemd-environment-d-generator', |
| 1892 | 'src/environment-d-generator/environment-d-generator.c', |
| 1893 | include_directories : includes, |
| 1894 | link_with : [libshared], |
| 1895 | install_rpath : rootlibexecdir, |
| 1896 | install : true, |
| 1897 | install_dir : userenvgeneratordir) |
Zbigniew Jędrzejewski-Szmek | 7b76fce | 2017-04-09 23:55:50 -0400 | [diff] [blame] | 1898 | |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1899 | meson.add_install_script(meson_make_symlink, |
| 1900 | join_paths(sysconfdir, 'environment'), |
| 1901 | join_paths(environmentdir, '99-environment.conf')) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1902 | endif |
| 1903 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1904 | if conf.get('ENABLE_HIBERNATE') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1905 | executable( |
| 1906 | 'systemd-hibernate-resume-generator', |
| 1907 | 'src/hibernate-resume/hibernate-resume-generator.c', |
| 1908 | include_directories : includes, |
| 1909 | link_with : [libshared], |
| 1910 | install_rpath : rootlibexecdir, |
| 1911 | install : true, |
| 1912 | install_dir : systemgeneratordir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1913 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1914 | executable( |
| 1915 | 'systemd-hibernate-resume', |
| 1916 | 'src/hibernate-resume/hibernate-resume.c', |
| 1917 | include_directories : includes, |
| 1918 | link_with : [libshared], |
| 1919 | install_rpath : rootlibexecdir, |
| 1920 | install : true, |
| 1921 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1922 | endif |
| 1923 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1924 | if conf.get('HAVE_BLKID') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1925 | executable( |
| 1926 | 'systemd-gpt-auto-generator', |
| 1927 | 'src/gpt-auto-generator/gpt-auto-generator.c', |
| 1928 | 'src/shared/blkid-util.h', |
| 1929 | include_directories : includes, |
| 1930 | link_with : [libshared], |
| 1931 | dependencies : libblkid, |
| 1932 | install_rpath : rootlibexecdir, |
| 1933 | install : true, |
| 1934 | install_dir : systemgeneratordir) |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1935 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1936 | public_programs += executable( |
| 1937 | 'systemd-dissect', |
| 1938 | 'src/dissect/dissect.c', |
| 1939 | include_directories : includes, |
| 1940 | link_with : [libshared], |
| 1941 | install_rpath : rootlibexecdir, |
Lennart Poettering | 5a15108 | 2020-07-29 15:39:33 +0200 | [diff] [blame] | 1942 | install : true) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1943 | endif |
| 1944 | |
Zbigniew Jędrzejewski-Szmek | 1ec57f3 | 2017-10-03 13:12:29 +0200 | [diff] [blame] | 1945 | if conf.get('ENABLE_RESOLVE') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1946 | executable( |
| 1947 | 'systemd-resolved', |
| 1948 | systemd_resolved_sources, |
| 1949 | include_directories : includes, |
| 1950 | link_with : [libshared, |
| 1951 | libbasic_gcrypt, |
| 1952 | libsystemd_resolve_core], |
| 1953 | dependencies : systemd_resolved_dependencies, |
| 1954 | install_rpath : rootlibexecdir, |
| 1955 | install : true, |
| 1956 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 1957 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1958 | public_programs += executable( |
| 1959 | 'resolvectl', |
| 1960 | resolvectl_sources, |
| 1961 | include_directories : includes, |
| 1962 | link_with : [libshared, |
| 1963 | libbasic_gcrypt, |
| 1964 | libsystemd_resolve_core], |
| 1965 | dependencies : [threads, |
| 1966 | libgpg_error, |
| 1967 | libm, |
| 1968 | libidn], |
| 1969 | install_rpath : rootlibexecdir, |
| 1970 | install : true) |
Lennart Poettering | 088c136 | 2018-02-27 17:48:54 +0100 | [diff] [blame] | 1971 | |
| 1972 | meson.add_install_script(meson_make_symlink, |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1973 | join_paths(bindir, 'resolvectl'), |
| 1974 | join_paths(rootsbindir, 'resolvconf')) |
Yu Watanabe | c2e84ca | 2018-04-19 03:24:23 +0900 | [diff] [blame] | 1975 | |
| 1976 | meson.add_install_script(meson_make_symlink, |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1977 | join_paths(bindir, 'resolvectl'), |
| 1978 | join_paths(bindir, 'systemd-resolve')) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1979 | endif |
| 1980 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 1981 | if conf.get('ENABLE_LOGIND') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1982 | executable( |
| 1983 | 'systemd-logind', |
| 1984 | systemd_logind_sources, |
| 1985 | include_directories : includes, |
| 1986 | link_with : [liblogind_core, |
| 1987 | libshared], |
| 1988 | dependencies : [threads, |
| 1989 | libacl], |
| 1990 | install_rpath : rootlibexecdir, |
| 1991 | install : true, |
| 1992 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 1993 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 1994 | public_programs += executable( |
| 1995 | 'loginctl', |
| 1996 | loginctl_sources, |
| 1997 | include_directories : includes, |
| 1998 | link_with : [libshared], |
| 1999 | dependencies : [threads, |
| 2000 | liblz4, |
Norbert Lange | ef5924a | 2020-04-12 01:09:05 +0200 | [diff] [blame] | 2001 | libxz, |
| 2002 | libzstd], |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2003 | install_rpath : rootlibexecdir, |
| 2004 | install : true, |
| 2005 | install_dir : rootbindir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2006 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2007 | public_programs += executable( |
| 2008 | 'systemd-inhibit', |
| 2009 | 'src/login/inhibit.c', |
| 2010 | include_directories : includes, |
| 2011 | link_with : [libshared], |
| 2012 | install_rpath : rootlibexecdir, |
| 2013 | install : true, |
| 2014 | install_dir : rootbindir) |
Zbigniew Jędrzejewski-Szmek | 83b6af3 | 2017-04-14 20:10:28 -0400 | [diff] [blame] | 2015 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2016 | if conf.get('HAVE_PAM') == 1 |
Davide Cavalca | 1485aac | 2019-02-27 11:19:07 -0500 | [diff] [blame] | 2017 | version_script_arg = join_paths(project_source_root, pam_systemd_sym) |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 2018 | pam_systemd = shared_library( |
| 2019 | 'pam_systemd', |
| 2020 | pam_systemd_c, |
| 2021 | name_prefix : '', |
| 2022 | include_directories : includes, |
| 2023 | link_args : ['-shared', |
| 2024 | '-Wl,--version-script=' + version_script_arg], |
Zbigniew Jędrzejewski-Szmek | 37e4d7a | 2017-12-19 11:35:01 +0100 | [diff] [blame] | 2025 | link_with : [libsystemd_static, |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 2026 | libshared_static], |
| 2027 | dependencies : [threads, |
| 2028 | libpam, |
| 2029 | libpam_misc], |
| 2030 | link_depends : pam_systemd_sym, |
| 2031 | install : true, |
| 2032 | install_dir : pamlibdir) |
| 2033 | |
Zbigniew Jędrzejewski-Szmek | 938be08 | 2018-09-12 11:08:49 +0200 | [diff] [blame] | 2034 | if want_tests != 'false' |
| 2035 | test('dlopen-pam_systemd', |
| 2036 | test_dlopen, |
| 2037 | # path to dlopen must include a slash |
Zbigniew Jędrzejewski-Szmek | c1cd674 | 2018-09-12 16:57:06 +0200 | [diff] [blame] | 2038 | args : pam_systemd.full_path()) |
Zbigniew Jędrzejewski-Szmek | 938be08 | 2018-09-12 11:08:49 +0200 | [diff] [blame] | 2039 | endif |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 2040 | endif |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2041 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2042 | executable( |
| 2043 | 'systemd-user-runtime-dir', |
| 2044 | user_runtime_dir_sources, |
| 2045 | include_directories : includes, |
| 2046 | link_with : [libshared], |
| 2047 | install_rpath : rootlibexecdir, |
| 2048 | install : true, |
| 2049 | install_dir : rootlibexecdir) |
Lennart Poettering | 07ee5ad | 2018-08-08 14:50:57 +0200 | [diff] [blame] | 2050 | endif |
Zbigniew Jędrzejewski-Szmek | a9f0f5e | 2017-12-09 19:30:17 +0100 | [diff] [blame] | 2051 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2052 | if conf.get('HAVE_PAM') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2053 | executable( |
| 2054 | 'systemd-user-sessions', |
| 2055 | 'src/user-sessions/user-sessions.c', |
| 2056 | include_directories : includes, |
| 2057 | link_with : [libshared], |
| 2058 | install_rpath : rootlibexecdir, |
| 2059 | install : true, |
| 2060 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2061 | endif |
| 2062 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2063 | if conf.get('ENABLE_EFI') == 1 and conf.get('HAVE_BLKID') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2064 | public_programs += executable( |
| 2065 | 'bootctl', |
| 2066 | 'src/boot/bootctl.c', |
| 2067 | include_directories : includes, |
| 2068 | link_with : [libshared], |
| 2069 | dependencies : [libblkid], |
| 2070 | install_rpath : rootlibexecdir, |
| 2071 | install : true) |
Lennart Poettering | 36695e8 | 2018-06-25 17:24:09 +0200 | [diff] [blame] | 2072 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2073 | public_programs += executable( |
| 2074 | 'systemd-bless-boot', |
| 2075 | 'src/boot/bless-boot.c', |
| 2076 | include_directories : includes, |
| 2077 | link_with : [libshared], |
| 2078 | dependencies : [libblkid], |
| 2079 | install_rpath : rootlibexecdir, |
| 2080 | install : true, |
| 2081 | install_dir : rootlibexecdir) |
Lennart Poettering | 8d16ed0 | 2018-06-22 17:00:47 +0200 | [diff] [blame] | 2082 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2083 | executable( |
| 2084 | 'systemd-bless-boot-generator', |
| 2085 | 'src/boot/bless-boot-generator.c', |
| 2086 | include_directories : includes, |
| 2087 | link_with : [libshared], |
| 2088 | install_rpath : rootlibexecdir, |
| 2089 | install : true, |
| 2090 | install_dir : systemgeneratordir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2091 | endif |
| 2092 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2093 | executable( |
| 2094 | 'systemd-boot-check-no-failures', |
| 2095 | 'src/boot/boot-check-no-failures.c', |
| 2096 | include_directories : includes, |
| 2097 | link_with : [libshared], |
| 2098 | dependencies : [libblkid], |
| 2099 | install_rpath : rootlibexecdir, |
| 2100 | install : true, |
| 2101 | install_dir : rootlibexecdir) |
Lennart Poettering | f876f53 | 2018-06-25 16:07:33 +0200 | [diff] [blame] | 2102 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2103 | public_programs += executable( |
| 2104 | 'systemd-socket-activate', |
| 2105 | 'src/activate/activate.c', |
| 2106 | include_directories : includes, |
| 2107 | link_with : [libshared], |
| 2108 | dependencies : [threads], |
| 2109 | install_rpath : rootlibexecdir, |
| 2110 | install : true) |
Felipe Sateler | f379436 | 2018-05-22 15:08:57 -0400 | [diff] [blame] | 2111 | |
| 2112 | if get_option('link-systemctl-shared') |
| 2113 | systemctl_link_with = [libshared] |
| 2114 | else |
| 2115 | systemctl_link_with = [libsystemd_static, |
| 2116 | libshared_static, |
| 2117 | libjournal_client, |
| 2118 | libbasic_gcrypt] |
| 2119 | endif |
| 2120 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2121 | public_programs += executable( |
| 2122 | 'systemctl', |
Lennart Poettering | daf71ef | 2020-10-07 11:27:56 +0200 | [diff] [blame] | 2123 | 'src/systemctl/systemctl-add-dependency.c', |
| 2124 | 'src/systemctl/systemctl-add-dependency.h', |
| 2125 | 'src/systemctl/systemctl-cancel-job.c', |
| 2126 | 'src/systemctl/systemctl-cancel-job.h', |
| 2127 | 'src/systemctl/systemctl-clean-or-freeze.c', |
| 2128 | 'src/systemctl/systemctl-clean-or-freeze.h', |
| 2129 | 'src/systemctl/systemctl-compat-halt.c', |
| 2130 | 'src/systemctl/systemctl-compat-halt.h', |
| 2131 | 'src/systemctl/systemctl-compat-runlevel.c', |
| 2132 | 'src/systemctl/systemctl-compat-runlevel.h', |
| 2133 | 'src/systemctl/systemctl-compat-shutdown.c', |
| 2134 | 'src/systemctl/systemctl-compat-shutdown.h', |
| 2135 | 'src/systemctl/systemctl-compat-telinit.c', |
| 2136 | 'src/systemctl/systemctl-compat-telinit.h', |
| 2137 | 'src/systemctl/systemctl-daemon-reload.c', |
| 2138 | 'src/systemctl/systemctl-daemon-reload.h', |
| 2139 | 'src/systemctl/systemctl-edit.c', |
| 2140 | 'src/systemctl/systemctl-edit.h', |
| 2141 | 'src/systemctl/systemctl-enable.c', |
| 2142 | 'src/systemctl/systemctl-enable.h', |
| 2143 | 'src/systemctl/systemctl-is-active.c', |
| 2144 | 'src/systemctl/systemctl-is-active.h', |
| 2145 | 'src/systemctl/systemctl-is-enabled.c', |
| 2146 | 'src/systemctl/systemctl-is-enabled.h', |
| 2147 | 'src/systemctl/systemctl-is-system-running.c', |
| 2148 | 'src/systemctl/systemctl-is-system-running.h', |
| 2149 | 'src/systemctl/systemctl-kill.c', |
| 2150 | 'src/systemctl/systemctl-kill.h', |
| 2151 | 'src/systemctl/systemctl-list-dependencies.c', |
| 2152 | 'src/systemctl/systemctl-list-dependencies.h', |
| 2153 | 'src/systemctl/systemctl-list-jobs.c', |
| 2154 | 'src/systemctl/systemctl-list-jobs.h', |
| 2155 | 'src/systemctl/systemctl-list-machines.c', |
| 2156 | 'src/systemctl/systemctl-list-machines.h', |
| 2157 | 'src/systemctl/systemctl-list-unit-files.c', |
| 2158 | 'src/systemctl/systemctl-list-unit-files.h', |
| 2159 | 'src/systemctl/systemctl-list-units.c', |
| 2160 | 'src/systemctl/systemctl-list-units.h', |
| 2161 | 'src/systemctl/systemctl-log-setting.c', |
| 2162 | 'src/systemctl/systemctl-log-setting.h', |
| 2163 | 'src/systemctl/systemctl-logind.c', |
| 2164 | 'src/systemctl/systemctl-logind.h', |
| 2165 | 'src/systemctl/systemctl-preset-all.c', |
| 2166 | 'src/systemctl/systemctl-preset-all.h', |
| 2167 | 'src/systemctl/systemctl-reset-failed.c', |
| 2168 | 'src/systemctl/systemctl-reset-failed.h', |
| 2169 | 'src/systemctl/systemctl-service-watchdogs.c', |
| 2170 | 'src/systemctl/systemctl-service-watchdogs.h', |
| 2171 | 'src/systemctl/systemctl-set-default.c', |
| 2172 | 'src/systemctl/systemctl-set-default.h', |
| 2173 | 'src/systemctl/systemctl-set-environment.c', |
| 2174 | 'src/systemctl/systemctl-set-environment.h', |
| 2175 | 'src/systemctl/systemctl-set-property.c', |
| 2176 | 'src/systemctl/systemctl-set-property.h', |
| 2177 | 'src/systemctl/systemctl-show.c', |
| 2178 | 'src/systemctl/systemctl-show.h', |
| 2179 | 'src/systemctl/systemctl-start-special.c', |
| 2180 | 'src/systemctl/systemctl-start-special.h', |
| 2181 | 'src/systemctl/systemctl-start-unit.c', |
| 2182 | 'src/systemctl/systemctl-start-unit.h', |
| 2183 | 'src/systemctl/systemctl-switch-root.c', |
| 2184 | 'src/systemctl/systemctl-switch-root.h', |
| 2185 | 'src/systemctl/systemctl-sysv-compat.c', |
| 2186 | 'src/systemctl/systemctl-sysv-compat.h', |
| 2187 | 'src/systemctl/systemctl-trivial-method.c', |
| 2188 | 'src/systemctl/systemctl-trivial-method.h', |
| 2189 | 'src/systemctl/systemctl-util.c', |
| 2190 | 'src/systemctl/systemctl-util.c', |
| 2191 | 'src/systemctl/systemctl-util.h', |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2192 | 'src/systemctl/systemctl.c', |
Lennart Poettering | daf71ef | 2020-10-07 11:27:56 +0200 | [diff] [blame] | 2193 | 'src/systemctl/systemctl.h', |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2194 | include_directories : includes, |
| 2195 | link_with : systemctl_link_with, |
| 2196 | dependencies : [threads, |
| 2197 | libcap, |
| 2198 | libselinux, |
| 2199 | libxz, |
Norbert Lange | ef5924a | 2020-04-12 01:09:05 +0200 | [diff] [blame] | 2200 | liblz4, |
| 2201 | libzstd], |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2202 | install_rpath : rootlibexecdir, |
| 2203 | install : true, |
| 2204 | install_dir : rootbindir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2205 | |
Lennart Poettering | 61d0578 | 2018-04-16 21:41:40 +0200 | [diff] [blame] | 2206 | if conf.get('ENABLE_PORTABLED') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2207 | executable( |
| 2208 | 'systemd-portabled', |
| 2209 | systemd_portabled_sources, |
| 2210 | include_directories : includes, |
| 2211 | link_with : [libshared], |
| 2212 | dependencies : [threads], |
| 2213 | install_rpath : rootlibexecdir, |
| 2214 | install : true, |
| 2215 | install_dir : rootlibexecdir) |
Lennart Poettering | 61d0578 | 2018-04-16 21:41:40 +0200 | [diff] [blame] | 2216 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2217 | public_programs += executable( |
| 2218 | 'portablectl', |
| 2219 | 'src/portable/portablectl.c', |
| 2220 | include_directories : includes, |
| 2221 | link_with : [libshared], |
| 2222 | dependencies : [threads], |
| 2223 | install_rpath : rootlibexecdir, |
| 2224 | install : true, |
| 2225 | install_dir : rootbindir) |
Lennart Poettering | 61d0578 | 2018-04-16 21:41:40 +0200 | [diff] [blame] | 2226 | endif |
| 2227 | |
Lennart Poettering | d093b62 | 2019-07-04 18:33:30 +0200 | [diff] [blame] | 2228 | if conf.get('ENABLE_USERDB') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2229 | executable( |
| 2230 | 'systemd-userwork', |
| 2231 | systemd_userwork_sources, |
| 2232 | include_directories : includes, |
| 2233 | link_with : [libshared], |
| 2234 | dependencies : [threads], |
| 2235 | install_rpath : rootlibexecdir, |
| 2236 | install : true, |
| 2237 | install_dir : rootlibexecdir) |
Lennart Poettering | d093b62 | 2019-07-04 18:33:30 +0200 | [diff] [blame] | 2238 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2239 | executable( |
| 2240 | 'systemd-userdbd', |
| 2241 | systemd_userdbd_sources, |
| 2242 | include_directories : includes, |
| 2243 | link_with : [libshared], |
| 2244 | dependencies : [threads], |
| 2245 | install_rpath : rootlibexecdir, |
| 2246 | install : true, |
| 2247 | install_dir : rootlibexecdir) |
Lennart Poettering | 1604937 | 2019-08-05 18:22:01 +0200 | [diff] [blame] | 2248 | |
Zbigniew Jędrzejewski-Szmek | 460e5af | 2020-04-28 09:08:37 +0200 | [diff] [blame] | 2249 | public_programs += executable( |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2250 | 'userdbctl', |
| 2251 | userdbctl_sources, |
| 2252 | include_directories : includes, |
| 2253 | link_with : [libshared], |
| 2254 | dependencies : [threads], |
| 2255 | install_rpath : rootlibexecdir, |
| 2256 | install : true, |
| 2257 | install_dir : rootbindir) |
Lennart Poettering | d093b62 | 2019-07-04 18:33:30 +0200 | [diff] [blame] | 2258 | endif |
| 2259 | |
Lennart Poettering | 70a5db5 | 2019-07-04 18:35:39 +0200 | [diff] [blame] | 2260 | if conf.get('ENABLE_HOMED') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2261 | executable( |
| 2262 | 'systemd-homework', |
| 2263 | systemd_homework_sources, |
| 2264 | include_directories : includes, |
| 2265 | link_with : [libshared], |
| 2266 | dependencies : [threads, |
| 2267 | libcryptsetup, |
| 2268 | libblkid, |
| 2269 | libcrypt, |
| 2270 | libopenssl, |
| 2271 | libfdisk, |
Lennart Poettering | 7b78db2 | 2020-04-14 19:18:09 +0200 | [diff] [blame] | 2272 | libp11kit, |
| 2273 | libfido2], |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2274 | install_rpath : rootlibexecdir, |
| 2275 | install : true, |
| 2276 | install_dir : rootlibexecdir) |
Lennart Poettering | 70a5db5 | 2019-07-04 18:35:39 +0200 | [diff] [blame] | 2277 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2278 | executable( |
| 2279 | 'systemd-homed', |
| 2280 | systemd_homed_sources, |
| 2281 | include_directories : includes, |
| 2282 | link_with : [libshared], |
| 2283 | dependencies : [threads, |
| 2284 | libcrypt, |
Lennart Poettering | 679badd | 2020-08-18 09:56:56 +0200 | [diff] [blame] | 2285 | libopenssl], |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2286 | install_rpath : rootlibexecdir, |
| 2287 | install : true, |
| 2288 | install_dir : rootlibexecdir) |
Lennart Poettering | 4aa0a8a | 2019-07-04 19:06:15 +0200 | [diff] [blame] | 2289 | |
Zbigniew Jędrzejewski-Szmek | 460e5af | 2020-04-28 09:08:37 +0200 | [diff] [blame] | 2290 | public_programs += executable( |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2291 | 'homectl', |
| 2292 | homectl_sources, |
| 2293 | include_directories : includes, |
| 2294 | link_with : [libshared], |
| 2295 | dependencies : [threads, |
| 2296 | libcrypt, |
| 2297 | libopenssl, |
| 2298 | libp11kit, |
Lennart Poettering | da3920c | 2020-08-17 15:59:00 +0200 | [diff] [blame] | 2299 | libfido2, |
| 2300 | libdl], |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2301 | install_rpath : rootlibexecdir, |
| 2302 | install : true, |
| 2303 | install_dir : rootbindir) |
Lennart Poettering | 26cf9fb | 2019-07-04 19:06:26 +0200 | [diff] [blame] | 2304 | |
| 2305 | if conf.get('HAVE_PAM') == 1 |
| 2306 | version_script_arg = join_paths(project_source_root, pam_systemd_home_sym) |
| 2307 | pam_systemd = shared_library( |
| 2308 | 'pam_systemd_home', |
| 2309 | pam_systemd_home_c, |
| 2310 | name_prefix : '', |
| 2311 | include_directories : includes, |
| 2312 | link_args : ['-shared', |
| 2313 | '-Wl,--version-script=' + version_script_arg], |
| 2314 | link_with : [libsystemd_static, |
| 2315 | libshared_static], |
| 2316 | dependencies : [threads, |
| 2317 | libpam, |
| 2318 | libpam_misc, |
| 2319 | libcrypt], |
| 2320 | link_depends : pam_systemd_home_sym, |
| 2321 | install : true, |
| 2322 | install_dir : pamlibdir) |
| 2323 | endif |
Lennart Poettering | 70a5db5 | 2019-07-04 18:35:39 +0200 | [diff] [blame] | 2324 | endif |
| 2325 | |
Norbert Lange | 6589a56 | 2020-04-28 23:11:55 +0200 | [diff] [blame] | 2326 | foreach alias : (['halt', 'poweroff', 'reboot', 'shutdown'] + |
| 2327 | (conf.get('HAVE_SYSV_COMPAT') == 1 ? ['runlevel', 'telinit'] : [])) |
Zbigniew Jędrzejewski-Szmek | ba7f4ae | 2018-02-28 10:20:48 +0100 | [diff] [blame] | 2328 | meson.add_install_script(meson_make_symlink, |
| 2329 | join_paths(rootbindir, 'systemctl'), |
| 2330 | join_paths(rootsbindir, alias)) |
| 2331 | endforeach |
| 2332 | |
Norbert Lange | 63e2d17 | 2020-05-26 10:26:12 +0200 | [diff] [blame] | 2333 | meson.add_install_script(meson_make_symlink, |
| 2334 | join_paths(rootbindir, 'udevadm'), |
| 2335 | join_paths(rootlibexecdir, 'systemd-udevd')) |
| 2336 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2337 | if conf.get('ENABLE_BACKLIGHT') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2338 | executable( |
| 2339 | 'systemd-backlight', |
| 2340 | 'src/backlight/backlight.c', |
| 2341 | include_directories : includes, |
| 2342 | link_with : [libshared], |
| 2343 | install_rpath : rootlibexecdir, |
| 2344 | install : true, |
| 2345 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2346 | endif |
| 2347 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2348 | if conf.get('ENABLE_RFKILL') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2349 | executable( |
| 2350 | 'systemd-rfkill', |
| 2351 | 'src/rfkill/rfkill.c', |
| 2352 | include_directories : includes, |
| 2353 | link_with : [libshared], |
| 2354 | install_rpath : rootlibexecdir, |
| 2355 | install : true, |
| 2356 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2357 | endif |
| 2358 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2359 | executable( |
| 2360 | 'systemd-system-update-generator', |
| 2361 | 'src/system-update-generator/system-update-generator.c', |
| 2362 | include_directories : includes, |
| 2363 | link_with : [libshared], |
| 2364 | install_rpath : rootlibexecdir, |
| 2365 | install : true, |
| 2366 | install_dir : systemgeneratordir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2367 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2368 | if conf.get('HAVE_LIBCRYPTSETUP') == 1 |
Lennart Poettering | 0866970 | 2019-08-22 10:21:11 +0200 | [diff] [blame] | 2369 | systemd_cryptsetup_sources = files(''' |
Lennart Poettering | 0866970 | 2019-08-22 10:21:11 +0200 | [diff] [blame] | 2370 | src/cryptsetup/cryptsetup-pkcs11.h |
Lennart Poettering | 1e2f323 | 2020-08-28 21:26:33 +0200 | [diff] [blame] | 2371 | src/cryptsetup/cryptsetup-keyfile.c |
| 2372 | src/cryptsetup/cryptsetup-keyfile.h |
Lennart Poettering | 23769fb | 2020-04-29 14:50:38 +0200 | [diff] [blame] | 2373 | src/cryptsetup/cryptsetup.c |
Lennart Poettering | 0866970 | 2019-08-22 10:21:11 +0200 | [diff] [blame] | 2374 | '''.split()) |
| 2375 | |
| 2376 | if conf.get('HAVE_P11KIT') == 1 |
| 2377 | systemd_cryptsetup_sources += files('src/cryptsetup/cryptsetup-pkcs11.c') |
| 2378 | endif |
| 2379 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2380 | executable( |
| 2381 | 'systemd-cryptsetup', |
| 2382 | systemd_cryptsetup_sources, |
| 2383 | include_directories : includes, |
| 2384 | link_with : [libshared], |
| 2385 | dependencies : [libcryptsetup, |
| 2386 | libp11kit], |
| 2387 | install_rpath : rootlibexecdir, |
| 2388 | install : true, |
| 2389 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2390 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2391 | executable( |
| 2392 | 'systemd-cryptsetup-generator', |
| 2393 | 'src/cryptsetup/cryptsetup-generator.c', |
| 2394 | include_directories : includes, |
| 2395 | link_with : [libshared], |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2396 | install_rpath : rootlibexecdir, |
| 2397 | install : true, |
| 2398 | install_dir : systemgeneratordir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2399 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2400 | executable( |
| 2401 | 'systemd-veritysetup', |
| 2402 | 'src/veritysetup/veritysetup.c', |
| 2403 | include_directories : includes, |
| 2404 | link_with : [libshared], |
| 2405 | dependencies : [libcryptsetup], |
| 2406 | install_rpath : rootlibexecdir, |
| 2407 | install : true, |
| 2408 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2409 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2410 | executable( |
| 2411 | 'systemd-veritysetup-generator', |
| 2412 | 'src/veritysetup/veritysetup-generator.c', |
| 2413 | include_directories : includes, |
| 2414 | link_with : [libshared], |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2415 | install_rpath : rootlibexecdir, |
| 2416 | install : true, |
| 2417 | install_dir : systemgeneratordir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2418 | endif |
| 2419 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2420 | if conf.get('HAVE_SYSV_COMPAT') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2421 | executable( |
| 2422 | 'systemd-sysv-generator', |
| 2423 | 'src/sysv-generator/sysv-generator.c', |
| 2424 | include_directories : includes, |
| 2425 | link_with : [libshared], |
| 2426 | install_rpath : rootlibexecdir, |
| 2427 | install : true, |
| 2428 | install_dir : systemgeneratordir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2429 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2430 | executable( |
| 2431 | 'systemd-rc-local-generator', |
| 2432 | 'src/rc-local-generator/rc-local-generator.c', |
| 2433 | include_directories : includes, |
| 2434 | link_with : [libshared], |
| 2435 | install_rpath : rootlibexecdir, |
| 2436 | install : true, |
| 2437 | install_dir : systemgeneratordir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2438 | endif |
| 2439 | |
Benjamin Berg | 8feca24 | 2020-03-25 16:59:40 +0100 | [diff] [blame] | 2440 | if conf.get('ENABLE_XDG_AUTOSTART') == 1 |
| 2441 | executable( |
| 2442 | 'systemd-xdg-autostart-generator', |
| 2443 | 'src/xdg-autostart-generator/xdg-autostart-generator.c', |
| 2444 | 'src/xdg-autostart-generator/xdg-autostart-service.c', |
| 2445 | include_directories : includes, |
| 2446 | link_with : [libshared], |
| 2447 | install_rpath : rootlibexecdir, |
| 2448 | install : true, |
| 2449 | install_dir : usergeneratordir) |
| 2450 | |
| 2451 | executable( |
| 2452 | 'systemd-xdg-autostart-condition', |
| 2453 | 'src/xdg-autostart-generator/xdg-autostart-condition.c', |
| 2454 | include_directories : includes, |
| 2455 | link_with : [libshared], |
| 2456 | install_rpath : rootlibexecdir, |
| 2457 | install : true, |
| 2458 | install_dir : rootlibexecdir) |
| 2459 | endif |
| 2460 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2461 | if conf.get('ENABLE_HOSTNAMED') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2462 | executable( |
| 2463 | 'systemd-hostnamed', |
| 2464 | 'src/hostname/hostnamed.c', |
| 2465 | include_directories : includes, |
| 2466 | link_with : [libshared], |
| 2467 | install_rpath : rootlibexecdir, |
| 2468 | install : true, |
| 2469 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 2470 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2471 | public_programs += executable( |
| 2472 | 'hostnamectl', |
| 2473 | 'src/hostname/hostnamectl.c', |
| 2474 | include_directories : includes, |
| 2475 | link_with : [libshared], |
| 2476 | install_rpath : rootlibexecdir, |
| 2477 | install : true) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2478 | endif |
| 2479 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2480 | if conf.get('ENABLE_LOCALED') == 1 |
| 2481 | if conf.get('HAVE_XKBCOMMON') == 1 |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 2482 | # logind will load libxkbcommon.so dynamically on its own |
| 2483 | deps = [libdl] |
| 2484 | else |
| 2485 | deps = [] |
| 2486 | endif |
Zbigniew Jędrzejewski-Szmek | 1eeb43f | 2017-04-13 19:37:14 -0400 | [diff] [blame] | 2487 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2488 | executable( |
| 2489 | 'systemd-localed', |
| 2490 | systemd_localed_sources, |
| 2491 | include_directories : includes, |
| 2492 | link_with : [libshared], |
| 2493 | dependencies : deps, |
| 2494 | install_rpath : rootlibexecdir, |
| 2495 | install : true, |
| 2496 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 2497 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2498 | public_programs += executable( |
| 2499 | 'localectl', |
| 2500 | localectl_sources, |
| 2501 | include_directories : includes, |
| 2502 | link_with : [libshared], |
| 2503 | install_rpath : rootlibexecdir, |
| 2504 | install : true) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2505 | endif |
| 2506 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2507 | if conf.get('ENABLE_TIMEDATED') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2508 | executable( |
| 2509 | 'systemd-timedated', |
| 2510 | 'src/timedate/timedated.c', |
| 2511 | include_directories : includes, |
| 2512 | link_with : [libshared], |
| 2513 | install_rpath : rootlibexecdir, |
| 2514 | install : true, |
| 2515 | install_dir : rootlibexecdir) |
Yu Watanabe | 6129ec8 | 2018-05-03 18:07:43 +0900 | [diff] [blame] | 2516 | endif |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 2517 | |
Yu Watanabe | 6129ec8 | 2018-05-03 18:07:43 +0900 | [diff] [blame] | 2518 | if conf.get('ENABLE_TIMEDATECTL') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2519 | public_programs += executable( |
| 2520 | 'timedatectl', |
| 2521 | 'src/timedate/timedatectl.c', |
| 2522 | include_directories : includes, |
| 2523 | install_rpath : rootlibexecdir, |
| 2524 | link_with : [libshared], |
| 2525 | dependencies : [libm], |
| 2526 | install : true) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2527 | endif |
| 2528 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2529 | if conf.get('ENABLE_TIMESYNCD') == 1 |
Robert Scheck | fd74a13 | 2020-02-08 14:02:09 +0100 | [diff] [blame] | 2530 | if get_option('link-timesyncd-shared') |
| 2531 | timesyncd_link_with = [libshared] |
| 2532 | else |
| 2533 | timesyncd_link_with = [libsystemd_static, |
| 2534 | libshared_static, |
| 2535 | libjournal_client, |
| 2536 | libbasic_gcrypt] |
| 2537 | endif |
| 2538 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2539 | executable( |
| 2540 | 'systemd-timesyncd', |
| 2541 | systemd_timesyncd_sources, |
| 2542 | include_directories : includes, |
| 2543 | link_with : [timesyncd_link_with], |
| 2544 | dependencies : [threads, |
| 2545 | libm], |
| 2546 | install_rpath : rootlibexecdir, |
| 2547 | install : true, |
| 2548 | install_dir : rootlibexecdir) |
Peter A. Bigot | 5c3376e | 2018-03-21 06:42:04 -0500 | [diff] [blame] | 2549 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2550 | executable( |
| 2551 | 'systemd-time-wait-sync', |
| 2552 | 'src/time-wait-sync/time-wait-sync.c', |
| 2553 | include_directories : includes, |
| 2554 | link_with : [timesyncd_link_with], |
| 2555 | install_rpath : rootlibexecdir, |
| 2556 | install : true, |
| 2557 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2558 | endif |
| 2559 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2560 | if conf.get('ENABLE_MACHINED') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2561 | executable( |
| 2562 | 'systemd-machined', |
| 2563 | systemd_machined_sources, |
| 2564 | include_directories : includes, |
| 2565 | link_with : [libmachine_core, |
| 2566 | libshared], |
| 2567 | install_rpath : rootlibexecdir, |
| 2568 | install : true, |
| 2569 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 2570 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2571 | public_programs += executable( |
| 2572 | 'machinectl', |
| 2573 | 'src/machine/machinectl.c', |
| 2574 | include_directories : includes, |
| 2575 | link_with : [libshared], |
| 2576 | dependencies : [threads, |
| 2577 | libxz, |
Norbert Lange | ef5924a | 2020-04-12 01:09:05 +0200 | [diff] [blame] | 2578 | liblz4, |
| 2579 | libzstd], |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2580 | install_rpath : rootlibexecdir, |
| 2581 | install : true, |
| 2582 | install_dir : rootbindir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2583 | endif |
| 2584 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2585 | if conf.get('ENABLE_IMPORTD') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2586 | executable( |
| 2587 | 'systemd-importd', |
| 2588 | systemd_importd_sources, |
| 2589 | include_directories : includes, |
| 2590 | link_with : [libshared], |
| 2591 | dependencies : [threads], |
| 2592 | install_rpath : rootlibexecdir, |
| 2593 | install : true, |
| 2594 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2595 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2596 | systemd_pull = executable( |
| 2597 | 'systemd-pull', |
| 2598 | systemd_pull_sources, |
| 2599 | include_directories : includes, |
| 2600 | link_with : [libshared], |
| 2601 | dependencies : [versiondep, |
| 2602 | libcurl, |
| 2603 | libz, |
| 2604 | libbzip2, |
| 2605 | libxz, |
| 2606 | libgcrypt], |
| 2607 | install_rpath : rootlibexecdir, |
| 2608 | install : true, |
| 2609 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2610 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2611 | systemd_import = executable( |
| 2612 | 'systemd-import', |
| 2613 | systemd_import_sources, |
| 2614 | include_directories : includes, |
| 2615 | link_with : [libshared], |
| 2616 | dependencies : [libcurl, |
| 2617 | libz, |
| 2618 | libbzip2, |
| 2619 | libxz], |
| 2620 | install_rpath : rootlibexecdir, |
| 2621 | install : true, |
| 2622 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2623 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2624 | systemd_import_fs = executable( |
| 2625 | 'systemd-import-fs', |
| 2626 | systemd_import_fs_sources, |
| 2627 | include_directories : includes, |
| 2628 | link_with : [libshared], |
| 2629 | install_rpath : rootlibexecdir, |
| 2630 | install : true, |
| 2631 | install_dir : rootlibexecdir) |
Lennart Poettering | 1d7579c | 2018-10-10 21:20:08 +0200 | [diff] [blame] | 2632 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2633 | systemd_export = executable( |
| 2634 | 'systemd-export', |
| 2635 | systemd_export_sources, |
| 2636 | include_directories : includes, |
| 2637 | link_with : [libshared], |
| 2638 | dependencies : [libcurl, |
| 2639 | libz, |
| 2640 | libbzip2, |
| 2641 | libxz], |
| 2642 | install_rpath : rootlibexecdir, |
| 2643 | install : true, |
| 2644 | install_dir : rootlibexecdir) |
Lennart Poettering | 1d7579c | 2018-10-10 21:20:08 +0200 | [diff] [blame] | 2645 | |
| 2646 | public_programs += [systemd_pull, systemd_import, systemd_import_fs, systemd_export] |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2647 | endif |
| 2648 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2649 | if conf.get('ENABLE_REMOTE') == 1 and conf.get('HAVE_LIBCURL') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2650 | public_programs += executable( |
| 2651 | 'systemd-journal-upload', |
| 2652 | systemd_journal_upload_sources, |
| 2653 | include_directories : includes, |
| 2654 | link_with : [libshared], |
| 2655 | dependencies : [versiondep, |
| 2656 | threads, |
| 2657 | libcurl, |
| 2658 | libgnutls, |
| 2659 | libxz, |
Norbert Lange | ef5924a | 2020-04-12 01:09:05 +0200 | [diff] [blame] | 2660 | liblz4, |
| 2661 | libzstd], |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2662 | install_rpath : rootlibexecdir, |
| 2663 | install : true, |
| 2664 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2665 | endif |
| 2666 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2667 | if conf.get('ENABLE_REMOTE') == 1 and conf.get('HAVE_MICROHTTPD') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2668 | public_programs += executable( |
| 2669 | 'systemd-journal-remote', |
| 2670 | systemd_journal_remote_sources, |
| 2671 | include_directories : includes, |
| 2672 | link_with : [libshared, |
| 2673 | libsystemd_journal_remote], |
| 2674 | dependencies : [threads, |
| 2675 | libmicrohttpd, |
| 2676 | libgnutls, |
| 2677 | libxz, |
Norbert Lange | ef5924a | 2020-04-12 01:09:05 +0200 | [diff] [blame] | 2678 | liblz4, |
| 2679 | libzstd], |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2680 | install_rpath : rootlibexecdir, |
| 2681 | install : true, |
| 2682 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2683 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2684 | public_programs += executable( |
| 2685 | 'systemd-journal-gatewayd', |
| 2686 | systemd_journal_gatewayd_sources, |
| 2687 | include_directories : includes, |
| 2688 | link_with : [libshared], |
| 2689 | dependencies : [threads, |
| 2690 | libmicrohttpd, |
| 2691 | libgnutls, |
| 2692 | libxz, |
Norbert Lange | ef5924a | 2020-04-12 01:09:05 +0200 | [diff] [blame] | 2693 | liblz4, |
| 2694 | libzstd], |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2695 | install_rpath : rootlibexecdir, |
| 2696 | install : true, |
| 2697 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2698 | endif |
| 2699 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2700 | if conf.get('ENABLE_COREDUMP') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2701 | executable( |
| 2702 | 'systemd-coredump', |
| 2703 | systemd_coredump_sources, |
| 2704 | include_directories : includes, |
| 2705 | link_with : [libshared], |
| 2706 | dependencies : [threads, |
| 2707 | libacl, |
| 2708 | libdw, |
| 2709 | libxz, |
Norbert Lange | ef5924a | 2020-04-12 01:09:05 +0200 | [diff] [blame] | 2710 | liblz4, |
| 2711 | libzstd], |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2712 | install_rpath : rootlibexecdir, |
| 2713 | install : true, |
| 2714 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 2715 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2716 | public_programs += executable( |
| 2717 | 'coredumpctl', |
| 2718 | coredumpctl_sources, |
| 2719 | include_directories : includes, |
| 2720 | link_with : [libshared], |
| 2721 | dependencies : [threads, |
| 2722 | libxz, |
Norbert Lange | ef5924a | 2020-04-12 01:09:05 +0200 | [diff] [blame] | 2723 | liblz4, |
| 2724 | libzstd], |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2725 | install_rpath : rootlibexecdir, |
| 2726 | install : true) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2727 | endif |
| 2728 | |
Eric DeVolder | 9b4abc6 | 2019-05-16 08:59:01 -0500 | [diff] [blame] | 2729 | if conf.get('ENABLE_PSTORE') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2730 | executable( |
| 2731 | 'systemd-pstore', |
| 2732 | systemd_pstore_sources, |
| 2733 | include_directories : includes, |
| 2734 | link_with : [libshared], |
| 2735 | dependencies : [threads, |
| 2736 | libacl, |
| 2737 | libdw, |
| 2738 | libxz, |
Norbert Lange | ef5924a | 2020-04-12 01:09:05 +0200 | [diff] [blame] | 2739 | liblz4, |
| 2740 | libzstd], |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2741 | install_rpath : rootlibexecdir, |
| 2742 | install : true, |
| 2743 | install_dir : rootlibexecdir) |
Eric DeVolder | 9b4abc6 | 2019-05-16 08:59:01 -0500 | [diff] [blame] | 2744 | endif |
| 2745 | |
Anita Zhang | 9de5e32 | 2020-03-23 17:32:27 -0700 | [diff] [blame] | 2746 | if conf.get('ENABLE_OOMD') == 1 |
| 2747 | executable('systemd-oomd', |
| 2748 | systemd_oomd_sources, |
| 2749 | include_directories : includes, |
| 2750 | link_with : [libshared], |
| 2751 | dependencies : [], |
| 2752 | install_rpath : rootlibexecdir, |
| 2753 | install : true, |
| 2754 | install_dir : rootlibexecdir) |
Anita Zhang | 5c616ec | 2020-09-08 23:46:27 -0700 | [diff] [blame] | 2755 | |
| 2756 | public_programs += executable( |
| 2757 | 'oomctl', |
| 2758 | oomctl_sources, |
| 2759 | include_directories : includes, |
| 2760 | link_with : [libshared], |
| 2761 | dependencies : [], |
| 2762 | install_rpath : rootlibexecdir, |
| 2763 | install : true, |
| 2764 | install_dir : rootbindir) |
Anita Zhang | 9de5e32 | 2020-03-23 17:32:27 -0700 | [diff] [blame] | 2765 | endif |
| 2766 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2767 | if conf.get('ENABLE_BINFMT') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2768 | public_programs += executable( |
| 2769 | 'systemd-binfmt', |
| 2770 | 'src/binfmt/binfmt.c', |
| 2771 | include_directories : includes, |
| 2772 | link_with : [libshared], |
| 2773 | install_rpath : rootlibexecdir, |
| 2774 | install : true, |
| 2775 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 2776 | |
| 2777 | meson.add_install_script('sh', '-c', |
| 2778 | mkdir_p.format(binfmtdir)) |
| 2779 | meson.add_install_script('sh', '-c', |
| 2780 | mkdir_p.format(join_paths(sysconfdir, 'binfmt.d'))) |
| 2781 | endif |
| 2782 | |
Lennart Poettering | e594a3b | 2019-12-10 21:31:41 +0100 | [diff] [blame] | 2783 | if conf.get('ENABLE_REPART') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2784 | exe = executable( |
| 2785 | 'systemd-repart', |
| 2786 | systemd_repart_sources, |
| 2787 | include_directories : includes, |
| 2788 | link_with : [libshared], |
| 2789 | dependencies : [threads, |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2790 | libblkid, |
| 2791 | libfdisk, |
| 2792 | libopenssl], |
| 2793 | install_rpath : rootlibexecdir, |
| 2794 | install : true, |
| 2795 | install_dir : rootbindir) |
Zbigniew Jędrzejewski-Szmek | 2d2d0a5 | 2020-07-30 16:02:45 +0200 | [diff] [blame] | 2796 | public_programs += exe |
Zbigniew Jędrzejewski-Szmek | e29e4d5 | 2020-03-20 20:22:42 +0100 | [diff] [blame] | 2797 | |
| 2798 | if want_tests != 'false' |
| 2799 | test('test-repart', |
| 2800 | test_repart_sh, |
| 2801 | args : exe.full_path()) |
| 2802 | endif |
Lennart Poettering | e594a3b | 2019-12-10 21:31:41 +0100 | [diff] [blame] | 2803 | endif |
| 2804 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2805 | if conf.get('ENABLE_VCONSOLE') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2806 | executable( |
| 2807 | 'systemd-vconsole-setup', |
| 2808 | 'src/vconsole/vconsole-setup.c', |
| 2809 | include_directories : includes, |
| 2810 | link_with : [libshared], |
| 2811 | install_rpath : rootlibexecdir, |
| 2812 | install : true, |
| 2813 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2814 | endif |
| 2815 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2816 | if conf.get('ENABLE_RANDOMSEED') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2817 | executable( |
| 2818 | 'systemd-random-seed', |
| 2819 | 'src/random-seed/random-seed.c', |
| 2820 | include_directories : includes, |
| 2821 | link_with : [libshared], |
| 2822 | install_rpath : rootlibexecdir, |
| 2823 | install : true, |
| 2824 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2825 | endif |
| 2826 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 2827 | if conf.get('ENABLE_FIRSTBOOT') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2828 | executable( |
| 2829 | 'systemd-firstboot', |
| 2830 | 'src/firstboot/firstboot.c', |
| 2831 | include_directories : includes, |
| 2832 | link_with : [libshared], |
| 2833 | dependencies : [libcrypt], |
| 2834 | install_rpath : rootlibexecdir, |
| 2835 | install : true, |
| 2836 | install_dir : rootbindir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2837 | endif |
| 2838 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2839 | executable( |
| 2840 | 'systemd-remount-fs', |
| 2841 | 'src/remount-fs/remount-fs.c', |
| 2842 | include_directories : includes, |
| 2843 | link_with : [libcore_shared, |
| 2844 | libshared], |
| 2845 | install_rpath : rootlibexecdir, |
| 2846 | install : true, |
| 2847 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2848 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2849 | executable( |
| 2850 | 'systemd-machine-id-setup', |
| 2851 | 'src/machine-id-setup/machine-id-setup-main.c', |
| 2852 | include_directories : includes, |
| 2853 | link_with : [libcore_shared, |
| 2854 | libshared], |
| 2855 | install_rpath : rootlibexecdir, |
| 2856 | install : true, |
| 2857 | install_dir : rootbindir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2858 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2859 | executable( |
| 2860 | 'systemd-fsck', |
| 2861 | 'src/fsck/fsck.c', |
| 2862 | include_directories : includes, |
| 2863 | link_with : [libshared], |
| 2864 | install_rpath : rootlibexecdir, |
| 2865 | install : true, |
| 2866 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2867 | |
Zbigniew Jędrzejewski-Szmek | 80750ad | 2017-10-23 13:40:38 +0200 | [diff] [blame] | 2868 | executable('systemd-growfs', |
| 2869 | 'src/partition/growfs.c', |
| 2870 | include_directories : includes, |
| 2871 | link_with : [libshared], |
| 2872 | install_rpath : rootlibexecdir, |
| 2873 | install : true, |
| 2874 | install_dir : rootlibexecdir) |
| 2875 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2876 | executable( |
| 2877 | 'systemd-makefs', |
| 2878 | 'src/partition/makefs.c', |
| 2879 | include_directories : includes, |
| 2880 | link_with : [libshared], |
| 2881 | install_rpath : rootlibexecdir, |
| 2882 | install : true, |
| 2883 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | b7f28ac | 2017-11-26 22:51:29 +0100 | [diff] [blame] | 2884 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2885 | executable( |
| 2886 | 'systemd-sleep', |
| 2887 | 'src/sleep/sleep.c', |
| 2888 | include_directories : includes, |
| 2889 | link_with : [libshared], |
| 2890 | install_rpath : rootlibexecdir, |
| 2891 | install : true, |
| 2892 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2893 | |
Yu Watanabe | d25e127 | 2019-01-03 02:32:57 +0900 | [diff] [blame] | 2894 | install_data('src/sleep/sleep.conf', |
| 2895 | install_dir : pkgsysconfdir) |
| 2896 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2897 | public_programs += executable( |
| 2898 | 'systemd-sysctl', |
| 2899 | 'src/sysctl/sysctl.c', |
| 2900 | include_directories : includes, |
| 2901 | link_with : [libshared], |
| 2902 | install_rpath : rootlibexecdir, |
| 2903 | install : true, |
| 2904 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2905 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2906 | executable( |
| 2907 | 'systemd-ac-power', |
| 2908 | 'src/ac-power/ac-power.c', |
| 2909 | include_directories : includes, |
| 2910 | link_with : [libshared], |
| 2911 | install_rpath : rootlibexecdir, |
| 2912 | install : true, |
| 2913 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2914 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2915 | public_programs += executable( |
| 2916 | 'systemd-detect-virt', |
| 2917 | 'src/detect-virt/detect-virt.c', |
| 2918 | include_directories : includes, |
| 2919 | link_with : [libshared], |
| 2920 | install_rpath : rootlibexecdir, |
| 2921 | install : true) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2922 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2923 | public_programs += executable( |
| 2924 | 'systemd-delta', |
| 2925 | 'src/delta/delta.c', |
| 2926 | include_directories : includes, |
| 2927 | link_with : [libshared], |
| 2928 | install_rpath : rootlibexecdir, |
| 2929 | install : true) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2930 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2931 | public_programs += executable( |
| 2932 | 'systemd-escape', |
| 2933 | 'src/escape/escape.c', |
| 2934 | include_directories : includes, |
| 2935 | link_with : [libshared], |
| 2936 | install_rpath : rootlibexecdir, |
| 2937 | install : true, |
| 2938 | install_dir : rootbindir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2939 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2940 | public_programs += executable( |
| 2941 | 'systemd-notify', |
| 2942 | 'src/notify/notify.c', |
| 2943 | include_directories : includes, |
| 2944 | link_with : [libshared], |
| 2945 | install_rpath : rootlibexecdir, |
| 2946 | install : true, |
| 2947 | install_dir : rootbindir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2948 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2949 | executable( |
| 2950 | 'systemd-volatile-root', |
| 2951 | 'src/volatile-root/volatile-root.c', |
| 2952 | include_directories : includes, |
| 2953 | link_with : [libshared], |
| 2954 | install_rpath : rootlibexecdir, |
Norbert Lange | cdf7ad3 | 2020-04-08 23:59:13 +0200 | [diff] [blame] | 2955 | install : conf.get('ENABLE_INITRD') == 1, |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2956 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2957 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2958 | executable( |
| 2959 | 'systemd-cgroups-agent', |
| 2960 | 'src/cgroups-agent/cgroups-agent.c', |
| 2961 | include_directories : includes, |
| 2962 | link_with : [libshared], |
| 2963 | install_rpath : rootlibexecdir, |
| 2964 | install : true, |
| 2965 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2966 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2967 | public_programs += executable( |
| 2968 | 'systemd-id128', |
| 2969 | 'src/id128/id128.c', |
| 2970 | include_directories : includes, |
| 2971 | link_with : [libshared], |
| 2972 | install_rpath : rootlibexecdir, |
| 2973 | install : true) |
Zbigniew Jędrzejewski-Szmek | 0d1d512 | 2018-08-21 16:08:48 +0200 | [diff] [blame] | 2974 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2975 | public_programs += executable( |
| 2976 | 'systemd-path', |
| 2977 | 'src/path/path.c', |
| 2978 | include_directories : includes, |
| 2979 | link_with : [libshared], |
| 2980 | install_rpath : rootlibexecdir, |
| 2981 | install : true) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2982 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2983 | public_programs += executable( |
| 2984 | 'systemd-ask-password', |
| 2985 | 'src/ask-password/ask-password.c', |
| 2986 | include_directories : includes, |
| 2987 | link_with : [libshared], |
| 2988 | install_rpath : rootlibexecdir, |
| 2989 | install : true, |
| 2990 | install_dir : rootbindir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 2991 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 2992 | executable( |
| 2993 | 'systemd-reply-password', |
| 2994 | 'src/reply-password/reply-password.c', |
| 2995 | include_directories : includes, |
| 2996 | link_with : [libshared], |
| 2997 | install_rpath : rootlibexecdir, |
| 2998 | install : true, |
| 2999 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3000 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3001 | public_programs += executable( |
| 3002 | 'systemd-tty-ask-password-agent', |
| 3003 | 'src/tty-ask-password-agent/tty-ask-password-agent.c', |
| 3004 | include_directories : includes, |
| 3005 | link_with : [libshared], |
| 3006 | install_rpath : rootlibexecdir, |
| 3007 | install : true, |
| 3008 | install_dir : rootbindir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3009 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3010 | public_programs += executable( |
| 3011 | 'systemd-cgls', |
| 3012 | 'src/cgls/cgls.c', |
| 3013 | include_directories : includes, |
| 3014 | link_with : [libshared], |
| 3015 | install_rpath : rootlibexecdir, |
| 3016 | install : true) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3017 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3018 | public_programs += executable( |
| 3019 | 'systemd-cgtop', |
| 3020 | 'src/cgtop/cgtop.c', |
| 3021 | include_directories : includes, |
| 3022 | link_with : [libshared], |
| 3023 | install_rpath : rootlibexecdir, |
| 3024 | install : true) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3025 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3026 | executable( |
| 3027 | 'systemd-initctl', |
| 3028 | 'src/initctl/initctl.c', |
| 3029 | include_directories : includes, |
| 3030 | link_with : [libshared], |
| 3031 | install_rpath : rootlibexecdir, |
Norbert Lange | 6589a56 | 2020-04-28 23:11:55 +0200 | [diff] [blame] | 3032 | install : (conf.get('HAVE_SYSV_COMPAT') == 1), |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3033 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3034 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3035 | public_programs += executable( |
| 3036 | 'systemd-mount', |
| 3037 | 'src/mount/mount-tool.c', |
| 3038 | include_directories : includes, |
| 3039 | link_with : [libshared], |
| 3040 | dependencies: [libmount], |
| 3041 | install_rpath : rootlibexecdir, |
| 3042 | install : true) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3043 | |
Zbigniew Jędrzejewski-Szmek | 7b76fce | 2017-04-09 23:55:50 -0400 | [diff] [blame] | 3044 | meson.add_install_script(meson_make_symlink, |
Michael Biebl | e17e5ba | 2017-04-13 10:30:56 -0400 | [diff] [blame] | 3045 | 'systemd-mount', join_paths(bindir, 'systemd-umount')) |
Zbigniew Jędrzejewski-Szmek | 7b76fce | 2017-04-09 23:55:50 -0400 | [diff] [blame] | 3046 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3047 | public_programs += executable( |
| 3048 | 'systemd-run', |
| 3049 | 'src/run/run.c', |
| 3050 | include_directories : includes, |
| 3051 | link_with : [libshared], |
| 3052 | install_rpath : rootlibexecdir, |
| 3053 | install : true) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3054 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3055 | public_programs += executable( |
| 3056 | 'systemd-stdio-bridge', |
| 3057 | 'src/stdio-bridge/stdio-bridge.c', |
| 3058 | include_directories : includes, |
| 3059 | link_with : [libshared], |
| 3060 | dependencies : [versiondep], |
| 3061 | install_rpath : rootlibexecdir, |
| 3062 | install : true) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3063 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3064 | public_programs += executable( |
| 3065 | 'busctl', |
| 3066 | 'src/busctl/busctl.c', |
| 3067 | 'src/busctl/busctl-introspect.c', |
| 3068 | 'src/busctl/busctl-introspect.h', |
| 3069 | include_directories : includes, |
| 3070 | link_with : [libshared], |
| 3071 | install_rpath : rootlibexecdir, |
| 3072 | install : true) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3073 | |
Zbigniew Jędrzejewski-Szmek | bd7e6aa | 2020-09-26 11:58:24 +0200 | [diff] [blame] | 3074 | if enable_sysusers |
| 3075 | exe = executable( |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3076 | 'systemd-sysusers', |
| 3077 | 'src/sysusers/sysusers.c', |
| 3078 | include_directories : includes, |
| 3079 | link_with : [libshared], |
| 3080 | install_rpath : rootlibexecdir, |
| 3081 | install : true, |
| 3082 | install_dir : rootbindir) |
Zbigniew Jędrzejewski-Szmek | bd7e6aa | 2020-09-26 11:58:24 +0200 | [diff] [blame] | 3083 | public_programs += exe |
| 3084 | |
| 3085 | if want_tests != 'false' |
| 3086 | test('test-sysusers', |
| 3087 | test_sysusers_sh, |
| 3088 | # https://github.com/mesonbuild/meson/issues/2681 |
| 3089 | args : exe.full_path()) |
| 3090 | endif |
Filipe Brandenburger | 8ef8f3d | 2020-06-03 14:02:59 -0700 | [diff] [blame] | 3091 | |
| 3092 | if have_standalone_binaries |
Zbigniew Jędrzejewski-Szmek | bd7e6aa | 2020-09-26 11:58:24 +0200 | [diff] [blame] | 3093 | exe = executable( |
Filipe Brandenburger | 8ef8f3d | 2020-06-03 14:02:59 -0700 | [diff] [blame] | 3094 | 'systemd-sysusers.standalone', |
| 3095 | 'src/sysusers/sysusers.c', |
| 3096 | include_directories : includes, |
Zbigniew Jędrzejewski-Szmek | 3537577 | 2020-10-09 18:02:54 +0200 | [diff] [blame] | 3097 | c_args : '-DSTANDALONE', |
Filipe Brandenburger | 8ef8f3d | 2020-06-03 14:02:59 -0700 | [diff] [blame] | 3098 | link_with : [libshared_static, |
| 3099 | libbasic, |
| 3100 | libbasic_gcrypt, |
| 3101 | libsystemd_static, |
| 3102 | libjournal_client], |
| 3103 | install : true, |
| 3104 | install_dir : rootbindir) |
Zbigniew Jędrzejewski-Szmek | bd7e6aa | 2020-09-26 11:58:24 +0200 | [diff] [blame] | 3105 | public_programs += exe |
| 3106 | |
| 3107 | if want_tests != 'false' |
| 3108 | test('test-sysusers.standalone', |
| 3109 | test_sysusers_sh, |
| 3110 | # https://github.com/mesonbuild/meson/issues/2681 |
| 3111 | args : exe.full_path()) |
| 3112 | endif |
Filipe Brandenburger | 8ef8f3d | 2020-06-03 14:02:59 -0700 | [diff] [blame] | 3113 | endif |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3114 | endif |
| 3115 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 3116 | if conf.get('ENABLE_TMPFILES') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3117 | exe = executable( |
| 3118 | 'systemd-tmpfiles', |
Filipe Brandenburger | db64ba8 | 2020-06-03 14:49:53 -0700 | [diff] [blame] | 3119 | systemd_tmpfiles_sources, |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3120 | include_directories : includes, |
| 3121 | link_with : [libshared], |
| 3122 | dependencies : [libacl], |
| 3123 | install_rpath : rootlibexecdir, |
| 3124 | install : true, |
| 3125 | install_dir : rootbindir) |
Zbigniew Jędrzejewski-Szmek | 5a8b164 | 2018-07-31 09:44:11 +0200 | [diff] [blame] | 3126 | public_programs += exe |
Zbigniew Jędrzejewski-Szmek | d9daae5 | 2017-11-22 14:13:32 +0100 | [diff] [blame] | 3127 | |
Zbigniew Jędrzejewski-Szmek | 938be08 | 2018-09-12 11:08:49 +0200 | [diff] [blame] | 3128 | if want_tests != 'false' |
| 3129 | test('test-systemd-tmpfiles', |
| 3130 | test_systemd_tmpfiles_py, |
| 3131 | # https://github.com/mesonbuild/meson/issues/2681 |
| 3132 | args : exe.full_path()) |
| 3133 | endif |
Filipe Brandenburger | db64ba8 | 2020-06-03 14:49:53 -0700 | [diff] [blame] | 3134 | |
| 3135 | if have_standalone_binaries |
| 3136 | public_programs += executable( |
| 3137 | 'systemd-tmpfiles.standalone', |
| 3138 | systemd_tmpfiles_sources, |
| 3139 | include_directories : includes, |
Zbigniew Jędrzejewski-Szmek | 3537577 | 2020-10-09 18:02:54 +0200 | [diff] [blame] | 3140 | c_args : '-DSTANDALONE', |
Filipe Brandenburger | db64ba8 | 2020-06-03 14:49:53 -0700 | [diff] [blame] | 3141 | link_with : [libshared_static, |
| 3142 | libbasic, |
| 3143 | libbasic_gcrypt, |
| 3144 | libsystemd_static, |
| 3145 | libjournal_client], |
| 3146 | dependencies : [libacl], |
| 3147 | install : true, |
| 3148 | install_dir : rootbindir) |
| 3149 | endif |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3150 | endif |
| 3151 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 3152 | if conf.get('ENABLE_HWDB') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3153 | public_programs += executable( |
| 3154 | 'systemd-hwdb', |
| 3155 | 'src/hwdb/hwdb.c', |
| 3156 | 'src/libsystemd/sd-hwdb/hwdb-internal.h', |
| 3157 | include_directories : includes, |
| 3158 | link_with : [libudev_static], |
| 3159 | install_rpath : udev_rpath, |
| 3160 | install : true, |
| 3161 | install_dir : rootbindir) |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 3162 | endif |
| 3163 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 3164 | if conf.get('ENABLE_QUOTACHECK') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3165 | executable( |
| 3166 | 'systemd-quotacheck', |
| 3167 | 'src/quotacheck/quotacheck.c', |
| 3168 | include_directories : includes, |
| 3169 | link_with : [libshared], |
| 3170 | install_rpath : rootlibexecdir, |
| 3171 | install : true, |
| 3172 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3173 | endif |
| 3174 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3175 | public_programs += executable( |
| 3176 | 'systemd-socket-proxyd', |
| 3177 | 'src/socket-proxy/socket-proxyd.c', |
| 3178 | include_directories : includes, |
| 3179 | link_with : [libshared], |
| 3180 | dependencies : [threads], |
| 3181 | install_rpath : rootlibexecdir, |
| 3182 | install : true, |
| 3183 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3184 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3185 | public_programs += executable( |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3186 | 'udevadm', |
| 3187 | udevadm_sources, |
| 3188 | c_args : '-DLOG_REALM=LOG_REALM_UDEV', |
| 3189 | include_directories : includes, |
| 3190 | link_with : [libudev_core, |
| 3191 | libsystemd_network, |
| 3192 | libudev_static], |
| 3193 | dependencies : [versiondep, |
| 3194 | threads, |
| 3195 | libkmod, |
| 3196 | libidn, |
| 3197 | libacl, |
| 3198 | libblkid], |
| 3199 | install_rpath : udev_rpath, |
| 3200 | install : true, |
| 3201 | install_dir : rootbindir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3202 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3203 | executable( |
| 3204 | 'systemd-shutdown', |
| 3205 | systemd_shutdown_sources, |
| 3206 | include_directories : includes, |
| 3207 | link_with : [libcore_shared, |
| 3208 | libshared], |
| 3209 | dependencies : [libmount], |
| 3210 | install_rpath : rootlibexecdir, |
| 3211 | install : true, |
| 3212 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3213 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3214 | executable( |
| 3215 | 'systemd-update-done', |
| 3216 | 'src/update-done/update-done.c', |
| 3217 | include_directories : includes, |
| 3218 | link_with : [libshared], |
| 3219 | install_rpath : rootlibexecdir, |
| 3220 | install : true, |
| 3221 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3222 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3223 | executable( |
| 3224 | 'systemd-update-utmp', |
| 3225 | 'src/update-utmp/update-utmp.c', |
| 3226 | include_directories : includes, |
| 3227 | link_with : [libshared], |
| 3228 | dependencies : [libaudit], |
| 3229 | install_rpath : rootlibexecdir, |
Norbert Lange | 55678b9 | 2020-07-14 00:49:25 +0200 | [diff] [blame] | 3230 | install : (conf.get('ENABLE_UTMP') == 1), |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3231 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3232 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 3233 | if conf.get('HAVE_KMOD') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3234 | executable( |
| 3235 | 'systemd-modules-load', |
| 3236 | 'src/modules-load/modules-load.c', |
| 3237 | include_directories : includes, |
| 3238 | link_with : [libshared], |
| 3239 | dependencies : [libkmod], |
| 3240 | install_rpath : rootlibexecdir, |
| 3241 | install : true, |
| 3242 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 94e75a5 | 2017-04-09 23:55:05 -0400 | [diff] [blame] | 3243 | |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 3244 | meson.add_install_script('sh', '-c', |
| 3245 | mkdir_p.format(modulesloaddir)) |
| 3246 | meson.add_install_script('sh', '-c', |
| 3247 | mkdir_p.format(join_paths(sysconfdir, 'modules-load.d'))) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3248 | endif |
| 3249 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3250 | public_programs += executable( |
| 3251 | 'systemd-nspawn', |
| 3252 | systemd_nspawn_sources, |
| 3253 | include_directories : includes, |
| 3254 | link_with : [libcore_shared, |
| 3255 | libnspawn_core, |
| 3256 | libshared], |
| 3257 | dependencies : [libblkid, |
| 3258 | libseccomp], |
| 3259 | install_rpath : rootlibexecdir, |
| 3260 | install : true) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3261 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 3262 | if conf.get('ENABLE_NETWORKD') == 1 |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3263 | executable( |
| 3264 | 'systemd-networkd', |
| 3265 | systemd_networkd_sources, |
| 3266 | include_directories : network_include_dir, |
| 3267 | link_with : [libnetworkd_core, |
| 3268 | libsystemd_network, |
| 3269 | libudev_static, |
| 3270 | networkd_link_with], |
| 3271 | dependencies : [threads], |
| 3272 | install_rpath : rootlibexecdir, |
| 3273 | install : true, |
| 3274 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3275 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3276 | executable( |
| 3277 | 'systemd-networkd-wait-online', |
| 3278 | systemd_networkd_wait_online_sources, |
| 3279 | include_directories : includes, |
| 3280 | link_with : [libnetworkd_core, |
| 3281 | networkd_link_with], |
| 3282 | install_rpath : rootlibexecdir, |
| 3283 | install : true, |
| 3284 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3285 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3286 | public_programs += executable( |
| 3287 | 'networkctl', |
| 3288 | networkctl_sources, |
| 3289 | include_directories : includes, |
| 3290 | link_with : [libsystemd_network, |
| 3291 | networkd_link_with], |
| 3292 | install_rpath : rootlibexecdir, |
| 3293 | install : true, |
| 3294 | install_dir : rootbindir) |
Yu Watanabe | 426c1d3 | 2019-07-13 03:35:04 +0900 | [diff] [blame] | 3295 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3296 | exe = executable( |
| 3297 | 'systemd-network-generator', |
| 3298 | network_generator_sources, |
| 3299 | include_directories : includes, |
| 3300 | link_with : [networkd_link_with], |
| 3301 | install_rpath : rootlibexecdir, |
| 3302 | install : true, |
| 3303 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | fbaa113 | 2019-12-10 13:04:39 +0100 | [diff] [blame] | 3304 | |
| 3305 | if want_tests != 'false' |
| 3306 | test('test-network-generator-conversion', |
| 3307 | test_network_generator_conversion_sh, |
| 3308 | # https://github.com/mesonbuild/meson/issues/2681 |
| 3309 | args : exe.full_path()) |
| 3310 | endif |
Felipe Sateler | dcfe072 | 2017-08-21 09:48:41 -0300 | [diff] [blame] | 3311 | endif |
Zbigniew Jędrzejewski-Szmek | e821f6a | 2017-12-07 10:44:43 +0100 | [diff] [blame] | 3312 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3313 | executable( |
| 3314 | 'systemd-sulogin-shell', |
| 3315 | ['src/sulogin-shell/sulogin-shell.c'], |
| 3316 | include_directories : includes, |
| 3317 | link_with : [libshared], |
| 3318 | install_rpath : rootlibexecdir, |
| 3319 | install : true, |
| 3320 | install_dir : rootlibexecdir) |
Zbigniew Jędrzejewski-Szmek | e821f6a | 2017-12-07 10:44:43 +0100 | [diff] [blame] | 3321 | |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 3322 | ############################################################ |
| 3323 | |
Filipe Brandenburger | e2d4137 | 2018-09-11 23:55:02 -0700 | [diff] [blame] | 3324 | custom_target( |
| 3325 | 'systemd-runtest.env', |
| 3326 | output : 'systemd-runtest.env', |
| 3327 | command : ['sh', '-c', '{ ' + |
Davide Cavalca | 1485aac | 2019-02-27 11:19:07 -0500 | [diff] [blame] | 3328 | 'echo SYSTEMD_TEST_DATA=@0@; '.format(join_paths(project_source_root, 'test')) + |
Zbigniew Jędrzejewski-Szmek | 81e0677 | 2020-04-24 20:12:03 +0200 | [diff] [blame] | 3329 | 'echo SYSTEMD_CATALOG_DIR=@0@; '.format(join_paths(project_build_root, 'catalog')) + |
Filipe Brandenburger | e2d4137 | 2018-09-11 23:55:02 -0700 | [diff] [blame] | 3330 | '} >@OUTPUT@'], |
| 3331 | build_by_default : true) |
| 3332 | |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 3333 | foreach tuple : tests |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 3334 | sources = tuple[0] |
| 3335 | link_with = tuple[1].length() > 0 ? tuple[1] : [libshared] |
| 3336 | dependencies = tuple[2] |
| 3337 | condition = tuple.length() >= 4 ? tuple[3] : '' |
| 3338 | type = tuple.length() >= 5 ? tuple[4] : '' |
| 3339 | defs = tuple.length() >= 6 ? tuple[5] : [] |
| 3340 | incs = tuple.length() >= 7 ? tuple[6] : includes |
Lennart Poettering | f93ba37 | 2020-09-25 18:26:53 +0200 | [diff] [blame^] | 3341 | parallel = tuple.length() >= 8 ? tuple[7] : true |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 3342 | timeout = 30 |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 3343 | |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 3344 | name = sources[0].split('/')[-1].split('.')[0] |
| 3345 | if type.startswith('timeout=') |
| 3346 | timeout = type.split('=')[1].to_int() |
| 3347 | type = '' |
| 3348 | endif |
Zbigniew Jędrzejewski-Szmek | 3b2bdd6 | 2018-09-12 16:52:08 +0200 | [diff] [blame] | 3349 | |
| 3350 | if condition == '' or conf.get(condition) == 1 |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 3351 | exe = executable( |
| 3352 | name, |
| 3353 | sources, |
| 3354 | include_directories : incs, |
| 3355 | link_with : link_with, |
Zbigniew Jędrzejewski-Szmek | 60722ad | 2019-02-24 22:49:38 +0100 | [diff] [blame] | 3356 | dependencies : [versiondep, |
| 3357 | dependencies], |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 3358 | c_args : defs, |
Zbigniew Jędrzejewski-Szmek | 3b2bdd6 | 2018-09-12 16:52:08 +0200 | [diff] [blame] | 3359 | build_by_default : want_tests != 'false', |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 3360 | install_rpath : rootlibexecdir, |
Michael Biebl | 7cdd978 | 2017-06-23 03:23:30 +0200 | [diff] [blame] | 3361 | install : install_tests, |
| 3362 | install_dir : join_paths(testsdir, type)) |
Zbigniew Jędrzejewski-Szmek | 572baca | 2017-04-08 01:55:38 -0400 | [diff] [blame] | 3363 | |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 3364 | if type == 'manual' |
| 3365 | message('@0@ is a manual test'.format(name)) |
| 3366 | elif type == 'unsafe' and want_tests != 'unsafe' |
| 3367 | message('@0@ is an unsafe test'.format(name)) |
Zbigniew Jędrzejewski-Szmek | 3b2bdd6 | 2018-09-12 16:52:08 +0200 | [diff] [blame] | 3368 | elif want_tests != 'false' |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 3369 | test(name, exe, |
| 3370 | env : test_env, |
| 3371 | timeout : timeout) |
| 3372 | endif |
| 3373 | else |
| 3374 | message('Not compiling @0@ because @1@ is not true'.format(name, condition)) |
| 3375 | endif |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 3376 | endforeach |
| 3377 | |
Zbigniew Jędrzejewski-Szmek | 0632b4c | 2018-04-23 13:49:27 +0200 | [diff] [blame] | 3378 | exe = executable( |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 3379 | 'test-libsystemd-sym', |
| 3380 | test_libsystemd_sym_c, |
| 3381 | include_directories : includes, |
| 3382 | link_with : [libsystemd], |
Yu Watanabe | fd1939f | 2018-09-12 21:47:56 +0900 | [diff] [blame] | 3383 | build_by_default : want_tests != 'false', |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 3384 | install : install_tests, |
| 3385 | install_dir : testsdir) |
Zbigniew Jędrzejewski-Szmek | 938be08 | 2018-09-12 11:08:49 +0200 | [diff] [blame] | 3386 | if want_tests != 'false' |
| 3387 | test('test-libsystemd-sym', exe) |
| 3388 | endif |
Zbigniew Jędrzejewski-Szmek | 37ab1a2 | 2017-04-10 14:13:40 -0400 | [diff] [blame] | 3389 | |
Zbigniew Jędrzejewski-Szmek | 0632b4c | 2018-04-23 13:49:27 +0200 | [diff] [blame] | 3390 | exe = executable( |
| 3391 | 'test-libsystemd-static-sym', |
| 3392 | test_libsystemd_sym_c, |
| 3393 | include_directories : includes, |
Zbigniew Jędrzejewski-Szmek | 0632b4c | 2018-04-23 13:49:27 +0200 | [diff] [blame] | 3394 | link_with : [install_libsystemd_static], |
| 3395 | dependencies : [threads], # threads is already included in dependencies on the library, |
| 3396 | # but does not seem to get propagated. Add here as a work-around. |
Yu Watanabe | fd1939f | 2018-09-12 21:47:56 +0900 | [diff] [blame] | 3397 | build_by_default : want_tests != 'false' and static_libsystemd_pic, |
Davide Cavalca | 20f3d32 | 2018-04-24 13:34:48 -0700 | [diff] [blame] | 3398 | install : install_tests and static_libsystemd_pic, |
Zbigniew Jędrzejewski-Szmek | 0632b4c | 2018-04-23 13:49:27 +0200 | [diff] [blame] | 3399 | install_dir : testsdir) |
Zbigniew Jędrzejewski-Szmek | 938be08 | 2018-09-12 11:08:49 +0200 | [diff] [blame] | 3400 | if want_tests != 'false' and static_libsystemd_pic |
Zbigniew Jędrzejewski-Szmek | 0632b4c | 2018-04-23 13:49:27 +0200 | [diff] [blame] | 3401 | test('test-libsystemd-static-sym', exe) |
| 3402 | endif |
| 3403 | |
| 3404 | exe = executable( |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 3405 | 'test-libudev-sym', |
| 3406 | test_libudev_sym_c, |
| 3407 | include_directories : includes, |
Zbigniew Jędrzejewski-Szmek | c1cd674 | 2018-09-12 16:57:06 +0200 | [diff] [blame] | 3408 | c_args : '-Wno-deprecated-declarations', |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 3409 | link_with : [libudev], |
Yu Watanabe | fd1939f | 2018-09-12 21:47:56 +0900 | [diff] [blame] | 3410 | build_by_default : want_tests != 'false', |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 3411 | install : install_tests, |
| 3412 | install_dir : testsdir) |
Zbigniew Jędrzejewski-Szmek | 938be08 | 2018-09-12 11:08:49 +0200 | [diff] [blame] | 3413 | if want_tests != 'false' |
| 3414 | test('test-libudev-sym', exe) |
| 3415 | endif |
Zbigniew Jędrzejewski-Szmek | 0632b4c | 2018-04-23 13:49:27 +0200 | [diff] [blame] | 3416 | |
| 3417 | exe = executable( |
| 3418 | 'test-libudev-static-sym', |
| 3419 | test_libudev_sym_c, |
| 3420 | include_directories : includes, |
Zbigniew Jędrzejewski-Szmek | c1cd674 | 2018-09-12 16:57:06 +0200 | [diff] [blame] | 3421 | c_args : '-Wno-deprecated-declarations', |
Zbigniew Jędrzejewski-Szmek | 0632b4c | 2018-04-23 13:49:27 +0200 | [diff] [blame] | 3422 | link_with : [install_libudev_static], |
Yu Watanabe | fd1939f | 2018-09-12 21:47:56 +0900 | [diff] [blame] | 3423 | build_by_default : want_tests != 'false' and static_libudev_pic, |
Davide Cavalca | 20f3d32 | 2018-04-24 13:34:48 -0700 | [diff] [blame] | 3424 | install : install_tests and static_libudev_pic, |
Zbigniew Jędrzejewski-Szmek | 0632b4c | 2018-04-23 13:49:27 +0200 | [diff] [blame] | 3425 | install_dir : testsdir) |
Zbigniew Jędrzejewski-Szmek | 938be08 | 2018-09-12 11:08:49 +0200 | [diff] [blame] | 3426 | if want_tests != 'false' and static_libudev_pic |
Zbigniew Jędrzejewski-Szmek | 0632b4c | 2018-04-23 13:49:27 +0200 | [diff] [blame] | 3427 | test('test-libudev-static-sym', exe) |
| 3428 | endif |
Zbigniew Jędrzejewski-Szmek | e0bec52 | 2017-04-10 15:20:42 -0400 | [diff] [blame] | 3429 | |
Zbigniew Jędrzejewski-Szmek | 69e9642 | 2017-04-07 00:19:09 -0400 | [diff] [blame] | 3430 | ############################################################ |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3431 | |
Jonathan Rudenberg | 7db7d5b | 2018-01-13 19:51:07 -0500 | [diff] [blame] | 3432 | fuzzer_exes = [] |
| 3433 | |
Michael Olbrich | 5996740 | 2018-11-11 11:27:35 +0100 | [diff] [blame] | 3434 | if get_option('tests') != 'false' |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3435 | foreach tuple : fuzzers |
| 3436 | sources = tuple[0] |
| 3437 | link_with = tuple[1].length() > 0 ? tuple[1] : [libshared] |
| 3438 | dependencies = tuple[2] |
| 3439 | defs = tuple.length() >= 4 ? tuple[3] : [] |
| 3440 | incs = tuple.length() >= 5 ? tuple[4] : includes |
| 3441 | link_args = [] |
Jonathan Rudenberg | 7db7d5b | 2018-01-13 19:51:07 -0500 | [diff] [blame] | 3442 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3443 | if want_ossfuzz |
Evgeny Vereshchagin | 9c5c467 | 2019-05-09 00:03:41 +0200 | [diff] [blame] | 3444 | dependencies += fuzzing_engine |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3445 | elif want_libfuzzer |
| 3446 | if fuzzing_engine.found() |
| 3447 | dependencies += fuzzing_engine |
| 3448 | else |
| 3449 | link_args += ['-fsanitize=fuzzer'] |
| 3450 | endif |
Evgeny Vereshchagin | 9c5c467 | 2019-05-09 00:03:41 +0200 | [diff] [blame] | 3451 | else |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3452 | sources += 'src/fuzz/fuzz-main.c' |
Evgeny Vereshchagin | 9c5c467 | 2019-05-09 00:03:41 +0200 | [diff] [blame] | 3453 | endif |
Jonathan Rudenberg | 7db7d5b | 2018-01-13 19:51:07 -0500 | [diff] [blame] | 3454 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3455 | name = sources[0].split('/')[-1].split('.')[0] |
Jonathan Rudenberg | 7db7d5b | 2018-01-13 19:51:07 -0500 | [diff] [blame] | 3456 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3457 | fuzzer_exes += executable( |
| 3458 | name, |
| 3459 | sources, |
| 3460 | include_directories : [incs, include_directories('src/fuzz')], |
| 3461 | link_with : link_with, |
| 3462 | dependencies : dependencies, |
| 3463 | c_args : defs, |
| 3464 | link_args: link_args, |
| 3465 | install : false) |
| 3466 | endforeach |
Michael Olbrich | 5996740 | 2018-11-11 11:27:35 +0100 | [diff] [blame] | 3467 | endif |
Jonathan Rudenberg | 7db7d5b | 2018-01-13 19:51:07 -0500 | [diff] [blame] | 3468 | |
Zbigniew Jędrzejewski-Szmek | 6164ec4 | 2020-04-28 09:08:04 +0200 | [diff] [blame] | 3469 | run_target( |
| 3470 | 'fuzzers', |
Zbigniew Jędrzejewski-Szmek | 63058f4 | 2019-01-05 13:20:52 +0100 | [diff] [blame] | 3471 | depends : fuzzer_exes, |
Jonathan Rudenberg | 7db7d5b | 2018-01-13 19:51:07 -0500 | [diff] [blame] | 3472 | command : ['true']) |
| 3473 | |
| 3474 | ############################################################ |
| 3475 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3476 | subdir('sysctl.d') |
| 3477 | subdir('sysusers.d') |
| 3478 | subdir('tmpfiles.d') |
Zbigniew Jędrzejewski-Szmek | 4f10b80 | 2019-10-08 16:52:10 +0200 | [diff] [blame] | 3479 | subdir('hwdb.d') |
| 3480 | subdir('units') |
Zbigniew Jędrzejewski-Szmek | e783f95 | 2017-11-23 13:23:42 +0100 | [diff] [blame] | 3481 | subdir('presets') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3482 | subdir('network') |
| 3483 | subdir('man') |
| 3484 | subdir('shell-completion/bash') |
| 3485 | subdir('shell-completion/zsh') |
Filipe Brandenburger | 9e825eb | 2018-09-07 01:02:42 -0700 | [diff] [blame] | 3486 | subdir('docs/sysvinit') |
| 3487 | subdir('docs/var-log') |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3488 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3489 | install_subdir('factory/etc', |
| 3490 | install_dir : factorydir) |
| 3491 | |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3492 | install_data('xorg/50-systemd-user.sh', |
| 3493 | install_dir : xinitrcdir) |
Dimitri John Ledkov | 582faeb | 2017-08-02 13:41:18 +0100 | [diff] [blame] | 3494 | install_data('modprobe.d/systemd.conf', |
| 3495 | install_dir : modprobedir) |
Lennart Poettering | f09eb76 | 2018-02-26 11:48:46 +0100 | [diff] [blame] | 3496 | install_data('LICENSE.GPL2', |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3497 | 'LICENSE.LGPL2.1', |
Lennart Poettering | f09eb76 | 2018-02-26 11:48:46 +0100 | [diff] [blame] | 3498 | 'NEWS', |
| 3499 | 'README', |
Faheel Ahmad | eea9840 | 2018-10-30 23:01:20 +0530 | [diff] [blame] | 3500 | 'docs/CODING_STYLE.md', |
Filipe Brandenburger | 1d1cb16 | 2018-09-07 01:22:34 -0700 | [diff] [blame] | 3501 | 'docs/DISTRO_PORTING.md', |
Filipe Brandenburger | 9e825eb | 2018-09-07 01:02:42 -0700 | [diff] [blame] | 3502 | 'docs/ENVIRONMENT.md', |
Zbigniew Jędrzejewski-Szmek | 5425f8a | 2020-01-15 13:45:04 +0100 | [diff] [blame] | 3503 | 'docs/HACKING.md', |
Filipe Brandenburger | 9e825eb | 2018-09-07 01:02:42 -0700 | [diff] [blame] | 3504 | 'docs/TRANSIENT-SETTINGS.md', |
Filipe Brandenburger | b6dc0d7 | 2018-09-07 01:44:49 -0700 | [diff] [blame] | 3505 | 'docs/TRANSLATORS.md', |
Filipe Brandenburger | 9e825eb | 2018-09-07 01:02:42 -0700 | [diff] [blame] | 3506 | 'docs/UIDS-GIDS.md', |
Zbigniew Jędrzejewski-Szmek | 5c23128 | 2017-04-04 23:03:47 -0400 | [diff] [blame] | 3507 | 'src/libsystemd/sd-bus/GVARIANT-SERIALIZATION', |
| 3508 | install_dir : docdir) |
Zbigniew Jędrzejewski-Szmek | d68b342 | 2017-04-06 14:33:27 -0400 | [diff] [blame] | 3509 | |
Zbigniew Jędrzejewski-Szmek | 94e75a5 | 2017-04-09 23:55:05 -0400 | [diff] [blame] | 3510 | meson.add_install_script('sh', '-c', mkdir_p.format(systemdstatedir)) |
| 3511 | meson.add_install_script('sh', '-c', 'touch $DESTDIR@0@'.format(prefixdir)) |
| 3512 | |
Zbigniew Jędrzejewski-Szmek | d68b342 | 2017-04-06 14:33:27 -0400 | [diff] [blame] | 3513 | ############################################################ |
| 3514 | |
Zbigniew Jędrzejewski-Szmek | dd1e33c | 2020-05-07 13:54:10 +0200 | [diff] [blame] | 3515 | check_help = find_program('tools/check-help.sh') |
Zbigniew Jędrzejewski-Szmek | 005a29f | 2017-04-13 11:52:05 -0400 | [diff] [blame] | 3516 | |
| 3517 | foreach exec : public_programs |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 3518 | name = exec.full_path().split('/')[-1] |
Zbigniew Jędrzejewski-Szmek | 938be08 | 2018-09-12 11:08:49 +0200 | [diff] [blame] | 3519 | if want_tests != 'false' |
| 3520 | test('check-help-' + name, |
Zbigniew Jędrzejewski-Szmek | dd1e33c | 2020-05-07 13:54:10 +0200 | [diff] [blame] | 3521 | check_help, |
Zbigniew Jędrzejewski-Szmek | c1cd674 | 2018-09-12 16:57:06 +0200 | [diff] [blame] | 3522 | args : exec.full_path()) |
Zbigniew Jędrzejewski-Szmek | 938be08 | 2018-09-12 11:08:49 +0200 | [diff] [blame] | 3523 | endif |
Zbigniew Jędrzejewski-Szmek | 005a29f | 2017-04-13 11:52:05 -0400 | [diff] [blame] | 3524 | endforeach |
| 3525 | |
| 3526 | ############################################################ |
| 3527 | |
Zbigniew Jędrzejewski-Szmek | c6448ee | 2019-05-07 20:46:36 +0200 | [diff] [blame] | 3528 | check_directives_sh = find_program('tools/check-directives.sh') |
| 3529 | |
| 3530 | if want_tests != 'false' |
| 3531 | test('check-directives', |
| 3532 | check_directives_sh, |
| 3533 | args : project_source_root) |
| 3534 | endif |
| 3535 | |
| 3536 | ############################################################ |
| 3537 | |
Zbigniew Jędrzejewski-Szmek | 52d4d1d | 2018-03-14 14:27:04 +0100 | [diff] [blame] | 3538 | # Enable tests for all supported sanitizers |
| 3539 | foreach tuple : sanitizers |
| 3540 | sanitizer = tuple[0] |
| 3541 | build = tuple[1] |
Zbigniew Jędrzejewski-Szmek | b68dfb9 | 2018-01-19 17:54:30 +1100 | [diff] [blame] | 3542 | |
Yu Watanabe | 7a6397d | 2018-05-15 20:18:24 +0900 | [diff] [blame] | 3543 | if cc.has_link_argument('-fsanitize=@0@'.format(sanitizer)) |
Zbigniew Jędrzejewski-Szmek | 52d4d1d | 2018-03-14 14:27:04 +0100 | [diff] [blame] | 3544 | prev = '' |
| 3545 | foreach p : fuzz_regression_tests |
| 3546 | b = p.split('/')[-2] |
| 3547 | c = p.split('/')[-1] |
Zbigniew Jędrzejewski-Szmek | b68dfb9 | 2018-01-19 17:54:30 +1100 | [diff] [blame] | 3548 | |
Zbigniew Jędrzejewski-Szmek | 52d4d1d | 2018-03-14 14:27:04 +0100 | [diff] [blame] | 3549 | name = '@0@:@1@'.format(b, sanitizer) |
Zbigniew Jędrzejewski-Szmek | b68dfb9 | 2018-01-19 17:54:30 +1100 | [diff] [blame] | 3550 | |
Zbigniew Jędrzejewski-Szmek | 52d4d1d | 2018-03-14 14:27:04 +0100 | [diff] [blame] | 3551 | if name != prev |
| 3552 | if want_tests == 'false' |
| 3553 | message('Not compiling @0@ because tests is set to false'.format(name)) |
Frantisek Sumsal | c56463f | 2020-05-21 16:59:40 +0200 | [diff] [blame] | 3554 | elif slow_tests or fuzz_tests |
Zbigniew Jędrzejewski-Szmek | 52d4d1d | 2018-03-14 14:27:04 +0100 | [diff] [blame] | 3555 | exe = custom_target( |
| 3556 | name, |
| 3557 | output : name, |
| 3558 | depends : build, |
| 3559 | command : [env, 'ln', '-fs', |
| 3560 | join_paths(build.full_path(), b), |
| 3561 | '@OUTPUT@'], |
| 3562 | build_by_default : true) |
| 3563 | else |
Frantisek Sumsal | c56463f | 2020-05-21 16:59:40 +0200 | [diff] [blame] | 3564 | message('Not compiling @0@ because slow-tests/fuzz-tests is set to false'.format(name)) |
Zbigniew Jędrzejewski-Szmek | 52d4d1d | 2018-03-14 14:27:04 +0100 | [diff] [blame] | 3565 | endif |
| 3566 | endif |
| 3567 | prev = name |
| 3568 | |
Frantisek Sumsal | c56463f | 2020-05-21 16:59:40 +0200 | [diff] [blame] | 3569 | if want_tests != 'false' and (slow_tests or fuzz_tests) |
Zbigniew Jędrzejewski-Szmek | 52d4d1d | 2018-03-14 14:27:04 +0100 | [diff] [blame] | 3570 | test('@0@:@1@:@2@'.format(b, c, sanitizer), |
| 3571 | env, |
Evgeny Vereshchagin | 8976715 | 2020-05-20 11:33:12 +0200 | [diff] [blame] | 3572 | env : ['UBSAN_OPTIONS=print_stacktrace=1:print_summary=1:halt_on_error=1'], |
| 3573 | timeout : 60, |
Zbigniew Jędrzejewski-Szmek | 52d4d1d | 2018-03-14 14:27:04 +0100 | [diff] [blame] | 3574 | args : [exe.full_path(), |
Davide Cavalca | 1485aac | 2019-02-27 11:19:07 -0500 | [diff] [blame] | 3575 | join_paths(project_source_root, p)]) |
Zbigniew Jędrzejewski-Szmek | 52d4d1d | 2018-03-14 14:27:04 +0100 | [diff] [blame] | 3576 | endif |
| 3577 | endforeach |
Zbigniew Jędrzejewski-Szmek | b68dfb9 | 2018-01-19 17:54:30 +1100 | [diff] [blame] | 3578 | endif |
| 3579 | endforeach |
| 3580 | |
Zbigniew Jędrzejewski-Szmek | 52d4d1d | 2018-03-14 14:27:04 +0100 | [diff] [blame] | 3581 | |
Zbigniew Jędrzejewski-Szmek | b68dfb9 | 2018-01-19 17:54:30 +1100 | [diff] [blame] | 3582 | ############################################################ |
| 3583 | |
Zbigniew Jędrzejewski-Szmek | 0700e8b | 2017-07-03 12:42:29 -0400 | [diff] [blame] | 3584 | if git.found() |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 3585 | all_files = run_command( |
| 3586 | git, |
Davide Cavalca | 1485aac | 2019-02-27 11:19:07 -0500 | [diff] [blame] | 3587 | ['--git-dir=@0@/.git'.format(project_source_root), |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 3588 | 'ls-files', |
| 3589 | ':/*.[ch]']) |
| 3590 | all_files = files(all_files.stdout().split()) |
Zbigniew Jędrzejewski-Szmek | d68b342 | 2017-04-06 14:33:27 -0400 | [diff] [blame] | 3591 | |
userwithuid | e85a690 | 2017-08-09 13:41:44 +0000 | [diff] [blame] | 3592 | custom_target( |
Zbigniew Jędrzejewski-Szmek | 0700e8b | 2017-07-03 12:42:29 -0400 | [diff] [blame] | 3593 | 'tags', |
userwithuid | e85a690 | 2017-08-09 13:41:44 +0000 | [diff] [blame] | 3594 | output : 'tags', |
Davide Cavalca | 1485aac | 2019-02-27 11:19:07 -0500 | [diff] [blame] | 3595 | command : [env, 'etags', '-o', '@0@/TAGS'.format(project_source_root)] + all_files) |
Evegeny Vereshchagin | 2f09974 | 2018-05-18 10:52:17 +0000 | [diff] [blame] | 3596 | run_target( |
Zbigniew Jędrzejewski-Szmek | 0700e8b | 2017-07-03 12:42:29 -0400 | [diff] [blame] | 3597 | 'ctags', |
Davide Cavalca | 1485aac | 2019-02-27 11:19:07 -0500 | [diff] [blame] | 3598 | command : [env, 'ctags', '-o', '@0@/tags'.format(project_source_root)] + all_files) |
Zbigniew Jędrzejewski-Szmek | d68b342 | 2017-04-06 14:33:27 -0400 | [diff] [blame] | 3599 | endif |
Zbigniew Jędrzejewski-Szmek | 177929c | 2017-04-15 00:16:23 -0400 | [diff] [blame] | 3600 | |
| 3601 | if git.found() |
Zbigniew Jędrzejewski-Szmek | dd1e33c | 2020-05-07 13:54:10 +0200 | [diff] [blame] | 3602 | git_contrib_sh = find_program('tools/git-contrib.sh') |
Zbigniew Jędrzejewski-Szmek | a923e08 | 2017-04-17 19:48:20 -0400 | [diff] [blame] | 3603 | run_target( |
Zbigniew Jędrzejewski-Szmek | 37efbbd | 2017-04-17 19:25:00 -0400 | [diff] [blame] | 3604 | 'git-contrib', |
Zbigniew Jędrzejewski-Szmek | dd1e33c | 2020-05-07 13:54:10 +0200 | [diff] [blame] | 3605 | command : [git_contrib_sh]) |
Zbigniew Jędrzejewski-Szmek | 177929c | 2017-04-15 00:16:23 -0400 | [diff] [blame] | 3606 | endif |
Zbigniew Jędrzejewski-Szmek | dd6ab3d | 2017-04-24 19:28:05 -0400 | [diff] [blame] | 3607 | |
| 3608 | if git.found() |
| 3609 | git_head = run_command( |
| 3610 | git, |
Davide Cavalca | 1485aac | 2019-02-27 11:19:07 -0500 | [diff] [blame] | 3611 | ['--git-dir=@0@/.git'.format(project_source_root), |
Zbigniew Jędrzejewski-Szmek | dd6ab3d | 2017-04-24 19:28:05 -0400 | [diff] [blame] | 3612 | 'rev-parse', 'HEAD']).stdout().strip() |
| 3613 | git_head_short = run_command( |
| 3614 | git, |
Davide Cavalca | 1485aac | 2019-02-27 11:19:07 -0500 | [diff] [blame] | 3615 | ['--git-dir=@0@/.git'.format(project_source_root), |
Zbigniew Jędrzejewski-Szmek | dd6ab3d | 2017-04-24 19:28:05 -0400 | [diff] [blame] | 3616 | 'rev-parse', '--short=7', 'HEAD']).stdout().strip() |
| 3617 | |
| 3618 | run_target( |
| 3619 | 'git-snapshot', |
| 3620 | command : ['git', 'archive', |
Davide Cavalca | 1485aac | 2019-02-27 11:19:07 -0500 | [diff] [blame] | 3621 | '-o', '@0@/systemd-@1@.tar.gz'.format(project_source_root, |
Zbigniew Jędrzejewski-Szmek | dd6ab3d | 2017-04-24 19:28:05 -0400 | [diff] [blame] | 3622 | git_head_short), |
| 3623 | '--prefix', 'systemd-@0@/'.format(git_head), |
| 3624 | 'HEAD']) |
| 3625 | endif |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3626 | |
| 3627 | ############################################################ |
| 3628 | |
Zbigniew Jędrzejewski-Szmek | dd1e33c | 2020-05-07 13:54:10 +0200 | [diff] [blame] | 3629 | check_api_docs_sh = find_program('tools/check-api-docs.sh') |
Lennart Poettering | 51b1386 | 2017-12-20 12:51:14 +0100 | [diff] [blame] | 3630 | run_target( |
| 3631 | 'check-api-docs', |
| 3632 | depends : [man, libsystemd, libudev], |
Zbigniew Jędrzejewski-Szmek | dd1e33c | 2020-05-07 13:54:10 +0200 | [diff] [blame] | 3633 | command : [check_api_docs_sh, libsystemd.full_path(), libudev.full_path()]) |
Lennart Poettering | 51b1386 | 2017-12-20 12:51:14 +0100 | [diff] [blame] | 3634 | |
| 3635 | ############################################################ |
Anita Zhang | 7bc9ea5 | 2019-10-25 15:46:21 -0700 | [diff] [blame] | 3636 | watchdog_opt = service_watchdog == '' ? 'disabled' : service_watchdog |
Lennart Poettering | 51b1386 | 2017-12-20 12:51:14 +0100 | [diff] [blame] | 3637 | |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3638 | status = [ |
| 3639 | '@0@ @1@'.format(meson.project_name(), meson.project_version()), |
| 3640 | |
Zbigniew Jędrzejewski-Szmek | 4c8e5f4 | 2020-09-17 09:02:16 +0200 | [diff] [blame] | 3641 | 'build mode: @0@'.format(get_option('mode')), |
Zbigniew Jędrzejewski-Szmek | 2675413 | 2018-03-01 11:49:42 +0100 | [diff] [blame] | 3642 | 'split /usr: @0@'.format(split_usr), |
Zbigniew Jędrzejewski-Szmek | 157baa8 | 2018-03-01 10:28:29 +0100 | [diff] [blame] | 3643 | 'split bin-sbin: @0@'.format(split_bin), |
Yu Watanabe | 359b496 | 2017-11-25 20:35:24 +0900 | [diff] [blame] | 3644 | 'prefix directory: @0@'.format(prefixdir), |
| 3645 | 'rootprefix directory: @0@'.format(rootprefixdir), |
| 3646 | 'sysconf directory: @0@'.format(sysconfdir), |
| 3647 | 'include directory: @0@'.format(includedir), |
| 3648 | 'lib directory: @0@'.format(libdir), |
| 3649 | 'rootlib directory: @0@'.format(rootlibdir), |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3650 | 'SysV init scripts: @0@'.format(sysvinit_path), |
| 3651 | 'SysV rc?.d directories: @0@'.format(sysvrcnd_path), |
Yu Watanabe | 359b496 | 2017-11-25 20:35:24 +0900 | [diff] [blame] | 3652 | 'PAM modules directory: @0@'.format(pamlibdir), |
| 3653 | 'PAM configuration directory: @0@'.format(pamconfdir), |
| 3654 | 'RPM macros directory: @0@'.format(rpmmacrosdir), |
| 3655 | 'modprobe.d directory: @0@'.format(modprobedir), |
| 3656 | 'D-Bus policy directory: @0@'.format(dbuspolicydir), |
| 3657 | 'D-Bus session directory: @0@'.format(dbussessionservicedir), |
| 3658 | 'D-Bus system directory: @0@'.format(dbussystemservicedir), |
| 3659 | 'bash completions directory: @0@'.format(bashcompletiondir), |
| 3660 | 'zsh completions directory: @0@'.format(zshcompletiondir), |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3661 | 'extra start script: @0@'.format(get_option('rc-local')), |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3662 | 'debug shell: @0@ @ @1@'.format(get_option('debug-shell'), |
| 3663 | get_option('debug-tty')), |
| 3664 | 'TTY GID: @0@'.format(tty_gid), |
Yu Watanabe | ac09340 | 2018-05-10 16:04:16 +0900 | [diff] [blame] | 3665 | 'users GID: @0@'.format(substs.get('USERS_GID')), |
Zbigniew Jędrzejewski-Szmek | fc1a5d1 | 2020-09-25 16:50:45 +0200 | [diff] [blame] | 3666 | 'system UIDs: <=@0@ (alloc >=@1@)'.format(conf.get('SYSTEM_UID_MAX'), |
| 3667 | conf.get('SYSTEM_ALLOC_UID_MIN')), |
| 3668 | 'system GIDs: <=@0@ (alloc >=@1@)'.format(conf.get('SYSTEM_GID_MAX'), |
| 3669 | conf.get('SYSTEM_ALLOC_GID_MIN')), |
| 3670 | 'dynamic UIDs: @0@–@1@'.format(dynamic_uid_min, dynamic_uid_max), |
| 3671 | 'container UID bases: @0@–@1@'.format(container_uid_base_min, container_uid_base_max), |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3672 | '/dev/kvm access mode: @0@'.format(get_option('dev-kvm-mode')), |
Tom Stellard | 4e15a73 | 2017-10-31 08:46:24 -0700 | [diff] [blame] | 3673 | 'render group access mode: @0@'.format(get_option('group-render-mode')), |
Yu Watanabe | 359b496 | 2017-11-25 20:35:24 +0900 | [diff] [blame] | 3674 | 'certificate root directory: @0@'.format(get_option('certificate-root')), |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3675 | 'support URL: @0@'.format(support_url), |
Lennart Poettering | afde457 | 2017-12-05 11:00:24 +0100 | [diff] [blame] | 3676 | 'nobody user name: @0@'.format(nobody_user), |
| 3677 | 'nobody group name: @0@'.format(nobody_group), |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3678 | 'fallback hostname: @0@'.format(get_option('fallback-hostname')), |
Zbigniew Jędrzejewski-Szmek | 5248e7e | 2017-07-11 02:15:08 -0400 | [diff] [blame] | 3679 | 'symbolic gateway hostnames: @0@'.format(', '.join(gateway_hostnames)), |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3680 | |
| 3681 | 'default DNSSEC mode: @0@'.format(default_dnssec), |
Iwan Timmer | c9299be | 2018-06-13 20:26:24 +0200 | [diff] [blame] | 3682 | 'default DNS-over-TLS mode: @0@'.format(default_dns_over_tls), |
Zbigniew Jędrzejewski-Szmek | 3614df0 | 2020-04-14 22:18:18 +0200 | [diff] [blame] | 3683 | 'default mDNS mode: @0@'.format(default_mdns), |
| 3684 | 'default LLMNR mode: @0@'.format(default_llmnr), |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3685 | 'default cgroup hierarchy: @0@'.format(default_hierarchy), |
Zbigniew Jędrzejewski-Szmek | 06da5c6 | 2018-12-11 23:28:29 +0100 | [diff] [blame] | 3686 | 'default net.naming-scheme setting: @0@'.format(default_net_naming_scheme), |
Dave Reisner | 8ca9e92 | 2018-12-28 07:38:36 -0500 | [diff] [blame] | 3687 | 'default KillUserProcesses setting: @0@'.format(kill_user_processes), |
Zbigniew Jędrzejewski-Szmek | 21d0dd5 | 2019-10-25 12:17:24 +0200 | [diff] [blame] | 3688 | 'default locale: @0@'.format(default_locale), |
Zbigniew Jędrzejewski-Szmek | 5bc655c | 2019-11-13 22:22:58 +0100 | [diff] [blame] | 3689 | 'default user $PATH: @0@'.format(default_user_path_display), |
Anita Zhang | 7bc9ea5 | 2019-10-25 15:46:21 -0700 | [diff] [blame] | 3690 | 'systemd service watchdog: @0@'.format(watchdog_opt)] |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3691 | |
| 3692 | alt_dns_servers = '\n '.join(dns_servers.split(' ')) |
| 3693 | alt_ntp_servers = '\n '.join(ntp_servers.split(' ')) |
| 3694 | status += [ |
| 3695 | 'default DNS servers: @0@'.format(alt_dns_servers), |
| 3696 | 'default NTP servers: @0@'.format(alt_ntp_servers)] |
| 3697 | |
| 3698 | alt_time_epoch = run_command('date', '-Is', '-u', '-d', |
| 3699 | '@@0@'.format(time_epoch)).stdout().strip() |
| 3700 | status += [ |
| 3701 | 'time epoch: @0@ (@1@)'.format(time_epoch, alt_time_epoch)] |
| 3702 | |
Lennart Poettering | 19d8c9c | 2018-10-05 16:38:42 +0200 | [diff] [blame] | 3703 | status += [ |
Zbigniew Jędrzejewski-Szmek | abc8caf | 2018-10-11 11:10:53 +0200 | [diff] [blame] | 3704 | 'static libsystemd: @0@'.format(static_libsystemd), |
| 3705 | 'static libudev: @0@'.format(static_libudev)] |
Lennart Poettering | 19d8c9c | 2018-10-05 16:38:42 +0200 | [diff] [blame] | 3706 | |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3707 | # TODO: |
| 3708 | # CFLAGS: ${OUR_CFLAGS} ${CFLAGS} |
| 3709 | # CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS} |
| 3710 | # LDFLAGS: ${OUR_LDFLAGS} ${LDFLAGS} |
| 3711 | |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 3712 | if conf.get('ENABLE_EFI') == 1 |
Zbigniew Jędrzejewski-Szmek | 5a8b164 | 2018-07-31 09:44:11 +0200 | [diff] [blame] | 3713 | status += 'efi arch: @0@'.format(efi_arch) |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3714 | |
| 3715 | if have_gnu_efi |
| 3716 | status += [ |
| 3717 | 'EFI machine type: @0@'.format(EFI_MACHINE_TYPE_NAME), |
Zbigniew Jędrzejewski-Szmek | c512dfb | 2018-12-18 00:02:11 +0100 | [diff] [blame] | 3718 | 'EFI CC @0@'.format(' '.join(efi_cc)), |
Zbigniew Jędrzejewski-Szmek | ce4121c | 2020-02-03 20:38:54 +0100 | [diff] [blame] | 3719 | 'EFI lds: @0@'.format(efi_lds), |
| 3720 | 'EFI crt0: @0@'.format(efi_crt0), |
Yu Watanabe | 359b496 | 2017-11-25 20:35:24 +0900 | [diff] [blame] | 3721 | 'EFI include directory: @0@'.format(efi_incdir)] |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3722 | endif |
| 3723 | endif |
| 3724 | |
| 3725 | found = [] |
| 3726 | missing = [] |
| 3727 | |
| 3728 | foreach tuple : [ |
| 3729 | ['libcryptsetup'], |
| 3730 | ['PAM'], |
Lennart Poettering | 70a5db5 | 2019-07-04 18:35:39 +0200 | [diff] [blame] | 3731 | ['pwquality'], |
Yu Watanabe | c757517 | 2020-01-31 00:03:38 +0900 | [diff] [blame] | 3732 | ['libfdisk'], |
Lennart Poettering | 839fddb | 2019-11-05 11:49:27 +0100 | [diff] [blame] | 3733 | ['p11kit'], |
Lennart Poettering | af4fbd4 | 2020-04-14 15:54:52 +0200 | [diff] [blame] | 3734 | ['libfido2'], |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3735 | ['AUDIT'], |
| 3736 | ['IMA'], |
| 3737 | ['AppArmor'], |
| 3738 | ['SELinux'], |
| 3739 | ['SECCOMP'], |
| 3740 | ['SMACK'], |
| 3741 | ['zlib'], |
| 3742 | ['xz'], |
Norbert Lange | ef5924a | 2020-04-12 01:09:05 +0200 | [diff] [blame] | 3743 | ['zstd'], |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3744 | ['lz4'], |
| 3745 | ['bzip2'], |
| 3746 | ['ACL'], |
| 3747 | ['gcrypt'], |
| 3748 | ['qrencode'], |
| 3749 | ['microhttpd'], |
| 3750 | ['gnutls'], |
Iwan Timmer | 096cbdc | 2018-07-26 22:47:50 +0100 | [diff] [blame] | 3751 | ['openssl'], |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3752 | ['libcurl'], |
Zbigniew Jędrzejewski-Szmek | d1bf567 | 2017-06-16 09:16:28 -0400 | [diff] [blame] | 3753 | ['idn'], |
Norbert Lange | cdf7ad3 | 2020-04-08 23:59:13 +0200 | [diff] [blame] | 3754 | ['initrd'], |
Zbigniew Jędrzejewski-Szmek | 53393c8 | 2020-09-25 16:31:42 +0200 | [diff] [blame] | 3755 | ['compat-mutable-uid-boundaries'], |
Zbigniew Jędrzejewski-Szmek | 87057e2 | 2017-05-09 21:56:34 -0400 | [diff] [blame] | 3756 | ['libidn2'], |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3757 | ['libidn'], |
| 3758 | ['libiptc'], |
| 3759 | ['elfutils'], |
| 3760 | ['binfmt'], |
Lennart Poettering | e594a3b | 2019-12-10 21:31:41 +0100 | [diff] [blame] | 3761 | ['repart'], |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3762 | ['vconsole'], |
| 3763 | ['quotacheck'], |
| 3764 | ['tmpfiles'], |
| 3765 | ['environment.d'], |
| 3766 | ['sysusers'], |
| 3767 | ['firstboot'], |
| 3768 | ['randomseed'], |
| 3769 | ['backlight'], |
| 3770 | ['rfkill'], |
Benjamin Berg | 8feca24 | 2020-03-25 16:59:40 +0100 | [diff] [blame] | 3771 | ['xdg-autostart'], |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3772 | ['logind'], |
| 3773 | ['machined'], |
Lennart Poettering | 61d0578 | 2018-04-16 21:41:40 +0200 | [diff] [blame] | 3774 | ['portabled'], |
Lennart Poettering | d093b62 | 2019-07-04 18:33:30 +0200 | [diff] [blame] | 3775 | ['userdb'], |
Lennart Poettering | 70a5db5 | 2019-07-04 18:35:39 +0200 | [diff] [blame] | 3776 | ['homed'], |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3777 | ['importd'], |
| 3778 | ['hostnamed'], |
| 3779 | ['timedated'], |
| 3780 | ['timesyncd'], |
| 3781 | ['localed'], |
| 3782 | ['networkd'], |
Yu Watanabe | a7456af | 2017-10-06 16:33:21 +0900 | [diff] [blame] | 3783 | ['resolve'], |
Iwan Timmer | 096cbdc | 2018-07-26 22:47:50 +0100 | [diff] [blame] | 3784 | ['DNS-over-TLS(gnutls)', conf.get('DNS_OVER_TLS_USE_GNUTLS') == 1], |
| 3785 | ['DNS-over-TLS(openssl)', conf.get('DNS_OVER_TLS_USE_OPENSSL') == 1], |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3786 | ['coredump'], |
Eric DeVolder | 9b4abc6 | 2019-05-16 08:59:01 -0500 | [diff] [blame] | 3787 | ['pstore'], |
Anita Zhang | 61ff739 | 2020-03-07 17:25:35 -0800 | [diff] [blame] | 3788 | ['oomd'], |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3789 | ['polkit'], |
| 3790 | ['legacy pkla', install_polkit_pkla], |
| 3791 | ['efi'], |
| 3792 | ['gnu-efi', have_gnu_efi], |
| 3793 | ['kmod'], |
| 3794 | ['xkbcommon'], |
Zbigniew Jędrzejewski-Szmek | c4c978a | 2018-01-12 05:47:17 +0100 | [diff] [blame] | 3795 | ['pcre2'], |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3796 | ['blkid'], |
| 3797 | ['dbus'], |
| 3798 | ['glib'], |
Zbigniew Jędrzejewski-Szmek | 6bd2bc8 | 2018-08-07 18:10:53 +0200 | [diff] [blame] | 3799 | ['nss-myhostname'], |
| 3800 | ['nss-mymachines'], |
| 3801 | ['nss-resolve'], |
| 3802 | ['nss-systemd'], |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3803 | ['hwdb'], |
| 3804 | ['tpm'], |
| 3805 | ['man pages', want_man], |
| 3806 | ['html pages', want_html], |
| 3807 | ['man page indices', want_man and have_lxml], |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3808 | ['SysV compat'], |
| 3809 | ['utmp'], |
| 3810 | ['ldconfig'], |
| 3811 | ['hibernate'], |
| 3812 | ['adm group', get_option('adm-group')], |
| 3813 | ['wheel group', get_option('wheel-group')], |
Franck Bui | b14e1b4 | 2017-05-09 14:02:37 +0200 | [diff] [blame] | 3814 | ['gshadow'], |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3815 | ['debug hashmap'], |
| 3816 | ['debug mmap cache'], |
Yu Watanabe | d660149 | 2018-11-23 00:36:35 +0900 | [diff] [blame] | 3817 | ['debug siphash'], |
Zbigniew Jędrzejewski-Szmek | d18cb39 | 2018-05-13 22:28:24 +0200 | [diff] [blame] | 3818 | ['valgrind', conf.get('VALGRIND') == 1], |
Zbigniew Jędrzejewski-Szmek | fd5dec9 | 2018-08-07 17:34:47 +0200 | [diff] [blame] | 3819 | ['trace logging', conf.get('LOG_TRACE') == 1], |
Zbigniew Jędrzejewski-Szmek | b6261be | 2019-12-16 17:01:17 +0100 | [diff] [blame] | 3820 | ['install tests', install_tests], |
Lennart Poettering | 19d8c9c | 2018-10-05 16:38:42 +0200 | [diff] [blame] | 3821 | ['link-udev-shared', get_option('link-udev-shared')], |
| 3822 | ['link-systemctl-shared', get_option('link-systemctl-shared')], |
Robert Scheck | 5ac8b50 | 2020-01-08 02:36:07 +0100 | [diff] [blame] | 3823 | ['link-networkd-shared', get_option('link-networkd-shared')], |
Robert Scheck | fd74a13 | 2020-02-08 14:02:09 +0100 | [diff] [blame] | 3824 | ['link-timesyncd-shared', get_option('link-timesyncd-shared')], |
Jakov Smolic | f30bf4d | 2020-04-15 17:58:25 +0200 | [diff] [blame] | 3825 | ['kernel-install', get_option('kernel-install')], |
Zbigniew Jędrzejewski-Szmek | b3259a6 | 2020-08-20 17:35:50 +0200 | [diff] [blame] | 3826 | ['systemd-analyze', conf.get('ENABLE_ANALYZE') == 1], |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3827 | ] |
| 3828 | |
Zbigniew Jędrzejewski-Szmek | af4d786 | 2018-03-09 14:21:08 +0100 | [diff] [blame] | 3829 | if tuple.length() >= 2 |
| 3830 | cond = tuple[1] |
| 3831 | else |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3832 | ident1 = 'HAVE_' + tuple[0].underscorify().to_upper() |
| 3833 | ident2 = 'ENABLE_' + tuple[0].underscorify().to_upper() |
Zbigniew Jędrzejewski-Szmek | 349cc4a | 2017-10-03 10:41:51 +0200 | [diff] [blame] | 3834 | 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] | 3835 | endif |
| 3836 | if cond |
Zbigniew Jędrzejewski-Szmek | 5a8b164 | 2018-07-31 09:44:11 +0200 | [diff] [blame] | 3837 | found += tuple[0] |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3838 | else |
Zbigniew Jędrzejewski-Szmek | 5a8b164 | 2018-07-31 09:44:11 +0200 | [diff] [blame] | 3839 | missing += tuple[0] |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3840 | endif |
| 3841 | endforeach |
| 3842 | |
| 3843 | status += [ |
Zbigniew Jędrzejewski-Szmek | 9d39c1b | 2017-07-26 14:14:44 -0400 | [diff] [blame] | 3844 | '', |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3845 | 'enabled features: @0@'.format(', '.join(found)), |
Zbigniew Jędrzejewski-Szmek | 9d39c1b | 2017-07-26 14:14:44 -0400 | [diff] [blame] | 3846 | '', |
| 3847 | 'disabled features: @0@'.format(', '.join(missing)), |
| 3848 | ''] |
Zbigniew Jędrzejewski-Szmek | 829257d | 2017-04-27 20:54:52 -0400 | [diff] [blame] | 3849 | message('\n '.join(status)) |
Zbigniew Jędrzejewski-Szmek | 9a8e64b | 2017-11-28 21:46:53 +0100 | [diff] [blame] | 3850 | |
| 3851 | if rootprefixdir != rootprefix_default |
Yu Watanabe | 8ea9fad | 2018-05-10 14:50:52 +0900 | [diff] [blame] | 3852 | warning('\n' + |
| 3853 | 'Note that the installation prefix was changed to "@0@".\n'.format(rootprefixdir) + |
| 3854 | 'systemd used fixed names for unit file directories and other paths, so anything\n' + |
| 3855 | 'except the default ("@0@") is strongly discouraged.'.format(rootprefix_default)) |
Zbigniew Jędrzejewski-Szmek | 9a8e64b | 2017-11-28 21:46:53 +0100 | [diff] [blame] | 3856 | endif |