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