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