blob: 0f90da1ee912001c307f92864e7921aefa2d4b41 [file] [log] [blame]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001project('systemd', 'c',
2 version : '233',
3 license : 'LGPLv2+',
4 default_options: [
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04005 'c_std=gnu99',
6 'prefix=/usr',
7 'sysconfdir=/etc',
8 'localstatedir=/var',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04009 ],
Zbigniew Jędrzejewski-Szmekd730e2d2017-04-25 08:49:58 -040010 meson_version : '>= 0.40',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -040011 )
12
13# We need the same data in three different formats, ugh!
14# Also, for hysterical reasons, we use different variable
15# names, sometimes. Not all variables are included in every
16# set. Ugh, ugh, ugh!
17conf = configuration_data()
18conf.set_quoted('PACKAGE_STRING', meson.project_name() + ' ' + meson.project_version())
19conf.set_quoted('PACKAGE_VERSION', meson.project_version())
20
21substs = configuration_data()
22substs.set('PACKAGE_URL', 'https://www.freedesktop.org/wiki/Software/systemd')
23substs.set('PACKAGE_VERSION', meson.project_version())
24
25m4_defines = []
26
27#####################################################################
28
Zbigniew Jędrzejewski-Szmekab916f22017-04-13 22:15:01 -040029rootprefixdir = get_option('rootprefix')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -040030if get_option('split-usr')
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -040031 conf.set('HAVE_SPLIT_USR', true)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -040032 rootprefixdir = rootprefixdir != '' ? rootprefixdir : '/'
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -040033else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -040034 rootprefixdir = rootprefixdir != '' ? rootprefixdir : '/usr'
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -040035endif
36
37sysvinit_path = get_option('sysvinit-path')
38sysvrcnd_path = get_option('sysvrcnd-path')
39if sysvinit_path != '' or sysvrcnd_path != ''
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -040040 conf.set('HAVE_SYSV_COMPAT', true,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -040041 description : 'SysV init scripts and rcN.d links are supported')
42 m4_defines += ['-DHAVE_SYSV_COMPAT']
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -040043endif
44
45# join_paths ignore the preceding arguments if an absolute component is
46# encountered, so this should canonicalize various paths when they are
47# absolute or relative.
48prefixdir = get_option('prefix')
49if not prefixdir.startswith('/')
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -040050 error('Prefix is not absolute: "@0@"'.format(prefixdir))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -040051endif
52bindir = join_paths(prefixdir, get_option('bindir'))
53libdir = join_paths(prefixdir, get_option('libdir'))
54sysconfdir = join_paths(prefixdir, get_option('sysconfdir'))
55includedir = join_paths(prefixdir, get_option('includedir'))
56datadir = join_paths(prefixdir, get_option('datadir'))
57localstatedir = join_paths('/', get_option('localstatedir'))
58
59rootbindir = join_paths(rootprefixdir, 'bin')
60rootlibexecdir = join_paths(rootprefixdir, 'lib/systemd')
61
62rootlibdir = get_option('rootlibdir')
63if rootlibdir == ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -040064 rootlibdir = join_paths(rootprefixdir, libdir.split('/')[-1])
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -040065endif
66
67# Dirs of external packages
Michael Bieble17e5ba2017-04-13 10:30:56 -040068pkgconfigdatadir = join_paths(datadir, 'pkgconfig')
69pkgconfiglibdir = join_paths(libdir, 'pkgconfig')
70polkitpolicydir = join_paths(datadir, 'polkit-1/actions')
71polkitrulesdir = join_paths(datadir, 'polkit-1/rules.d')
72polkitpkladir = join_paths(localstatedir, 'lib/polkit-1/localauthority/10-vendor.d')
73varlogdir = join_paths(localstatedir, 'log')
74xinitrcdir = join_paths(sysconfdir, 'X11/xinit/xinitrc.d')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -040075rpmmacrosdir = get_option('rpmmacrosdir')
76
77# Our own paths
Michael Bieble17e5ba2017-04-13 10:30:56 -040078pkgdatadir = join_paths(datadir, 'systemd')
79environmentdir = join_paths(prefixdir, 'lib/environment.d')
80pkgsysconfdir = join_paths(sysconfdir, 'systemd')
81userunitdir = join_paths(prefixdir, 'lib/systemd/user')
82userpresetdir = join_paths(prefixdir, 'lib/systemd/user-preset')
83tmpfilesdir = join_paths(prefixdir, 'lib/tmpfiles.d')
84sysusersdir = join_paths(prefixdir, 'lib/sysusers.d')
85sysctldir = join_paths(prefixdir, 'lib/sysctl.d')
86binfmtdir = join_paths(prefixdir, 'lib/binfmt.d')
87modulesloaddir = join_paths(prefixdir, 'lib/modules-load.d')
88networkdir = join_paths(rootprefixdir, 'lib/systemd/network')
89pkgincludedir = join_paths(includedir, 'systemd')
90systemgeneratordir = join_paths(rootlibexecdir, 'system-generators')
91usergeneratordir = join_paths(prefixdir, 'lib/systemd/user-generators')
92systemenvgeneratordir = join_paths(prefixdir, 'lib/systemd/system-environment-generators')
93userenvgeneratordir = join_paths(prefixdir, 'lib/systemd/user-environment-generators')
94systemshutdowndir = join_paths(rootlibexecdir, 'system-shutdown')
95systemsleepdir = join_paths(rootlibexecdir, 'system-sleep')
96systemunitdir = join_paths(rootprefixdir, 'lib/systemd/system')
97systempresetdir = join_paths(rootprefixdir, 'lib/systemd/system-preset')
98udevlibexecdir = join_paths(rootprefixdir, 'lib/udev')
99udevhomedir = udevlibexecdir
100udevrulesdir = join_paths(udevlibexecdir, 'rules.d')
101udevhwdbdir = join_paths(udevlibexecdir, 'hwdb.d')
102catalogdir = join_paths(prefixdir, 'lib/systemd/catalog')
103kernelinstalldir = join_paths(prefixdir, 'lib/kernel/install.d')
104factorydir = join_paths(datadir, 'factory')
105docdir = join_paths(datadir, 'doc/systemd')
106bootlibdir = join_paths(prefixdir, 'lib/systemd/boot/efi')
107testsdir = join_paths(prefixdir, 'lib/systemd/tests')
108systemdstatedir = join_paths(localstatedir, 'lib/systemd')
109catalogstatedir = join_paths(systemdstatedir, 'catalog')
110randomseeddir = join_paths(localstatedir, 'lib/systemd')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400111
112dbuspolicydir = get_option('dbuspolicydir')
113if dbuspolicydir == ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400114 dbuspolicydir = join_paths(datadir, 'dbus-1/system.d')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400115endif
116
117dbussessionservicedir = get_option('dbussessionservicedir')
118if dbussessionservicedir == ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400119 dbussessionservicedir = join_paths(datadir, 'dbus-1/services')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400120endif
121
122dbussystemservicedir = get_option('dbussystemservicedir')
123if dbussystemservicedir == ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400124 dbussystemservicedir = join_paths(datadir, 'dbus-1/system-services')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400125endif
126
127pamlibdir = get_option('pamlibdir')
128if pamlibdir == ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400129 pamlibdir = join_paths(rootlibdir, 'security')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400130endif
131
132pamconfdir = get_option('pamconfdir')
133if pamconfdir == ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400134 pamconfdir = join_paths(sysconfdir, 'pam.d')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400135endif
136
137conf.set_quoted('PKGSYSCONFDIR', pkgsysconfdir)
Michael Bieble17e5ba2017-04-13 10:30:56 -0400138conf.set_quoted('SYSTEM_CONFIG_UNIT_PATH', join_paths(pkgsysconfdir, 'system'))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400139conf.set_quoted('SYSTEM_DATA_UNIT_PATH', systemunitdir)
140conf.set_quoted('SYSTEM_SYSVINIT_PATH', sysvinit_path)
141conf.set_quoted('SYSTEM_SYSVRCND_PATH', sysvrcnd_path)
Zbigniew Jędrzejewski-Szmek2a4c1562017-04-12 19:54:33 -0400142conf.set_quoted('RC_LOCAL_SCRIPT_PATH_START', get_option('rc-local'))
143conf.set_quoted('RC_LOCAL_SCRIPT_PATH_STOP', get_option('halt-local'))
Michael Bieble17e5ba2017-04-13 10:30:56 -0400144conf.set_quoted('USER_CONFIG_UNIT_PATH', join_paths(pkgsysconfdir, 'user'))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400145conf.set_quoted('USER_DATA_UNIT_PATH', userunitdir)
146conf.set_quoted('CERTIFICATE_ROOT', get_option('certificate-root'))
Michael Bieble17e5ba2017-04-13 10:30:56 -0400147conf.set_quoted('CATALOG_DATABASE', join_paths(catalogstatedir, 'database'))
148conf.set_quoted('SYSTEMD_CGROUP_AGENT_PATH', join_paths(rootlibexecdir, 'systemd-cgroups-agent'))
149conf.set_quoted('SYSTEMD_BINARY_PATH', join_paths(rootlibexecdir, 'systemd'))
150conf.set_quoted('SYSTEMD_FSCK_PATH', join_paths(rootlibexecdir, 'systemd-fsck'))
151conf.set_quoted('SYSTEMD_SHUTDOWN_BINARY_PATH', join_paths(rootlibexecdir, 'systemd-shutdown'))
152conf.set_quoted('SYSTEMD_SLEEP_BINARY_PATH', join_paths(rootlibexecdir, 'systemd-sleep'))
153conf.set_quoted('SYSTEMCTL_BINARY_PATH', join_paths(rootbindir, 'systemctl'))
154conf.set_quoted('SYSTEMD_TTY_ASK_PASSWORD_AGENT_BINARY_PATH', join_paths(rootbindir, 'systemd-tty-ask-password-agent'))
155conf.set_quoted('SYSTEMD_STDIO_BRIDGE_BINARY_PATH', join_paths(bindir, 'systemd-stdio-bridge'))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400156conf.set_quoted('ROOTPREFIX', rootprefixdir)
Zbigniew Jędrzejewski-Szmek3131bfe2017-04-10 19:06:45 -0400157conf.set_quoted('RANDOM_SEED_DIR', randomseeddir)
Michael Bieble17e5ba2017-04-13 10:30:56 -0400158conf.set_quoted('RANDOM_SEED', join_paths(randomseeddir, 'random-seed'))
159conf.set_quoted('SYSTEMD_CRYPTSETUP_PATH', join_paths(rootlibexecdir, 'systemd-cryptsetup'))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400160conf.set_quoted('SYSTEM_GENERATOR_PATH', systemgeneratordir)
161conf.set_quoted('USER_GENERATOR_PATH', usergeneratordir)
162conf.set_quoted('SYSTEM_ENV_GENERATOR_PATH', systemenvgeneratordir)
163conf.set_quoted('USER_ENV_GENERATOR_PATH', userenvgeneratordir)
164conf.set_quoted('SYSTEM_SHUTDOWN_PATH', systemshutdowndir)
165conf.set_quoted('SYSTEM_SLEEP_PATH', systemsleepdir)
Michael Bieble17e5ba2017-04-13 10:30:56 -0400166conf.set_quoted('SYSTEMD_KBD_MODEL_MAP', join_paths(pkgdatadir, 'kbd-model-map'))
167conf.set_quoted('SYSTEMD_LANGUAGE_FALLBACK_MAP', join_paths(pkgdatadir, 'language-fallback-map'))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400168conf.set_quoted('UDEVLIBEXECDIR', udevlibexecdir)
Michael Bieble17e5ba2017-04-13 10:30:56 -0400169conf.set_quoted('POLKIT_AGENT_BINARY_PATH', join_paths(bindir, 'pkttyagent'))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400170conf.set_quoted('LIBDIR', libdir)
171conf.set_quoted('ROOTLIBDIR', rootlibdir)
172conf.set_quoted('ROOTLIBEXECDIR', rootlibexecdir)
173conf.set_quoted('BOOTLIBDIR', bootlibdir)
Michael Bieble17e5ba2017-04-13 10:30:56 -0400174conf.set_quoted('SYSTEMD_PULL_PATH', join_paths(rootlibexecdir, 'systemd-pull'))
175conf.set_quoted('SYSTEMD_IMPORT_PATH', join_paths(rootlibexecdir, 'systemd-import'))
176conf.set_quoted('SYSTEMD_EXPORT_PATH', join_paths(rootlibexecdir, 'systemd-export'))
177conf.set_quoted('VENDOR_KEYRING_PATH', join_paths(rootlibexecdir, 'import-pubring.gpg'))
178conf.set_quoted('USER_KEYRING_PATH', join_paths(pkgsysconfdir, 'import-pubring.gpg'))
179conf.set_quoted('DOCUMENT_ROOT', join_paths(pkgdatadir, 'gatewayd'))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400180
181conf.set_quoted('ABS_BUILD_DIR', meson.build_root())
182conf.set_quoted('ABS_SRC_DIR', meson.source_root())
183
184substs.set('prefix', prefixdir)
Zbigniew Jędrzejewski-Szmek3131bfe2017-04-10 19:06:45 -0400185substs.set('exec_prefix', prefixdir)
186substs.set('libdir', libdir)
187substs.set('rootlibdir', rootlibdir)
188substs.set('includedir', includedir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400189substs.set('pkgsysconfdir', pkgsysconfdir)
Zbigniew Jędrzejewski-Szmek3131bfe2017-04-10 19:06:45 -0400190substs.set('bindir', bindir)
191substs.set('rootbindir', rootbindir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400192substs.set('rootlibexecdir', rootlibexecdir)
193substs.set('systemunitdir', systemunitdir)
194substs.set('userunitdir', userunitdir)
195substs.set('systempresetdir', systempresetdir)
196substs.set('userpresetdir', userpresetdir)
197substs.set('udevhwdbdir', udevhwdbdir)
198substs.set('udevrulesdir', udevrulesdir)
Zbigniew Jędrzejewski-Szmek3131bfe2017-04-10 19:06:45 -0400199substs.set('udevlibexecdir', udevlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400200substs.set('catalogdir', catalogdir)
201substs.set('tmpfilesdir', tmpfilesdir)
202substs.set('sysusersdir', sysusersdir)
203substs.set('sysctldir', sysctldir)
204substs.set('binfmtdir', binfmtdir)
205substs.set('modulesloaddir', modulesloaddir)
206substs.set('systemgeneratordir', systemgeneratordir)
207substs.set('usergeneratordir', usergeneratordir)
208substs.set('systemenvgeneratordir', systemenvgeneratordir)
209substs.set('userenvgeneratordir', userenvgeneratordir)
210substs.set('systemshutdowndir', systemshutdowndir)
211substs.set('systemsleepdir', systemsleepdir)
Zbigniew Jędrzejewski-Szmek2a4c1562017-04-12 19:54:33 -0400212substs.set('VARLOGDIR', varlogdir)
213substs.set('CERTIFICATEROOT', get_option('certificate-root'))
Michael Bieble17e5ba2017-04-13 10:30:56 -0400214substs.set('SYSTEMCTL', join_paths(rootbindir, 'systemctl'))
215substs.set('RANDOM_SEED', join_paths(randomseeddir, 'random-seed'))
Zbigniew Jędrzejewski-Szmek2a4c1562017-04-12 19:54:33 -0400216substs.set('SYSTEM_SYSVINIT_PATH', sysvinit_path)
217substs.set('SYSTEM_SYSVRCND_PATH', sysvrcnd_path)
218substs.set('RC_LOCAL_SCRIPT_PATH_START', get_option('rc-local'))
219substs.set('RC_LOCAL_SCRIPT_PATH_STOP', get_option('halt-local'))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400220
221#####################################################################
222
223cc = meson.get_compiler('c')
224pkgconfig = import('pkgconfig')
Zbigniew Jędrzejewski-Szmek6e2afb12017-04-24 21:03:35 -0400225check_compilation_sh = find_program('tools/meson-check-compilation.sh')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400226
Zbigniew Jędrzejewski-Szmek94e25232017-05-13 13:23:28 -0400227cxx = find_program('c++', required : false)
228if cxx.found()
229 # Used only for tests
230 add_languages('cpp')
231endif
232
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400233foreach arg : ['-Wundef',
234 '-Wlogical-op',
235 '-Wmissing-include-dirs',
236 '-Wold-style-definition',
237 '-Wpointer-arith',
238 '-Winit-self',
239 '-Wdeclaration-after-statement',
240 '-Wfloat-equal',
241 '-Wsuggest-attribute=noreturn',
242 '-Werror=missing-prototypes',
243 '-Werror=implicit-function-declaration',
244 '-Werror=missing-declarations',
245 '-Werror=return-type',
246 '-Werror=incompatible-pointer-types',
247 '-Werror=format=2',
248 '-Wstrict-prototypes',
249 '-Wredundant-decls',
250 '-Wmissing-noreturn',
251 '-Wshadow',
252 '-Wendif-labels',
253 '-Wstrict-aliasing=2',
254 '-Wwrite-strings',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400255 '-Werror=overflow',
256 '-Wdate-time',
257 '-Wnested-externs',
258 '-ffast-math',
259 '-fno-common',
260 '-fdiagnostics-show-option',
261 '-fno-strict-aliasing',
262 '-fvisibility=hidden',
263 '-fstack-protector',
264 '-fstack-protector-strong',
265 '-fPIE',
266 '--param=ssp-buffer-size=4',
267 ]
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400268 if cc.has_argument(arg)
269 add_project_arguments(arg, language : 'c')
270 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400271endforeach
272
Zbigniew Jędrzejewski-Szmek2c5434a2017-04-27 10:05:41 -0400273# "negative" arguments: gcc on purpose does not return an error for "-Wno-"
274# arguments, just emits a warnings. So test for the "positive" version instead.
275foreach arg : ['unused-parameter',
276 'missing-field-initializers',
277 'unused-result',
278 'format-signedness']
279 if cc.has_argument('-W' + arg)
280 add_project_arguments('-Wno-' + arg, language : 'c')
281 endif
282endforeach
283
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400284if cc.compiles('
285 #include <time.h>
286 #include <inttypes.h>
287 typedef uint64_t usec_t;
288 usec_t now(clockid_t clock);
289 int main(void) {
290 struct timespec now;
291 return 0;
292 }
Zbigniew Jędrzejewski-Szmek7572aa82017-04-24 21:46:40 -0400293', name : '-Werror=shadow with local shadowing')
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400294 add_project_arguments('-Werror=shadow', language : 'c')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400295endif
296
297if cc.get_id() == 'clang'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400298 foreach arg : ['-Wno-typedef-redefinition',
299 '-Wno-gnu-variable-sized-type-not-at-end',
300 ]
Zbigniew Jędrzejewski-Szmek7572aa82017-04-24 21:46:40 -0400301 if cc.has_argument(arg,
302 name : '@0@ is supported'.format(arg))
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400303 add_project_arguments(arg, language : 'c')
304 endif
305 endforeach
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400306endif
307
Zbigniew Jędrzejewski-Szmek6e2afb12017-04-24 21:03:35 -0400308link_test_c = files('tools/meson-link-test.c')
309
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400310# --as-needed and --no-undefined are provided by meson by default,
311# run mesonconf to see what is enabled
312foreach arg : ['-Wl,-z,relro',
313 '-Wl,-z,now',
314 '-pie',
315 '-Wl,-fuse-ld=gold',
316 ]
Zbigniew Jędrzejewski-Szmek6e2afb12017-04-24 21:03:35 -0400317
318 have = run_command(check_compilation_sh,
319 cc.cmd_array(), '-x', 'c', arg,
320 '-include', link_test_c).returncode() == 0
321 message('Linking with @0@ supported: @1@'.format(arg, have ? 'yes' : 'no'))
322 if have
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400323 add_project_link_arguments(arg, language : 'c')
324 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400325endforeach
326
Zbigniew Jędrzejewski-Szmek41afb5e2017-04-24 19:28:04 -0400327if get_option('buildtype') != 'debug'
328 foreach arg : ['-ffunction-sections',
329 '-fdata-sections']
Zbigniew Jędrzejewski-Szmek7572aa82017-04-24 21:46:40 -0400330 if cc.has_argument(arg,
331 name : '@0@ is supported'.format(arg))
Zbigniew Jędrzejewski-Szmek41afb5e2017-04-24 19:28:04 -0400332 add_project_arguments(arg, language : 'c')
333 endif
334 endforeach
335
336 foreach arg : ['-Wl,--gc-sections']
Zbigniew Jędrzejewski-Szmek6e2afb12017-04-24 21:03:35 -0400337 have = run_command(check_compilation_sh,
338 cc.cmd_array(), '-x', 'c', arg,
339 '-include', link_test_c).returncode() == 0
340 message('Linking with @0@ supported: @1@'.format(arg, have ? 'yes' : 'no'))
341 if have
Zbigniew Jędrzejewski-Szmek41afb5e2017-04-24 19:28:04 -0400342 add_project_link_arguments(arg, language : 'c')
343 endif
344 endforeach
345endif
346
Zbigniew Jędrzejewski-Szmek9cc0e6e2017-04-11 10:25:34 -0400347cpp = ' '.join(cc.cmd_array()) + ' -E'
348
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400349#####################################################################
350# compilation result tests
351
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400352conf.set('_GNU_SOURCE', true)
353conf.set('__SANE_USERSPACE_TYPES__', true)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400354
355conf.set('SIZEOF_PID_T', cc.sizeof('pid_t', prefix : '#include <sys/types.h>'))
356conf.set('SIZEOF_UID_T', cc.sizeof('uid_t', prefix : '#include <sys/types.h>'))
357conf.set('SIZEOF_GID_T', cc.sizeof('gid_t', prefix : '#include <sys/types.h>'))
358conf.set('SIZEOF_DEV_T', cc.sizeof('dev_t', prefix : '#include <sys/types.h>'))
359conf.set('SIZEOF_INO_T', cc.sizeof('ino_t', prefix : '#include <sys/types.h>'))
360conf.set('SIZEOF_TIME_T', cc.sizeof('time_t', prefix : '#include <sys/time.h>'))
361conf.set('SIZEOF_RLIM_T', cc.sizeof('rlim_t', prefix : '#include <sys/resource.h>'))
362
363decl_headers = '''
364#include <uchar.h>
365#include <linux/ethtool.h>
366'''
367# FIXME: key_serial_t is only defined in keyutils.h, this is bound to fail
368
369foreach decl : ['char16_t',
370 'char32_t',
371 'key_serial_t',
372 'struct ethtool_link_settings',
373 ]
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400374
375 # We get -1 if the size cannot be determined
376 have = cc.sizeof(decl, prefix : decl_headers) > 0
377 conf.set('HAVE_' + decl.underscorify().to_upper(), have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400378endforeach
379
380foreach decl : [['IFLA_INET6_ADDR_GEN_MODE', 'linux/if_link.h'],
381 ['IN6_ADDR_GEN_MODE_STABLE_PRIVACY', 'linux/if_link.h'],
382 ['IFLA_VRF_TABLE', 'linux/if_link.h'],
383 ['IFLA_MACVLAN_FLAGS', 'linux/if_link.h'],
384 ['IFLA_IPVLAN_MODE', 'linux/if_link.h'],
385 ['IFLA_PHYS_PORT_ID', 'linux/if_link.h'],
386 ['IFLA_BOND_AD_INFO', 'linux/if_link.h'],
387 ['IFLA_VLAN_PROTOCOL', 'linux/if_link.h'],
388 ['IFLA_VXLAN_REMCSUM_NOPARTIAL', 'linux/if_link.h'],
389 ['IFLA_VXLAN_GPE', 'linux/if_link.h'],
Susant Sahani9dfed8d2017-04-25 20:30:34 +0530390 ['IFLA_GENEVE_LABEL', 'linux/if_link.h'],
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400391 # if_tunnel.h is buggy and cannot be included on its own
392 ['IFLA_VTI_REMOTE', 'linux/if_tunnel.h', '#include <net/if.h>'],
393 ['IFLA_IPTUN_ENCAP_DPORT', 'linux/if_tunnel.h', '#include <net/if.h>'],
394 ['IFLA_GRE_ENCAP_DPORT', 'linux/if_tunnel.h', '#include <net/if.h>'],
395 ['IFLA_BRIDGE_VLAN_INFO', 'linux/if_bridge.h'],
396 ['IFLA_BRPORT_PROXYARP', 'linux/if_link.h'],
397 ['IFLA_BRPORT_LEARNING_SYNC', 'linux/if_link.h'],
398 ['IFLA_BR_VLAN_DEFAULT_PVID', 'linux/if_link.h'],
399 ['NDA_IFINDEX', 'linux/neighbour.h'],
400 ['IFA_FLAGS', 'linux/if_addr.h'],
401 ['LO_FLAGS_PARTSCAN', 'linux/loop.h'],
402 ]
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400403 prefix = decl.length() > 2 ? decl[2] : ''
404 have = cc.has_header_symbol(decl[1], decl[0], prefix : prefix)
405 conf.set10('HAVE_DECL_' + decl[0], have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400406endforeach
407
408skip = false
409foreach ident : ['secure_getenv', '__secure_getenv']
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400410 if not skip and cc.has_function(ident)
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400411 conf.set('HAVE_' + ident.to_upper(), true)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400412 skip = true
413 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400414endforeach
415
416foreach ident : [
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400417 ['memfd_create', '''#include <sys/memfd.h>'''],
418 ['gettid', '''#include <sys/types.h>'''],
419 ['pivot_root', '''#include <stdlib.h>'''], # no known header declares pivot_root
420 ['name_to_handle_at', '''#define _GNU_SOURCE
421 #include <sys/types.h>
422 #include <sys/stat.h>
423 #include <fcntl.h>'''],
424 ['setns', '''#define _GNU_SOURCE
425 #include <sched.h>'''],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400426 ['renameat2', '''#include <stdio.h>'''],
427 ['kcmp', '''#include <linux/kcmp.h>'''],
428 ['keyctl', '''#include <sys/types.h>
429 #include <keyutils.h>'''],
430 ['copy_file_range', '''#include <sys/syscall.h>
431 #include <unistd.h>'''],
Zbigniew Jędrzejewski-Szmek38f1ae02017-04-19 16:14:16 -0400432 ['explicit_bzero' , '''#include <string.h>'''],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400433]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400434
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400435 have = cc.has_function(ident[0], prefix : ident[1])
436 conf.set10('HAVE_DECL_' + ident[0].to_upper(), have)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400437endforeach
438
Zbigniew Jędrzejewski-Szmek4984c8b2017-04-19 21:20:54 -0400439if cc.has_function('getrandom', prefix : '''#include <sys/random.h>''')
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400440 conf.set('USE_SYS_RANDOM_H', true)
441 conf.set10('HAVE_DECL_GETRANDOM', true)
Zbigniew Jędrzejewski-Szmek4984c8b2017-04-19 21:20:54 -0400442else
443 have = cc.has_function('getrandom', prefix : '''#include <linux/random.h>''')
444 conf.set10('HAVE_DECL_GETRANDOM', have)
445endif
446
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400447#####################################################################
448
449sed = find_program('sed')
450grep = find_program('grep')
451awk = find_program('awk')
Zbigniew Jędrzejewski-Szmekd730e2d2017-04-25 08:49:58 -0400452m4 = find_program('m4')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400453stat = find_program('stat')
Zbigniew Jędrzejewski-Szmekd68b3422017-04-06 14:33:27 -0400454git = find_program('git', required : false)
455etags = find_program('etags', required : false)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400456
Zbigniew Jędrzejewski-Szmek7b76fce2017-04-09 23:55:50 -0400457meson_make_symlink = meson.source_root() + '/tools/meson-make-symlink.sh'
Zbigniew Jędrzejewski-Szmek94e75a52017-04-09 23:55:05 -0400458mkdir_p = 'mkdir -p $DESTDIR/@0@'
Zbigniew Jędrzejewski-Szmekd83f4f52017-04-16 12:04:46 -0400459test_efi_create_disk_sh = find_program('test/test-efi-create-disk.sh')
460splash_bmp = files('test/splash.bmp')
Zbigniew Jędrzejewski-Szmek94e75a52017-04-09 23:55:05 -0400461
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400462# if -Dxxx-path option is found, use that. Otherwise, check in $PATH,
463# /usr/sbin, /sbin, and fall back to the default from middle column.
464progs = [['telinit', '/lib/sysvinit/telinit'],
465 ['quotaon', '/usr/sbin/quotaon' ],
466 ['quotacheck', '/usr/sbin/quotacheck' ],
467 ['kill', '/usr/bin/kill' ],
468 ['kmod', '/usr/bin/kmod' ],
469 ['kexec', '/usr/sbin/kexec' ],
470 ['sulogin', '/usr/sbin/sulogin' ],
471 ['mount', '/usr/bin/mount', 'MOUNT_PATH'],
472 ['umount', '/usr/bin/umount', 'UMOUNT_PATH'],
473 ['loadkeys', '/usr/bin/loadkeys', 'KBD_LOADKEYS'],
474 ['setfont', '/usr/bin/setfont', 'KBD_SETFONT'],
475 ]
476foreach prog : progs
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400477 path = get_option(prog[0] + '-path')
478 if path != ''
479 message('Using @1@ for @0@'.format(prog[0], path))
480 else
481 exe = find_program(prog[0],
482 '/usr/sbin/' + prog[0],
483 '/sbin/' + prog[0],
484 required: false)
485 path = exe.found() ? exe.path() : prog[1]
486 endif
487 name = prog.length() > 2 ? prog[2] : prog[0].to_upper()
488 conf.set_quoted(name, path)
489 substs.set(name, path)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400490endforeach
491
Zbigniew Jędrzejewski-Szmek1276a9f2017-04-18 19:11:54 -0400492if run_command('ln', '--relative', '--help').returncode() != 0
493 error('ln does not support --relative')
494endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400495
496############################################################
497
498gperf = find_program('gperf')
499
500gperf_test_format = '''
501#include <string.h>
502const char * in_word_set(const char *, @0@);
503@1@
504'''
505gperf_snippet_format = 'echo foo,bar | @0@ -L ANSI-C'
506gperf_snippet = run_command('sh', '-c', gperf_snippet_format.format(gperf.path()))
507gperf_test = gperf_test_format.format('size_t', gperf_snippet.stdout())
508if cc.compiles(gperf_test)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400509 gperf_len_type = 'size_t'
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400510else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400511 gperf_test = gperf_test_format.format('unsigned', gperf_snippet.stdout())
512 if cc.compiles(gperf_test)
513 gperf_len_type = 'unsigned'
514 else
515 error('unable to determine gperf len type')
516 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400517endif
518message('gperf len type is @0@'.format(gperf_len_type))
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400519conf.set('GPERF_LEN_TYPE', gperf_len_type,
520 description : 'The type of gperf "len" parameter')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400521
522############################################################
523
524if not cc.has_header('sys/capability.h')
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400525 error('POSIX caps headers not found')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400526endif
527foreach header : ['linux/btrfs.h',
528 'linux/memfd.h',
529 'linux/vm_sockets.h',
530 'valgrind/memcheck.h',
531 'valgrind/valgrind.h',
532 ]
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400533
534 conf.set('HAVE_' + header.underscorify().to_upper(),
535 cc.has_header(header))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400536endforeach
537
538############################################################
539
540conf.set_quoted('FALLBACK_HOSTNAME', get_option('fallback-hostname'))
541
542default_hierarchy = get_option('default-hierarchy')
543conf.set_quoted('DEFAULT_HIERARCHY_NAME', default_hierarchy,
544 description : 'default cgroup hierarchy as string')
545if default_hierarchy == 'legacy'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400546 conf.set('DEFAULT_HIERARCHY', 'CGROUP_UNIFIED_NONE')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400547elif default_hierarchy == 'hybrid'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400548 conf.set('DEFAULT_HIERARCHY', 'CGROUP_UNIFIED_SYSTEMD')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400549else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400550 conf.set('DEFAULT_HIERARCHY', 'CGROUP_UNIFIED_ALL')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400551endif
552
553time_epoch = get_option('time-epoch')
554if time_epoch == ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400555 NEWS = files('NEWS')
556 time_epoch = run_command(stat, '-c', '%Y', NEWS).stdout()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400557endif
558time_epoch = time_epoch.to_int()
559conf.set('TIME_EPOCH', time_epoch)
560
561system_uid_max = get_option('system-uid-max')
562if system_uid_max == ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400563 system_uid_max = run_command(
564 awk,
565 'BEGIN { uid=999 } /^\s*SYS_UID_MAX\s+/ { uid=$2 } END { print uid }',
566 '/etc/login.defs').stdout()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400567endif
568system_uid_max = system_uid_max.to_int()
569conf.set('SYSTEM_UID_MAX', system_uid_max)
570substs.set('systemuidmax', system_uid_max)
Zbigniew Jędrzejewski-Szmek7572aa82017-04-24 21:46:40 -0400571message('maximum system UID is @0@'.format(system_uid_max))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400572
573conf.set_quoted('NOBODY_USER_NAME', get_option('nobody-user'))
574conf.set_quoted('NOBODY_GROUP_NAME', get_option('nobody-group'))
575
576system_gid_max = get_option('system-gid-max')
577if system_gid_max == ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400578 system_gid_max = run_command(
579 awk,
580 'BEGIN { gid=999 } /^\s*SYS_GID_MAX\s+/ { gid=$2 } END { print gid }',
581 '/etc/login.defs').stdout()
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400582endif
583system_gid_max = system_gid_max.to_int()
584conf.set('SYSTEM_GID_MAX', system_gid_max)
585substs.set('systemgidmax', system_gid_max)
Zbigniew Jędrzejewski-Szmek7572aa82017-04-24 21:46:40 -0400586message('maximum system GID is @0@'.format(system_gid_max))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400587
588tty_gid = get_option('tty-gid')
589conf.set('TTY_GID', tty_gid)
Zbigniew Jędrzejewski-Szmek2a4c1562017-04-12 19:54:33 -0400590substs.set('TTY_GID', tty_gid)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400591
592if get_option('adm-group')
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400593 m4_defines += ['-DENABLE_ADM_GROUP']
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400594endif
595
596if get_option('wheel-group')
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400597 m4_defines += ['-DENABLE_WHEEL_GROUP']
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400598endif
599
600substs.set('DEV_KVM_MODE', get_option('dev-kvm-mode'))
601
Zbigniew Jędrzejewski-Szmek2a4c1562017-04-12 19:54:33 -0400602kill_user_processes = get_option('default-kill-user-processes')
603conf.set10('KILL_USER_PROCESSES', kill_user_processes)
604substs.set('KILL_USER_PROCESSES', kill_user_processes ? 'yes' : 'no')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400605
606default_dnssec = get_option('default-dnssec')
607conf.set('DEFAULT_DNSSEC_MODE',
608 'DNSSEC_' + default_dnssec.underscorify().to_upper())
Zbigniew Jędrzejewski-Szmek2a4c1562017-04-12 19:54:33 -0400609substs.set('DEFAULT_DNSSEC_MODE', default_dnssec)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400610
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -0400611dns_servers = get_option('dns-servers')
612conf.set_quoted('DNS_SERVERS', dns_servers)
613substs.set('DNS_SERVERS', dns_servers)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400614
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -0400615ntp_servers = get_option('ntp-servers')
616conf.set_quoted('NTP_SERVERS', ntp_servers)
617substs.set('NTP_SERVERS', ntp_servers)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400618
619conf.set_quoted('GETTEXT_PACKAGE', meson.project_name())
620
Zbigniew Jędrzejewski-Szmek3131bfe2017-04-10 19:06:45 -0400621substs.set('SUSHELL', get_option('debug-shell'))
622substs.set('DEBUGTTY', get_option('debug-tty'))
623
Zbigniew Jędrzejewski-Szmek671677d2017-04-27 20:51:34 -0400624debug = get_option('debug')
625if debug != ''
626 foreach name : debug.split(',')
627 if name == 'hashmap'
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400628 conf.set('ENABLE_DEBUG_HASHMAP', true)
Zbigniew Jędrzejewski-Szmek671677d2017-04-27 20:51:34 -0400629 elif name == 'mmap-cache'
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400630 conf.set('ENABLE_DEBUG_MMAP_CACHE', true)
Zbigniew Jędrzejewski-Szmek671677d2017-04-27 20:51:34 -0400631 else
632 message('unknown debug option "@0@", ignoring'.format(name))
633 endif
634 endforeach
635endif
636
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400637#####################################################################
638
639threads = dependency('threads')
640librt = cc.find_library('rt')
641libm = cc.find_library('m')
642libdl = cc.find_library('dl')
643libcrypt = cc.find_library('crypt')
644
Zbigniew Jędrzejewski-Szmek1800cc82017-04-27 01:30:30 -0400645libcap = dependency('libcap', required : false)
646if not libcap.found()
647 # Compat with Ubuntu 14.04 which ships libcap w/o .pc file
648 libcap = cc.find_library('cap')
649endif
650
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400651libmount = dependency('mount',
652 version : '>= 2.27')
653
654want_seccomp = get_option('seccomp')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400655if want_seccomp != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400656 libseccomp = dependency('libseccomp',
Zbigniew Jędrzejewski-Szmek9f0e9c02017-04-27 10:05:18 -0400657 version : '>= 2.3.1',
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400658 required : want_seccomp == 'true')
659 if libseccomp.found()
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400660 conf.set('HAVE_SECCOMP', true)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400661 m4_defines += ['-DHAVE_SECCOMP']
662 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400663else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400664 libseccomp = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400665endif
666
667want_selinux = get_option('selinux')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400668if want_selinux != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400669 libselinux = dependency('libselinux',
670 version : '>= 2.1.9',
671 required : want_selinux == 'true')
672 if libselinux.found()
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400673 conf.set('HAVE_SELINUX', true)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400674 m4_defines += ['-DHAVE_SELINUX']
675 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400676else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400677 libselinux = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400678endif
679
680want_apparmor = get_option('apparmor')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400681if want_apparmor != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400682 libapparmor = dependency('libapparmor',
683 required : want_apparmor == 'true')
684 if libapparmor.found()
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400685 conf.set('HAVE_APPARMOR', true)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400686 m4_defines += ['-DHAVE_APPARMOR']
687 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400688else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400689 libapparmor = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400690endif
691
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400692smack_run_label = get_option('smack-run-label')
693if smack_run_label != ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400694 conf.set_quoted('SMACK_RUN_LABEL', smack_run_label)
695 m4_defines += ['-DHAVE_SMACK_RUN_LABEL']
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400696endif
697
Zbigniew Jędrzejewski-Szmek3ca0cb72017-04-12 19:09:26 -0400698want_polkit = get_option('polkit')
699install_polkit = false
700install_polkit_pkla = false
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400701if want_polkit != 'false'
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400702 conf.set('ENABLE_POLKIT', true)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400703 install_polkit = true
Zbigniew Jędrzejewski-Szmek3ca0cb72017-04-12 19:09:26 -0400704
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400705 libpolkit = dependency('polkit-gobject-1',
706 required : false)
707 if libpolkit.found() and libpolkit.version().version_compare('< 0.106')
708 message('Old polkit detected, will install pkla files')
709 install_polkit_pkla = true
710 endif
Zbigniew Jędrzejewski-Szmek3ca0cb72017-04-12 19:09:26 -0400711endif
712
Zbigniew Jędrzejewski-Szmek36f03872017-04-21 13:53:59 -0400713want_acl = get_option('acl')
714if want_acl != 'false'
715 libacl = cc.find_library('acl', required : want_acl == 'true')
716 if libacl.found()
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400717 conf.set('HAVE_ACL', true)
Zbigniew Jędrzejewski-Szmek36f03872017-04-21 13:53:59 -0400718 m4_defines += ['-DHAVE_ACL']
719 endif
720else
721 libacl = []
722endif
723
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400724want_audit = get_option('audit')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400725if want_audit != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400726 libaudit = dependency('audit', required : want_audit == 'true')
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400727 conf.set('HAVE_AUDIT', libaudit.found())
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400728else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400729 libaudit = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400730endif
731
732want_blkid = get_option('blkid')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400733if want_blkid != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400734 libblkid = dependency('blkid', required : want_blkid == 'true')
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400735 conf.set('HAVE_BLKID', libblkid.found())
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400736else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400737 libblkid = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400738endif
739
740want_kmod = get_option('kmod')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400741if want_kmod != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400742 libkmod = dependency('libkmod',
743 version : '>= 15',
744 required : want_kmod == 'true')
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400745 conf.set('HAVE_KMOD', libkmod.found())
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400746else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400747 libkmod = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400748endif
749
750want_pam = get_option('pam')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400751if want_pam != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400752 libpam = cc.find_library('pam', required : want_pam == 'true')
753 libpam_misc = cc.find_library('pam_misc', required : want_pam == 'true')
754 if libpam.found() and libpam_misc.found()
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400755 conf.set('HAVE_PAM', true)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400756 m4_defines += ['-DHAVE_PAM']
757 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400758else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400759 libpam = []
760 libpam_misc = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400761endif
762
763want_microhttpd = get_option('microhttpd')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400764if want_microhttpd != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400765 libmicrohttpd = dependency('libmicrohttpd',
766 version : '>= 0.9.33',
767 required : want_microhttpd == 'true')
768 if libmicrohttpd.found()
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400769 conf.set('HAVE_MICROHTTPD', true)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400770 m4_defines += ['-DHAVE_MICROHTTPD']
771 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400772else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400773 libmicrohttpd = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400774endif
775
776want_libcryptsetup = get_option('libcryptsetup')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400777if want_libcryptsetup != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400778 libcryptsetup = dependency('libcryptsetup',
779 version : '>= 1.6.0',
780 required : want_libcryptsetup == 'true')
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400781 conf.set('HAVE_LIBCRYPTSETUP', libcryptsetup.found())
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400782else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400783 libcryptsetup = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400784endif
785
786want_libcurl = get_option('libcurl')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400787if want_libcurl != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400788 libcurl = dependency('libcurl',
789 version : '>= 7.32.0',
790 required : want_libcurl == 'true')
791 if libcurl.found()
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400792 conf.set('HAVE_LIBCURL', true)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400793 m4_defines += ['-DHAVE_LIBCURL']
794 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400795else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400796 libcurl = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400797endif
798
799want_libidn = get_option('libidn')
Zbigniew Jędrzejewski-Szmek87057e22017-05-09 21:56:34 -0400800want_libidn2 = get_option('libidn2')
801if want_libidn == 'true' and want_libidn2 == 'true'
802 error('libidn and libidn2 cannot be requested simultaneously')
803endif
804
805if want_libidn2 != 'false' and want_libidn != 'true'
806 libidn = dependency('libidn2',
807 required : want_libidn2 == 'true')
808 # libidn is used for both libidn and libidn2 objects
809 if libidn.found()
810 conf.set('HAVE_LIBIDN2', true)
811 m4_defines += ['-DHAVE_LIBIDN2']
812 endif
813else
814 libidn = []
815endif
816if not conf.get('HAVE_LIBIDN2', false) and want_libidn != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400817 libidn = dependency('libidn',
818 required : want_libidn == 'true')
819 if libidn.found()
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400820 conf.set('HAVE_LIBIDN', true)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400821 m4_defines += ['-DHAVE_LIBIDN']
822 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400823endif
824
825want_libiptc = get_option('libiptc')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400826if want_libiptc != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400827 libiptc = dependency('libiptc',
828 required : want_libiptc == 'true')
829 if libiptc.found()
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400830 conf.set('HAVE_LIBIPTC', true)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400831 m4_defines += ['-DHAVE_LIBIPTC']
832 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400833else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400834 libiptc = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400835endif
836
837want_qrencode = get_option('qrencode')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400838if want_qrencode != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400839 libqrencode = dependency('libqrencode',
840 required : want_qrencode == 'true')
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400841 conf.set('HAVE_QRENCODE', libqrencode.found())
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400842else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400843 libqrencode = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400844endif
845
846want_gnutls = get_option('gnutls')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400847if want_gnutls != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400848 libgnutls = dependency('gnutls',
849 version : '>= 3.1.4',
850 required : want_gnutls == 'true')
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400851 conf.set('HAVE_GNUTLS', libgnutls.found())
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400852else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400853 libgnutls = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400854endif
855
856want_elfutils = get_option('elfutils')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400857if want_elfutils != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400858 libdw = dependency('libdw',
859 required : want_elfutils == 'true')
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400860 conf.set('HAVE_ELFUTILS', libdw.found())
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400861else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400862 libdw = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400863endif
864
865want_zlib = get_option('zlib')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400866if want_zlib != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400867 libz = dependency('zlib',
868 required : want_zlib == 'true')
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400869 conf.set('HAVE_ZLIB', libz.found())
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400870else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400871 libz = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400872endif
873
874want_bzip2 = get_option('bzip2')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400875if want_bzip2 != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400876 libbzip2 = cc.find_library('bz2',
877 required : want_bzip2 == 'true')
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400878 conf.set('HAVE_BZIP2', libbzip2.found())
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400879else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400880 libbzip2 = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400881endif
882
883want_xz = get_option('xz')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400884if want_xz != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400885 libxz = dependency('liblzma',
886 required : want_xz == 'true')
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400887 conf.set('HAVE_XZ', libxz.found())
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400888else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400889 libxz = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400890endif
891
892want_lz4 = get_option('lz4')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400893if want_lz4 != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400894 liblz4 = dependency('liblz4',
895 required : want_lz4 == 'true')
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400896 conf.set('HAVE_LZ4', liblz4.found())
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400897else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400898 liblz4 = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400899endif
900
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -0400901want_glib = get_option('glib')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400902if want_glib != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400903 libglib = dependency('glib-2.0',
904 version : '>= 2.22.0',
905 required : want_glib == 'true')
906 libgobject = dependency('gobject-2.0',
907 version : '>= 2.22.0',
908 required : want_glib == 'true')
909 libgio = dependency('gio-2.0',
910 required : want_glib == 'true')
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400911 have = libglib.found() and libgobject.found() and libgio.found()
912 conf.set('HAVE_GLIB', have)
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -0400913else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400914 libglib = []
915 libgobject = []
916 libgio = []
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -0400917endif
918
Zbigniew Jędrzejewski-Szmek1eeb43f2017-04-13 19:37:14 -0400919want_xkbcommon = get_option('xkbcommon')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400920if want_xkbcommon != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400921 libxkbcommon = dependency('xkbcommon',
922 version : '>= 0.3.0',
923 required : want_xkbcommon == 'true')
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400924 conf.set('HAVE_XKBCOMMON', libxkbcommon.found())
Zbigniew Jędrzejewski-Szmek1eeb43f2017-04-13 19:37:14 -0400925else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400926 libxkbcommon = []
Zbigniew Jędrzejewski-Szmek1eeb43f2017-04-13 19:37:14 -0400927endif
928
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -0400929want_dbus = get_option('dbus')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400930if want_dbus != 'false'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400931 libdbus = dependency('dbus-1',
932 version : '>= 1.3.2',
933 required : want_dbus == 'true')
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400934 conf.set('HAVE_DBUS', libdbus.found())
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -0400935else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400936 libdbus = []
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -0400937endif
938
Michael Biebl76c87412017-04-21 23:45:54 +0200939want_gcrypt = get_option('gcrypt')
940if want_gcrypt != 'false'
941 libgcrypt = cc.find_library('gcrypt', required : want_gcrypt == 'true')
942 libgpg_error = cc.find_library('gpg-error', required : want_gcrypt == 'true')
943
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400944 have_deps = libgcrypt.found() and libgpg_error.found()
945 conf.set('HAVE_GCRYPT', have_deps)
946 if not have_deps
Michael Biebl76c87412017-04-21 23:45:54 +0200947 # link to neither of the libs if one is not found
948 libgcrypt = []
949 libgpg_error = []
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400950 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400951else
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400952 libgcrypt = []
Michael Biebl76c87412017-04-21 23:45:54 +0200953 libgpg_error = []
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400954endif
955
956want_importd = get_option('importd')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400957if want_importd != 'false'
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400958 have_deps = (conf.get('HAVE_LIBCURL', false) and
959 conf.get('HAVE_ZLIB', false) and
960 conf.get('HAVE_BZIP2', false) and
961 conf.get('HAVE_XZ', false) and
962 conf.get('HAVE_GCRYPT', false))
963 conf.set('ENABLE_IMPORTD', have_deps)
964 if want_importd == 'true' and not have_deps
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400965 error('importd support was requested, but dependencies are not available')
966 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400967endif
968
969want_remote = get_option('remote')
Zbigniew Jędrzejewski-Szmek4390be32017-04-13 20:30:07 -0400970if want_remote != 'false'
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400971 have_deps = [conf.get('HAVE_MICROHTTPD', false),
972 conf.get('HAVE_LIBCURL', false)]
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -0400973 # sd-j-remote requires µhttpd, and sd-j-upload requires libcurl, so
974 # it's possible to build one without the other. Complain only if
975 # support was explictly requested. The auxiliary files like sysusers
976 # config should be installed when any of the programs are built.
977 if want_remote == 'true' and not (have_deps[0] and have_deps[1])
978 error('remote support was requested, but dependencies are not available')
979 endif
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -0400980 conf.set('ENABLE_REMOTE', have_deps[0] or have_deps[1])
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -0400981endif
982
983foreach pair : [['utmp', 'HAVE_UTMP'],
984 ['hibernate', 'ENABLE_HIBERNATE'],
985 ['environment-d', 'ENABLE_ENVIRONMENT_D'],
986 ['binfmt', 'ENABLE_BINFMT'],
987 ['coredump', 'ENABLE_COREDUMP'],
988 ['resolve', 'ENABLE_RESOLVED'],
989 ['logind', 'ENABLE_LOGIND'],
990 ['hostnamed', 'ENABLE_HOSTNAMED'],
991 ['localed', 'ENABLE_LOCALED'],
992 ['machined', 'ENABLE_MACHINED'],
993 ['networkd', 'ENABLE_NETWORKD'],
994 ['timedated', 'ENABLE_TIMEDATED'],
995 ['timesyncd', 'ENABLE_TIMESYNCD'],
996 ['myhostname', 'HAVE_MYHOSTNAME'],
997 ['firstboot', 'ENABLE_FIRSTBOOT'],
998 ['randomseed', 'ENABLE_RANDOMSEED'],
999 ['backlight', 'ENABLE_BACKLIGHT'],
1000 ['vconsole', 'ENABLE_VCONSOLE'],
1001 ['quotacheck', 'ENABLE_QUOTACHECK'],
1002 ['sysusers', 'ENABLE_SYSUSERS'],
1003 ['tmpfiles', 'ENABLE_TMPFILES'],
1004 ['hwdb', 'ENABLE_HWDB'],
1005 ['rfkill', 'ENABLE_RFKILL'],
1006 ['ldconfig', 'ENABLE_LDCONFIG'],
Zbigniew Jędrzejewski-Szmekb7100722017-04-12 15:05:55 -04001007 ['efi', 'ENABLE_EFI'],
Zbigniew Jędrzejewski-Szmek80c6fce2017-04-24 19:28:04 -04001008 ['tpm', 'SD_BOOT_LOG_TPM'],
Zbigniew Jędrzejewski-Szmek2895c8e2017-04-13 19:45:05 -04001009 ['ima', 'HAVE_IMA'],
Zbigniew Jędrzejewski-Szmek5464ec82017-04-24 19:28:04 -04001010 ['smack', 'HAVE_SMACK'],
Franck Buib14e1b42017-05-09 14:02:37 +02001011 ['gshadow', 'ENABLE_GSHADOW'],
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001012 ]
1013
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001014 if get_option(pair[0])
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001015 conf.set(pair[1], true)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001016 m4_defines += ['-D' + pair[1]]
1017 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001018endforeach
1019
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04001020want_tests = get_option('tests')
Zbigniew Jędrzejewski-Szmek572baca2017-04-08 01:55:38 -04001021install_tests = get_option('install-tests')
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04001022tests = []
1023
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001024#####################################################################
1025
1026if get_option('efi')
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001027 efi_arch = host_machine.cpu_family()
Zbigniew Jędrzejewski-Szmekb7100722017-04-12 15:05:55 -04001028
Zbigniew Jędrzejewski-Szmek6800fe72017-04-19 22:57:52 -04001029 if efi_arch == 'x86'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001030 EFI_MACHINE_TYPE_NAME = 'ia32'
Zbigniew Jędrzejewski-Szmek6800fe72017-04-19 22:57:52 -04001031 gnu_efi_arch = 'ia32'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001032 elif efi_arch == 'x86_64'
1033 EFI_MACHINE_TYPE_NAME = 'x64'
Zbigniew Jędrzejewski-Szmek6800fe72017-04-19 22:57:52 -04001034 gnu_efi_arch = 'x86_64'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001035 elif efi_arch == 'arm'
1036 EFI_MACHINE_TYPE_NAME = 'arm'
Zbigniew Jędrzejewski-Szmek6800fe72017-04-19 22:57:52 -04001037 gnu_efi_arch = 'arm'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001038 elif efi_arch == 'aarch64'
1039 EFI_MACHINE_TYPE_NAME = 'aa64'
Zbigniew Jędrzejewski-Szmek6800fe72017-04-19 22:57:52 -04001040 gnu_efi_arch = 'aarch64'
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001041 else
1042 EFI_MACHINE_TYPE_NAME = ''
Zbigniew Jędrzejewski-Szmek6800fe72017-04-19 22:57:52 -04001043 gnu_efi_arch = ''
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001044 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001045
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001046 conf.set('ENABLE_EFI', true)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001047 conf.set_quoted('EFI_MACHINE_TYPE_NAME', EFI_MACHINE_TYPE_NAME)
Zbigniew Jędrzejewski-Szmek80c6fce2017-04-24 19:28:04 -04001048
1049 conf.set('SD_TPM_PCR', get_option('tpm-pcrindex').to_int())
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001050endif
1051
1052#####################################################################
1053
1054config_h = configure_file(
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001055 output : 'config.h',
1056 configuration : conf)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001057
1058includes = include_directories('src/basic',
1059 'src/shared',
1060 'src/systemd',
1061 'src/journal',
1062 'src/resolve',
1063 'src/timesync',
1064 'src/login',
1065 'src/udev',
1066 'src/libudev',
1067 'src/core',
1068 'src/libsystemd/sd-bus',
1069 'src/libsystemd/sd-device',
1070 'src/libsystemd/sd-hwdb',
1071 'src/libsystemd/sd-id128',
1072 'src/libsystemd/sd-netlink',
1073 'src/libsystemd/sd-network',
1074 'src/libsystemd-network',
1075 )
1076
1077add_project_arguments('-include', 'config.h', language : 'c')
1078
1079gcrypt_util_sources = files('src/shared/gcrypt-util.h',
1080 'src/shared/gcrypt-util.c')
1081
1082subdir('po')
1083subdir('catalog')
1084subdir('src/systemd')
1085subdir('src/basic')
1086subdir('src/libsystemd')
1087subdir('src/libsystemd-network')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001088subdir('src/journal')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001089subdir('src/login')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001090
1091libjournal_core = static_library(
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001092 'journal-core',
1093 libjournal_core_sources,
1094 journald_gperf_c,
1095 include_directories : includes,
1096 install : false)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001097
Zbigniew Jędrzejewski-Szmek37ab1a22017-04-10 14:13:40 -04001098libsystemd_sym_path = '@0@/@1@'.format(meson.current_source_dir(), libsystemd_sym)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001099libsystemd = shared_library(
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001100 'systemd',
1101 libsystemd_internal_sources,
1102 journal_internal_sources,
1103 version : '0.18.0',
1104 include_directories : includes,
1105 link_args : ['-shared',
1106 '-Wl,--version-script=' + libsystemd_sym_path],
1107 link_with : [libbasic],
1108 dependencies : [threads,
Michael Biebl76c87412017-04-21 23:45:54 +02001109 libgcrypt,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001110 librt,
1111 libxz,
1112 liblz4],
1113 link_depends : libsystemd_sym,
1114 install : true,
1115 install_dir : rootlibdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001116
1117############################################################
1118
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001119# binaries that have --help and are intended for use by humans,
1120# usually, but not always, installed in /bin.
1121public_programs = []
1122
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001123subdir('src/libudev')
1124subdir('src/shared')
1125subdir('src/core')
1126subdir('src/udev')
1127subdir('src/network')
1128
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04001129subdir('src/analyze')
1130subdir('src/journal-remote')
1131subdir('src/coredump')
1132subdir('src/hostname')
1133subdir('src/import')
1134subdir('src/kernel-install')
1135subdir('src/locale')
1136subdir('src/machine')
1137subdir('src/nspawn')
1138subdir('src/resolve')
1139subdir('src/timedate')
1140subdir('src/timesync')
1141subdir('src/vconsole')
Zbigniew Jędrzejewski-Szmek4e4ab1c2017-04-10 12:37:52 -04001142subdir('src/sulogin-shell')
Zbigniew Jędrzejewski-Szmekb7100722017-04-12 15:05:55 -04001143subdir('src/boot/efi')
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04001144
1145subdir('src/test')
Zbigniew Jędrzejewski-Szmek4ff3f252017-04-13 20:47:20 -04001146subdir('test')
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04001147
Zbigniew Jędrzejewski-Szmek83b6af32017-04-14 20:10:28 -04001148############################################################
1149
1150# only static linking apart from libdl, to make sure that the
1151# module is linked to all libraries that it uses.
1152test_dlopen = executable(
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001153 'test-dlopen',
1154 test_dlopen_c,
1155 include_directories : includes,
1156 link_with : [libbasic],
1157 dependencies : [libdl])
Zbigniew Jędrzejewski-Szmek83b6af32017-04-14 20:10:28 -04001158
Zbigniew Jędrzejewski-Szmek5486a312017-05-12 08:31:46 -04001159foreach tuple : [['myhostname', 'HAVE_MYHOSTNAME'],
1160 ['systemd', '' ],
1161 ['mymachines', 'ENABLE_MACHINED'],
1162 ['resolve', 'ENABLE_RESOLVED']]
Zbigniew Jędrzejewski-Szmek83b6af32017-04-14 20:10:28 -04001163
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001164 condition = tuple[1] == '' or conf.get(tuple[1], false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001165 if condition
1166 module = tuple[0]
Zbigniew Jędrzejewski-Szmek83b6af32017-04-14 20:10:28 -04001167
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001168 sym = 'src/nss-@0@/nss-@0@.sym'.format(module)
1169 version_script_arg = join_paths(meson.current_source_dir(), sym)
Zbigniew Jędrzejewski-Szmek83b6af32017-04-14 20:10:28 -04001170
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001171 nss = shared_library(
1172 'nss_' + module,
1173 'src/nss-@0@/nss-@0@.c'.format(module),
1174 version : '2',
1175 include_directories : includes,
1176 link_args : ['-shared',
1177 '-Wl,--version-script=' + version_script_arg,
1178 '-Wl,--undefined'],
1179 link_with : [libsystemd_internal,
1180 libbasic],
1181 dependencies : [threads,
Zbigniew Jędrzejewski-Szmek5486a312017-05-12 08:31:46 -04001182 librt],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001183 link_depends : sym,
1184 install : true,
1185 install_dir : rootlibdir)
Zbigniew Jędrzejewski-Szmek83b6af32017-04-14 20:10:28 -04001186
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001187 # We cannot use shared_module because it does not support version suffix.
1188 # Unfortunately shared_library insists on creating the symlink…
1189 meson.add_install_script('sh', '-c',
1190 'rm $DESTDIR@0@/libnss_@1@.so'
1191 .format(rootlibdir, module))
Zbigniew Jędrzejewski-Szmek83b6af32017-04-14 20:10:28 -04001192
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001193 test('dlopen-nss_' + module,
1194 test_dlopen,
1195 args : [nss.full_path()]) # path to dlopen must include a slash
1196 endif
Zbigniew Jędrzejewski-Szmek83b6af32017-04-14 20:10:28 -04001197endforeach
1198
1199############################################################
1200
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001201executable('systemd',
1202 systemd_sources,
1203 include_directories : includes,
1204 link_with : [libcore,
Michael Biebl34ce0a52017-04-25 20:19:54 +02001205 libshared],
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001206 dependencies : [threads,
1207 librt,
1208 libseccomp,
1209 libselinux,
Zbigniew Jędrzejewski-Szmekf4ee10a2017-04-09 14:08:53 -04001210 libmount,
1211 libblkid],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04001212 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001213 install : true,
1214 install_dir : rootlibexecdir)
1215
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001216exe = executable('systemd-analyze',
1217 systemd_analyze_sources,
1218 include_directories : includes,
1219 link_with : [libcore,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001220 libshared],
1221 dependencies : [threads,
1222 librt,
1223 libseccomp,
1224 libselinux,
1225 libmount,
1226 libblkid],
1227 install_rpath : rootlibexecdir,
1228 install : true)
1229public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001230
1231executable('systemd-journald',
1232 systemd_journald_sources,
1233 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001234 link_with : [libjournal_core,
Michael Biebl34ce0a52017-04-25 20:19:54 +02001235 libshared],
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001236 dependencies : [threads,
1237 libxz,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001238 liblz4,
1239 libselinux],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04001240 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001241 install : true,
1242 install_dir : rootlibexecdir)
1243
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001244exe = executable('systemd-cat',
1245 systemd_cat_sources,
1246 include_directories : includes,
1247 link_with : [libjournal_core,
Michael Biebl34ce0a52017-04-25 20:19:54 +02001248 libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001249 dependencies : [threads],
1250 install_rpath : rootlibexecdir,
1251 install : true)
1252public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001253
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001254exe = executable('journalctl',
1255 journalctl_sources,
1256 include_directories : includes,
Michael Biebl34ce0a52017-04-25 20:19:54 +02001257 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001258 dependencies : [threads,
1259 libqrencode,
1260 libxz,
1261 liblz4],
1262 install_rpath : rootlibexecdir,
1263 install : true,
1264 install_dir : rootbindir)
1265public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001266
1267executable('systemd-getty-generator',
1268 'src/getty-generator/getty-generator.c',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001269 include_directories : includes,
Zbigniew Jędrzejewski-Szmekb2fc5832017-04-10 18:13:00 -04001270 link_with : [libshared],
1271 install_rpath : rootlibexecdir,
1272 install : true,
1273 install_dir : systemgeneratordir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001274
1275executable('systemd-debug-generator',
1276 'src/debug-generator/debug-generator.c',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001277 include_directories : includes,
Zbigniew Jędrzejewski-Szmekb2fc5832017-04-10 18:13:00 -04001278 link_with : [libshared],
1279 install_rpath : rootlibexecdir,
1280 install : true,
1281 install_dir : systemgeneratordir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001282
1283executable('systemd-fstab-generator',
1284 'src/fstab-generator/fstab-generator.c',
1285 'src/core/mount-setup.c',
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001286 include_directories : includes,
Zbigniew Jędrzejewski-Szmekb2fc5832017-04-10 18:13:00 -04001287 link_with : [libshared],
1288 install_rpath : rootlibexecdir,
1289 install : true,
1290 install_dir : systemgeneratordir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001291
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001292if conf.get('ENABLE_ENVIRONMENT_D', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001293 executable('30-systemd-environment-d-generator',
1294 'src/environment-d-generator/environment-d-generator.c',
1295 include_directories : includes,
1296 link_with : [libshared],
1297 install_rpath : rootlibexecdir,
1298 install : true,
1299 install_dir : userenvgeneratordir)
Zbigniew Jędrzejewski-Szmek7b76fce2017-04-09 23:55:50 -04001300
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001301 meson.add_install_script(meson_make_symlink,
1302 join_paths(sysconfdir, 'environment'),
1303 join_paths(environmentdir, '99-environment.conf'))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001304endif
1305
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001306if conf.get('ENABLE_HIBERNATE', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001307 executable('systemd-hibernate-resume-generator',
1308 'src/hibernate-resume/hibernate-resume-generator.c',
1309 include_directories : includes,
1310 link_with : [libshared],
1311 install_rpath : rootlibexecdir,
1312 install : true,
1313 install_dir : systemgeneratordir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001314
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001315 executable('systemd-hibernate-resume',
1316 'src/hibernate-resume/hibernate-resume.c',
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001317 include_directories : includes,
1318 link_with : [libshared],
1319 install_rpath : rootlibexecdir,
1320 install : true,
1321 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001322endif
1323
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001324if conf.get('HAVE_BLKID', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001325 executable('systemd-gpt-auto-generator',
1326 'src/gpt-auto-generator/gpt-auto-generator.c',
1327 'src/basic/blkid-util.h',
1328 include_directories : includes,
Michael Biebl34ce0a52017-04-25 20:19:54 +02001329 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001330 dependencies : libblkid,
1331 install_rpath : rootlibexecdir,
1332 install : true,
1333 install_dir : systemgeneratordir)
1334
1335 exe = executable('systemd-dissect',
1336 'src/dissect/dissect.c',
1337 include_directories : includes,
1338 link_with : [libshared],
1339 install_rpath : rootlibexecdir,
1340 install : true,
1341 install_dir : rootlibexecdir)
1342 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001343endif
1344
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001345if conf.get('ENABLE_RESOLVED', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001346 executable('systemd-resolved',
1347 systemd_resolved_sources,
Michael Biebl76c87412017-04-21 23:45:54 +02001348 gcrypt_util_sources,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001349 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001350 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001351 dependencies : [threads,
Michael Biebl76c87412017-04-21 23:45:54 +02001352 libgcrypt,
1353 libgpg_error,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001354 libm,
1355 libidn],
1356 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001357 install : true,
1358 install_dir : rootlibexecdir)
1359
1360 exe = executable('systemd-resolve',
1361 systemd_resolve_sources,
Michael Biebl76c87412017-04-21 23:45:54 +02001362 gcrypt_util_sources,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001363 include_directories : includes,
1364 link_with : [libshared],
1365 dependencies : [threads,
Michael Biebl76c87412017-04-21 23:45:54 +02001366 libgcrypt,
1367 libgpg_error,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001368 libm,
1369 libidn],
1370 install_rpath : rootlibexecdir,
1371 install : true)
1372 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001373endif
1374
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001375if conf.get('ENABLE_LOGIND', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001376 executable('systemd-logind',
1377 systemd_logind_sources,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001378 include_directories : includes,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001379 link_with : [liblogind_core,
Michael Biebl34ce0a52017-04-25 20:19:54 +02001380 libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001381 dependencies : [threads,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001382 libacl],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001383 install_rpath : rootlibexecdir,
1384 install : true,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001385 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001386
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001387 exe = executable('loginctl',
1388 loginctl_sources,
1389 include_directories : includes,
Michael Biebl34ce0a52017-04-25 20:19:54 +02001390 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001391 dependencies : [threads,
1392 liblz4,
1393 libxz],
1394 install_rpath : rootlibexecdir,
1395 install : true,
1396 install_dir : rootbindir)
1397 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001398
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001399 exe = executable('systemd-inhibit',
1400 'src/login/inhibit.c',
1401 include_directories : includes,
1402 link_with : [libshared],
1403 install_rpath : rootlibexecdir,
1404 install : true,
1405 install_dir : rootbindir)
1406 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek83b6af32017-04-14 20:10:28 -04001407
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001408 if conf.get('HAVE_PAM', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001409 version_script_arg = join_paths(meson.current_source_dir(), pam_systemd_sym)
1410 pam_systemd = shared_library(
1411 'pam_systemd',
1412 pam_systemd_c,
1413 name_prefix : '',
1414 include_directories : includes,
1415 link_args : ['-shared',
1416 '-Wl,--version-script=' + version_script_arg],
1417 link_with : [libsystemd_internal,
1418 libshared_static],
1419 dependencies : [threads,
1420 libpam,
1421 libpam_misc],
1422 link_depends : pam_systemd_sym,
1423 install : true,
1424 install_dir : pamlibdir)
1425
1426 test('dlopen-pam_systemd',
1427 test_dlopen,
1428 args : [pam_systemd.full_path()]) # path to dlopen must include a slash
1429 endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001430endif
1431
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001432if conf.get('HAVE_PAM', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001433 executable('systemd-user-sessions',
1434 'src/user-sessions/user-sessions.c',
1435 include_directories : includes,
1436 link_with : [libshared],
1437 install_rpath : rootlibexecdir,
1438 install : true,
1439 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001440endif
1441
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001442if conf.get('ENABLE_EFI', false) and conf.get('HAVE_BLKID', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001443 exe = executable('bootctl',
1444 'src/boot/bootctl.c',
1445 include_directories : includes,
1446 link_with : [libshared],
1447 dependencies : [libblkid],
1448 install_rpath : rootlibexecdir,
1449 install : true)
1450 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001451endif
1452
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001453exe = executable('systemd-socket-activate', 'src/activate/activate.c',
1454 include_directories : includes,
1455 link_with : [libshared],
1456 dependencies : [threads],
1457 install_rpath : rootlibexecdir,
1458 install : true)
1459public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001460
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001461exe = executable('systemctl', 'src/systemctl/systemctl.c',
1462 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001463 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001464 dependencies : [threads,
1465 libcap,
1466 libselinux,
1467 libxz,
1468 liblz4],
1469 install_rpath : rootlibexecdir,
1470 install : true,
1471 install_dir : rootbindir)
1472public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001473
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001474if conf.get('ENABLE_BACKLIGHT', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001475 executable('systemd-backlight',
1476 'src/backlight/backlight.c',
1477 include_directories : includes,
Michael Biebl34ce0a52017-04-25 20:19:54 +02001478 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001479 install_rpath : rootlibexecdir,
1480 install : true,
1481 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001482endif
1483
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001484if conf.get('ENABLE_RFKILL', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001485 executable('systemd-rfkill',
1486 'src/rfkill/rfkill.c',
1487 include_directories : includes,
Michael Biebl34ce0a52017-04-25 20:19:54 +02001488 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001489 install_rpath : rootlibexecdir,
1490 install : true,
1491 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001492endif
1493
1494executable('systemd-system-update-generator',
1495 'src/system-update-generator/system-update-generator.c',
1496 include_directories : includes,
1497 link_with : [libshared],
Zbigniew Jędrzejewski-Szmekb2fc5832017-04-10 18:13:00 -04001498 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001499 install : true,
1500 install_dir : systemgeneratordir)
1501
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001502if conf.get('HAVE_LIBCRYPTSETUP', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001503 executable('systemd-cryptsetup',
1504 'src/cryptsetup/cryptsetup.c',
1505 include_directories : includes,
1506 link_with : [libshared],
1507 dependencies : [libcryptsetup],
1508 install_rpath : rootlibexecdir,
1509 install : true,
1510 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001511
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001512 executable('systemd-cryptsetup-generator',
1513 'src/cryptsetup/cryptsetup-generator.c',
1514 include_directories : includes,
1515 link_with : [libshared],
1516 dependencies : [libcryptsetup],
1517 install_rpath : rootlibexecdir,
1518 install : true,
1519 install_dir : systemgeneratordir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001520
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001521 executable('systemd-veritysetup',
1522 'src/veritysetup/veritysetup.c',
1523 include_directories : includes,
1524 link_with : [libshared],
1525 dependencies : [libcryptsetup],
1526 install_rpath : rootlibexecdir,
1527 install : true,
1528 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001529
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001530 executable('systemd-veritysetup-generator',
1531 'src/veritysetup/veritysetup-generator.c',
1532 include_directories : includes,
1533 link_with : [libshared],
1534 dependencies : [libcryptsetup],
1535 install_rpath : rootlibexecdir,
1536 install : true,
1537 install_dir : systemgeneratordir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001538endif
1539
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001540if conf.get('HAVE_SYSV_COMPAT', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001541 executable('systemd-sysv-generator',
1542 'src/sysv-generator/sysv-generator.c',
1543 include_directories : includes,
1544 link_with : [libshared],
1545 install_rpath : rootlibexecdir,
1546 install : true,
1547 install_dir : systemgeneratordir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001548
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001549 executable('systemd-rc-local-generator',
1550 'src/rc-local-generator/rc-local-generator.c',
1551 include_directories : includes,
1552 link_with : [libshared],
1553 install_rpath : rootlibexecdir,
1554 install : true,
1555 install_dir : systemgeneratordir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001556endif
1557
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001558if conf.get('ENABLE_HOSTNAMED', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001559 executable('systemd-hostnamed',
1560 'src/hostname/hostnamed.c',
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001561 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001562 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001563 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001564 install : true,
1565 install_dir : rootlibexecdir)
1566
1567 exe = executable('hostnamectl',
1568 'src/hostname/hostnamectl.c',
1569 include_directories : includes,
1570 link_with : [libshared],
1571 install_rpath : rootlibexecdir,
1572 install : true)
1573 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001574endif
1575
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001576if conf.get('ENABLE_LOCALED', false)
1577 if conf.get('HAVE_XKBCOMMON', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001578 # logind will load libxkbcommon.so dynamically on its own
1579 deps = [libdl]
1580 else
1581 deps = []
1582 endif
Zbigniew Jędrzejewski-Szmek1eeb43f2017-04-13 19:37:14 -04001583
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001584 executable('systemd-localed',
1585 systemd_localed_sources,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001586 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001587 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001588 dependencies : deps,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001589 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001590 install : true,
1591 install_dir : rootlibexecdir)
1592
1593 exe = executable('localectl',
1594 localectl_sources,
1595 include_directories : includes,
1596 link_with : [libshared],
1597 install_rpath : rootlibexecdir,
1598 install : true)
1599 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001600endif
1601
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001602if conf.get('ENABLE_TIMEDATED', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001603 executable('systemd-timedated',
1604 'src/timedate/timedated.c',
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001605 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001606 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001607 install_rpath : rootlibexecdir,
1608 install : true,
1609 install_dir : rootlibexecdir)
1610
1611 exe = executable('timedatectl',
1612 'src/timedate/timedatectl.c',
1613 include_directories : includes,
1614 install_rpath : rootlibexecdir,
1615 link_with : [libshared],
1616 install : true)
1617 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001618endif
1619
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001620if conf.get('ENABLE_TIMESYNCD', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001621 executable('systemd-timesyncd',
1622 systemd_timesyncd_sources,
1623 include_directories : includes,
1624 link_with : [libshared],
1625 dependencies : [threads,
1626 libm],
1627 install_rpath : rootlibexecdir,
1628 install : true,
1629 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001630endif
1631
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001632if conf.get('ENABLE_MACHINED', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001633 executable('systemd-machined',
1634 systemd_machined_sources,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001635 include_directories : includes,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001636 link_with : [libmachine_core,
1637 libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001638 install_rpath : rootlibexecdir,
1639 install : true,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001640 install_dir : rootlibexecdir)
1641
1642 exe = executable('machinectl',
1643 'src/machine/machinectl.c',
1644 include_directories : includes,
1645 link_with : [libshared],
1646 dependencies : [threads,
1647 libxz,
1648 liblz4],
1649 install_rpath : rootlibexecdir,
1650 install : true,
1651 install_dir : rootbindir)
1652 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001653endif
1654
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001655if conf.get('ENABLE_IMPORTD', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001656 executable('systemd-importd',
1657 systemd_importd_sources,
1658 include_directories : includes,
1659 link_with : [libshared],
1660 dependencies : [threads],
1661 install_rpath : rootlibexecdir,
1662 install : true,
1663 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001664
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001665 systemd_pull = executable('systemd-pull',
1666 systemd_pull_sources,
1667 include_directories : includes,
1668 link_with : [libshared],
1669 dependencies : [libcurl,
1670 libz,
1671 libbzip2,
1672 libxz,
1673 libgcrypt],
1674 install_rpath : rootlibexecdir,
1675 install : true,
1676 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001677
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001678 systemd_import = executable('systemd-import',
1679 systemd_import_sources,
1680 include_directories : includes,
1681 link_with : [libshared],
1682 dependencies : [libcurl,
1683 libz,
1684 libbzip2,
1685 libxz],
1686 install_rpath : rootlibexecdir,
1687 install : true,
1688 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001689
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001690 systemd_export = executable('systemd-export',
1691 systemd_export_sources,
1692 include_directories : includes,
1693 link_with : [libshared],
1694 dependencies : [libcurl,
1695 libz,
1696 libbzip2,
1697 libxz],
1698 install_rpath : rootlibexecdir,
1699 install : true,
1700 install_dir : rootlibexecdir)
1701 public_programs += [systemd_pull, systemd_import, systemd_export]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001702endif
1703
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001704if conf.get('ENABLE_REMOTE', false) and conf.get('HAVE_LIBCURL', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001705 exe = executable('systemd-journal-upload',
1706 systemd_journal_upload_sources,
1707 include_directories : includes,
1708 link_with : [libshared],
1709 dependencies : [threads,
1710 libcurl,
1711 libgnutls,
1712 libxz,
1713 liblz4],
1714 install_rpath : rootlibexecdir,
1715 install : true,
1716 install_dir : rootlibexecdir)
1717 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001718endif
1719
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001720if conf.get('ENABLE_REMOTE', false) and conf.get('HAVE_MICROHTTPD', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001721 s_j_remote = executable('systemd-journal-remote',
1722 systemd_journal_remote_sources,
1723 include_directories : includes,
1724 link_with : [libshared],
1725 dependencies : [threads,
1726 libmicrohttpd,
1727 libgnutls,
1728 libxz,
1729 liblz4],
1730 install_rpath : rootlibexecdir,
1731 install : true,
1732 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001733
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001734 s_j_gatewayd = executable('systemd-journal-gatewayd',
1735 systemd_journal_gatewayd_sources,
1736 include_directories : includes,
1737 link_with : [libshared],
1738 dependencies : [threads,
1739 libmicrohttpd,
1740 libgnutls,
1741 libxz,
1742 liblz4],
1743 install_rpath : rootlibexecdir,
1744 install : true,
1745 install_dir : rootlibexecdir)
1746 public_programs += [s_j_remote, s_j_gatewayd]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001747endif
1748
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001749if conf.get('ENABLE_COREDUMP', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001750 executable('systemd-coredump',
1751 systemd_coredump_sources,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001752 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001753 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001754 dependencies : [threads,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001755 libacl,
1756 libdw,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001757 libxz,
1758 liblz4],
1759 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001760 install : true,
1761 install_dir : rootlibexecdir)
1762
1763 exe = executable('coredumpctl',
1764 coredumpctl_sources,
1765 include_directories : includes,
1766 link_with : [libshared],
1767 dependencies : [threads,
1768 libxz,
1769 liblz4],
1770 install_rpath : rootlibexecdir,
1771 install : true)
1772 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001773endif
1774
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001775if conf.get('ENABLE_BINFMT', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001776 exe = executable('systemd-binfmt',
1777 'src/binfmt/binfmt.c',
1778 include_directories : includes,
1779 link_with : [libshared],
1780 install_rpath : rootlibexecdir,
1781 install : true,
1782 install_dir : rootlibexecdir)
1783 public_programs += [exe]
1784
1785 meson.add_install_script('sh', '-c',
1786 mkdir_p.format(binfmtdir))
1787 meson.add_install_script('sh', '-c',
1788 mkdir_p.format(join_paths(sysconfdir, 'binfmt.d')))
1789endif
1790
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001791if conf.get('ENABLE_VCONSOLE', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001792 executable('systemd-vconsole-setup',
1793 'src/vconsole/vconsole-setup.c',
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001794 include_directories : includes,
1795 link_with : [libshared],
1796 install_rpath : rootlibexecdir,
1797 install : true,
1798 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001799endif
1800
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001801if conf.get('ENABLE_RANDOMSEED', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001802 executable('systemd-random-seed',
1803 'src/random-seed/random-seed.c',
1804 include_directories : includes,
1805 link_with : [libshared],
1806 install_rpath : rootlibexecdir,
1807 install : true,
1808 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001809endif
1810
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04001811if conf.get('ENABLE_FIRSTBOOT', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04001812 executable('systemd-firstboot',
1813 'src/firstboot/firstboot.c',
1814 include_directories : includes,
1815 link_with : [libshared],
1816 dependencies : [libcrypt],
1817 install_rpath : rootlibexecdir,
1818 install : true,
1819 install_dir : rootbindir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001820endif
1821
1822executable('systemd-remount-fs',
1823 'src/remount-fs/remount-fs.c',
1824 'src/core/mount-setup.c',
1825 'src/core/mount-setup.h',
1826 include_directories : includes,
1827 link_with : [libshared],
Zbigniew Jędrzejewski-Szmekb2fc5832017-04-10 18:13:00 -04001828 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001829 install : true,
1830 install_dir : rootlibexecdir)
1831
1832executable('systemd-machine-id-setup',
1833 'src/machine-id-setup/machine-id-setup-main.c',
1834 'src/core/machine-id-setup.c',
1835 'src/core/machine-id-setup.h',
1836 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001837 link_with : [libshared],
Zbigniew Jędrzejewski-Szmekb2fc5832017-04-10 18:13:00 -04001838 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001839 install : true,
1840 install_dir : rootbindir)
1841
1842executable('systemd-fsck',
1843 'src/fsck/fsck.c',
1844 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001845 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04001846 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001847 install : true,
1848 install_dir : rootlibexecdir)
1849
1850executable('systemd-sleep',
1851 'src/sleep/sleep.c',
1852 include_directories : includes,
1853 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04001854 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001855 install : true,
1856 install_dir : rootlibexecdir)
1857
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001858exe = executable('systemd-sysctl',
1859 'src/sysctl/sysctl.c',
1860 include_directories : includes,
1861 link_with : [libshared],
1862 install_rpath : rootlibexecdir,
1863 install : true,
1864 install_dir : rootlibexecdir)
1865public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001866
1867executable('systemd-ac-power',
1868 'src/ac-power/ac-power.c',
1869 include_directories : includes,
1870 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04001871 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001872 install : true,
1873 install_dir : rootlibexecdir)
1874
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001875exe = executable('systemd-detect-virt',
1876 'src/detect-virt/detect-virt.c',
1877 include_directories : includes,
1878 link_with : [libshared],
1879 install_rpath : rootlibexecdir,
1880 install : true)
1881public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001882
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001883exe = executable('systemd-delta',
1884 'src/delta/delta.c',
1885 include_directories : includes,
1886 link_with : [libshared],
1887 install_rpath : rootlibexecdir,
1888 install : true)
1889public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001890
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001891exe = executable('systemd-escape',
1892 'src/escape/escape.c',
1893 include_directories : includes,
1894 link_with : [libshared],
1895 install_rpath : rootlibexecdir,
1896 install : true,
1897 install_dir : rootbindir)
1898public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001899
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001900exe = executable('systemd-notify',
1901 'src/notify/notify.c',
1902 include_directories : includes,
1903 link_with : [libshared],
1904 install_rpath : rootlibexecdir,
1905 install : true,
1906 install_dir : rootbindir)
1907public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001908
1909executable('systemd-volatile-root',
1910 'src/volatile-root/volatile-root.c',
1911 include_directories : includes,
1912 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04001913 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001914 install : true,
1915 install_dir : rootlibexecdir)
1916
1917executable('systemd-cgroups-agent',
1918 'src/cgroups-agent/cgroups-agent.c',
1919 include_directories : includes,
1920 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04001921 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001922 install : true,
1923 install_dir : rootlibexecdir)
1924
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001925exe = executable('systemd-path',
1926 'src/path/path.c',
1927 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001928 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001929 install_rpath : rootlibexecdir,
1930 install : true)
1931public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001932
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001933exe = executable('systemd-ask-password',
1934 'src/ask-password/ask-password.c',
1935 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001936 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001937 install_rpath : rootlibexecdir,
1938 install : true,
1939 install_dir : rootbindir)
1940public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001941
1942executable('systemd-reply-password',
1943 'src/reply-password/reply-password.c',
1944 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001945 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04001946 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001947 install : true,
1948 install_dir : rootlibexecdir)
1949
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001950exe = executable('systemd-tty-ask-password-agent',
1951 'src/tty-ask-password-agent/tty-ask-password-agent.c',
1952 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001953 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001954 install_rpath : rootlibexecdir,
1955 install : true,
1956 install_dir : rootbindir)
1957public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001958
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001959exe = executable('systemd-cgls',
1960 'src/cgls/cgls.c',
1961 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001962 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001963 install_rpath : rootlibexecdir,
1964 install : true)
1965public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001966
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001967exe = executable('systemd-cgtop',
1968 'src/cgtop/cgtop.c',
1969 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001970 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001971 install_rpath : rootlibexecdir,
1972 install : true)
1973public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001974
1975executable('systemd-initctl',
1976 'src/initctl/initctl.c',
1977 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001978 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04001979 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001980 install : true,
1981 install_dir : rootlibexecdir)
1982
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001983exe = executable('systemd-mount',
1984 'src/mount/mount-tool.c',
1985 include_directories : includes,
Michael Biebl34ce0a52017-04-25 20:19:54 +02001986 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001987 install_rpath : rootlibexecdir,
1988 install : true)
1989public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04001990
Zbigniew Jędrzejewski-Szmek7b76fce2017-04-09 23:55:50 -04001991meson.add_install_script(meson_make_symlink,
Michael Bieble17e5ba2017-04-13 10:30:56 -04001992 'systemd-mount', join_paths(bindir, 'systemd-umount'))
Zbigniew Jędrzejewski-Szmek7b76fce2017-04-09 23:55:50 -04001993
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001994exe = executable('systemd-run',
1995 'src/run/run.c',
1996 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04001997 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04001998 install_rpath : rootlibexecdir,
1999 install : true)
2000public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002001
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002002exe = executable('systemd-stdio-bridge',
2003 'src/stdio-bridge/stdio-bridge.c',
2004 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002005 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002006 install_rpath : rootlibexecdir,
2007 install : true)
2008public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002009
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002010exe = executable('busctl',
2011 'src/busctl/busctl.c',
2012 'src/busctl/busctl-introspect.c',
2013 'src/busctl/busctl-introspect.h',
2014 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002015 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002016 install_rpath : rootlibexecdir,
2017 install : true)
2018public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002019
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04002020if conf.get('ENABLE_SYSUSERS', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002021 exe = executable('systemd-sysusers',
2022 'src/sysusers/sysusers.c',
2023 include_directories : includes,
2024 link_with : [libshared],
2025 install_rpath : rootlibexecdir,
2026 install : true,
2027 install_dir : rootbindir)
2028 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002029endif
2030
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04002031if conf.get('ENABLE_TMPFILES', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002032 exe = executable('systemd-tmpfiles',
2033 'src/tmpfiles/tmpfiles.c',
2034 include_directories : includes,
2035 link_with : [libshared],
2036 dependencies : [libacl],
2037 install_rpath : rootlibexecdir,
2038 install : true,
2039 install_dir : rootbindir)
2040 public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002041endif
2042
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04002043if conf.get('ENABLE_HWDB', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002044 exe = executable('systemd-hwdb',
2045 'src/hwdb/hwdb.c',
2046 'src/libsystemd/sd-hwdb/hwdb-internal.h',
2047 include_directories : includes,
Michael Biebl0da6f392017-04-21 18:32:14 +02002048 link_with : [libudev_internal],
2049 install_rpath : udev_rpath,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002050 install : true,
2051 install_dir : rootbindir)
2052 public_programs += [exe]
2053endif
2054
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04002055if conf.get('ENABLE_QUOTACHECK', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002056 executable('systemd-quotacheck',
2057 'src/quotacheck/quotacheck.c',
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002058 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002059 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002060 install_rpath : rootlibexecdir,
2061 install : true,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002062 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002063endif
2064
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002065exe = executable('systemd-socket-proxyd',
2066 'src/socket-proxy/socket-proxyd.c',
2067 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002068 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002069 dependencies : [threads],
2070 install_rpath : rootlibexecdir,
2071 install : true,
2072 install_dir : rootlibexecdir)
2073public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002074
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002075exe = executable('systemd-udevd',
2076 systemd_udevd_sources,
2077 include_directories : includes,
Zbigniew Jędrzejewski-Szmek5c720492017-02-22 23:13:22 -05002078 c_args : ['-DLOG_REALM=LOG_REALM_UDEV'],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002079 link_with : [libudev_core,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002080 libsystemd_network,
Zbigniew Jędrzejewski-Szmek1aec3ed2017-04-17 19:33:10 -04002081 libudev_internal],
Zbigniew Jędrzejewski-Szmek3a30f212017-04-17 12:07:12 -04002082 dependencies : [threads,
2083 libkmod,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002084 libidn,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002085 libacl,
2086 libblkid],
Zbigniew Jędrzejewski-Szmek1aec3ed2017-04-17 19:33:10 -04002087 install_rpath : udev_rpath,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002088 install : true,
2089 install_dir : rootlibexecdir)
2090public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002091
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002092exe = executable('udevadm',
2093 udevadm_sources,
2094 include_directories : includes,
2095 link_with : [libudev_core,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002096 libsystemd_network,
Zbigniew Jędrzejewski-Szmek1aec3ed2017-04-17 19:33:10 -04002097 libudev_internal],
Zbigniew Jędrzejewski-Szmek3a30f212017-04-17 12:07:12 -04002098 dependencies : [threads,
2099 libkmod,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002100 libidn,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002101 libacl,
2102 libblkid],
Zbigniew Jędrzejewski-Szmek1aec3ed2017-04-17 19:33:10 -04002103 install_rpath : udev_rpath,
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002104 install : true,
2105 install_dir : rootbindir)
2106public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002107
2108executable('systemd-shutdown',
2109 systemd_shutdown_sources,
2110 include_directories : includes,
Michael Biebl34ce0a52017-04-25 20:19:54 +02002111 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04002112 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002113 install : true,
2114 install_dir : rootlibexecdir)
2115
2116executable('systemd-update-done',
2117 'src/update-done/update-done.c',
2118 include_directories : includes,
2119 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04002120 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002121 install : true,
2122 install_dir : rootlibexecdir)
2123
2124executable('systemd-update-utmp',
2125 'src/update-utmp/update-utmp.c',
2126 include_directories : includes,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002127 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002128 dependencies : [libaudit],
Zbigniew Jędrzejewski-Szmek421f0012017-04-12 12:02:30 -04002129 install_rpath : rootlibexecdir,
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002130 install : true,
2131 install_dir : rootlibexecdir)
2132
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04002133if conf.get('HAVE_KMOD', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002134 executable('systemd-modules-load',
2135 'src/modules-load/modules-load.c',
2136 include_directories : includes,
2137 link_with : [libshared],
2138 dependencies : [libkmod],
2139 install_rpath : rootlibexecdir,
2140 install : true,
2141 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek94e75a52017-04-09 23:55:05 -04002142
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002143 meson.add_install_script('sh', '-c',
2144 mkdir_p.format(modulesloaddir))
2145 meson.add_install_script('sh', '-c',
2146 mkdir_p.format(join_paths(sysconfdir, 'modules-load.d')))
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002147endif
2148
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002149exe = executable('systemd-nspawn',
2150 systemd_nspawn_sources,
2151 'src/core/mount-setup.c', # FIXME: use a variable?
2152 'src/core/mount-setup.h',
2153 'src/core/loopback-setup.c',
2154 'src/core/loopback-setup.h',
2155 include_directories : [includes, include_directories('src/nspawn')],
Zbigniew Jędrzejewski-Szmek0bc91152017-04-27 13:39:54 -04002156 link_with : [libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002157 dependencies : [libacl,
2158 libblkid,
2159 libseccomp,
2160 libselinux],
2161 install_rpath : rootlibexecdir,
2162 install : true)
2163public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002164
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04002165if conf.get('ENABLE_NETWORKD', false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002166 executable('systemd-networkd',
2167 systemd_networkd_sources,
2168 include_directories : includes,
2169 link_with : [libnetworkd_core,
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002170 libsystemd_network,
2171 libudev_internal,
2172 libshared],
2173 install_rpath : rootlibexecdir,
2174 install : true,
2175 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002176
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002177 executable('systemd-networkd-wait-online',
2178 systemd_networkd_wait_online_sources,
2179 include_directories : includes,
2180 link_with : [libnetworkd_core,
2181 libshared],
2182 install_rpath : rootlibexecdir,
2183 install : true,
2184 install_dir : rootlibexecdir)
Zbigniew Jędrzejewski-Szmekf0bd7cc2017-04-12 12:14:30 -04002185endif
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002186
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002187exe = executable('networkctl',
2188 networkctl_sources,
2189 include_directories : includes,
2190 link_with : [libsystemd_network,
Zbigniew Jędrzejewski-Szmekaac26052017-04-14 18:49:47 -04002191 libshared],
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002192 install_rpath : rootlibexecdir,
2193 install : true,
2194 install_dir : rootbindir)
2195public_programs += [exe]
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002196
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04002197############################################################
2198
2199foreach tuple : tests
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002200 sources = tuple[0]
2201 link_with = tuple[1].length() > 0 ? tuple[1] : [libshared]
2202 dependencies = tuple[2]
2203 condition = tuple.length() >= 4 ? tuple[3] : ''
2204 type = tuple.length() >= 5 ? tuple[4] : ''
2205 defs = tuple.length() >= 6 ? tuple[5] : []
2206 incs = tuple.length() >= 7 ? tuple[6] : includes
2207 timeout = 30
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04002208
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002209 name = sources[0].split('/')[-1].split('.')[0]
2210 if type.startswith('timeout=')
2211 timeout = type.split('=')[1].to_int()
2212 type = ''
2213 endif
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04002214
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04002215 if condition == '' or conf.get(condition, false)
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002216 install = install_tests and type == ''
Zbigniew Jędrzejewski-Szmek572baca2017-04-08 01:55:38 -04002217
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002218 exe = executable(
2219 name,
2220 sources,
2221 include_directories : incs,
2222 link_with : link_with,
2223 dependencies : dependencies,
2224 c_args : defs,
2225 install_rpath : rootlibexecdir,
2226 install : install,
2227 install_dir : testsdir)
Zbigniew Jędrzejewski-Szmek572baca2017-04-08 01:55:38 -04002228
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002229 if type == 'manual'
2230 message('@0@ is a manual test'.format(name))
2231 elif type == 'unsafe' and want_tests != 'unsafe'
2232 message('@0@ is an unsafe test'.format(name))
2233 else
2234 test(name, exe,
2235 env : test_env,
2236 timeout : timeout)
2237 endif
2238 else
2239 message('Not compiling @0@ because @1@ is not true'.format(name, condition))
2240 endif
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04002241endforeach
2242
Zbigniew Jędrzejewski-Szmek37ab1a22017-04-10 14:13:40 -04002243test_libsystemd_sym = executable(
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002244 'test-libsystemd-sym',
2245 test_libsystemd_sym_c,
2246 include_directories : includes,
2247 link_with : [libsystemd],
2248 install : install_tests,
2249 install_dir : testsdir)
Zbigniew Jędrzejewski-Szmek37ab1a22017-04-10 14:13:40 -04002250test('test-libsystemd-sym',
2251 test_libsystemd_sym)
2252
Zbigniew Jędrzejewski-Szmeke0bec522017-04-10 15:20:42 -04002253test_libudev_sym = executable(
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002254 'test-libudev-sym',
2255 test_libudev_sym_c,
2256 include_directories : includes,
2257 c_args : ['-Wno-deprecated-declarations'],
2258 link_with : [libudev],
2259 install : install_tests,
2260 install_dir : testsdir)
Zbigniew Jędrzejewski-Szmeke0bec522017-04-10 15:20:42 -04002261test('test-libudev-sym',
2262 test_libudev_sym)
2263
Zbigniew Jędrzejewski-Szmek69e96422017-04-07 00:19:09 -04002264############################################################
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002265
2266make_directive_index_py = find_program('tools/make-directive-index.py')
2267make_man_index_py = find_program('tools/make-man-index.py')
Zbigniew Jędrzejewski-Szmekb184e8f2017-04-13 19:59:21 -04002268xml_helper_py = find_program('tools/xml_helper.py')
Zbigniew Jędrzejewski-Szmekabba22c2017-04-15 00:40:59 -04002269hwdb_update_sh = find_program('tools/meson-hwdb-update.sh')
Zbigniew Jędrzejewski-Szmek5c231282017-04-04 23:03:47 -04002270
2271subdir('units')
2272subdir('sysctl.d')
2273subdir('sysusers.d')
2274subdir('tmpfiles.d')
2275subdir('rules')
2276subdir('hwdb')
2277subdir('network')
2278subdir('man')
2279subdir('shell-completion/bash')
2280subdir('shell-completion/zsh')
2281subdir('docs/sysvinit')
2282subdir('docs/var-log')
2283
2284# FIXME: figure out if the warning is true:
2285# https://github.com/mesonbuild/meson/wiki/Reference-manual#install_subdir
2286install_subdir('factory/etc',
2287 install_dir : factorydir)
2288
2289
2290install_data('xorg/50-systemd-user.sh',
2291 install_dir : xinitrcdir)
2292install_data('system-preset/90-systemd.preset',
2293 install_dir : systempresetdir)
2294install_data('README',
2295 'NEWS',
2296 'CODING_STYLE',
2297 'DISTRO_PORTING',
2298 'ENVIRONMENT.md',
2299 'LICENSE.GPL2',
2300 'LICENSE.LGPL2.1',
2301 'src/libsystemd/sd-bus/GVARIANT-SERIALIZATION',
2302 install_dir : docdir)
Zbigniew Jędrzejewski-Szmekd68b3422017-04-06 14:33:27 -04002303
Zbigniew Jędrzejewski-Szmek94e75a52017-04-09 23:55:05 -04002304meson.add_install_script('sh', '-c', mkdir_p.format(systemdstatedir))
2305meson.add_install_script('sh', '-c', 'touch $DESTDIR@0@'.format(prefixdir))
2306
Zbigniew Jędrzejewski-Szmekd68b3422017-04-06 14:33:27 -04002307############################################################
2308
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002309meson_check_help = find_program('tools/meson-check-help.sh')
2310
2311foreach exec : public_programs
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002312 name = exec.full_path().split('/')[-1]
2313 test('check-help-' + name,
2314 meson_check_help,
2315 args : [exec.full_path()])
Zbigniew Jędrzejewski-Szmek005a29f2017-04-13 11:52:05 -04002316endforeach
2317
2318############################################################
2319
Zbigniew Jędrzejewski-Szmekd68b3422017-04-06 14:33:27 -04002320if git.found() and etags.found()
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002321 all_files = run_command(
2322 git,
2323 ['--git-dir=@0@/.git'.format(meson.source_root()),
2324 'ls-files',
2325 ':/*.[ch]'])
2326 all_files = files(all_files.stdout().split())
Zbigniew Jędrzejewski-Szmekd68b3422017-04-06 14:33:27 -04002327
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002328 custom_target(
2329 'TAGS',
2330 output : 'TAGS',
2331 input : all_files,
2332 command : [etags, '-o', '@OUTPUT@'] + all_files)
Zbigniew Jędrzejewski-Szmekd68b3422017-04-06 14:33:27 -04002333endif
Zbigniew Jędrzejewski-Szmek177929c2017-04-15 00:16:23 -04002334
2335if git.found()
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002336 meson_git_contrib_sh = find_program('tools/meson-git-contrib.sh')
Zbigniew Jędrzejewski-Szmeka923e082017-04-17 19:48:20 -04002337 run_target(
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002338 'git-contrib',
Zbigniew Jędrzejewski-Szmek37efbbd2017-04-17 19:25:00 -04002339 command : [meson_git_contrib_sh])
Zbigniew Jędrzejewski-Szmek177929c2017-04-15 00:16:23 -04002340endif
Zbigniew Jędrzejewski-Szmekdd6ab3d2017-04-24 19:28:05 -04002341
2342if git.found()
2343 git_head = run_command(
2344 git,
2345 ['--git-dir=@0@/.git'.format(meson.source_root()),
2346 'rev-parse', 'HEAD']).stdout().strip()
2347 git_head_short = run_command(
2348 git,
2349 ['--git-dir=@0@/.git'.format(meson.source_root()),
2350 'rev-parse', '--short=7', 'HEAD']).stdout().strip()
2351
2352 run_target(
2353 'git-snapshot',
2354 command : ['git', 'archive',
2355 '-o', '@0@/systemd-@1@.tar.gz'.format(meson.source_root(),
2356 git_head_short),
2357 '--prefix', 'systemd-@0@/'.format(git_head),
2358 'HEAD'])
2359endif
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002360
2361############################################################
2362
2363status = [
2364 '@0@ @1@'.format(meson.project_name(), meson.project_version()),
2365
2366 'prefix: @0@'.format(prefixdir),
2367 'rootprefix: @0@'.format(rootprefixdir),
2368 'sysconf dir: @0@'.format(sysconfdir),
2369 'includedir: @0@'.format(includedir),
2370 'lib dir: @0@'.format(libdir),
2371 'rootlib dir: @0@'.format(rootlibdir),
2372 'SysV init scripts: @0@'.format(sysvinit_path),
2373 'SysV rc?.d directories: @0@'.format(sysvrcnd_path),
2374 'PAM modules dir: @0@'.format(pamlibdir),
2375 'PAM configuration dir: @0@'.format(pamconfdir),
2376 'RPM macros dir: @0@'.format(rpmmacrosdir),
2377 'D-Bus policy dir: @0@'.format(dbuspolicydir),
2378 'D-Bus session dir: @0@'.format(dbussessionservicedir),
2379 'D-Bus system dir: @0@'.format(dbussystemservicedir),
2380 'bash completions dir: @0@'.format(bashcompletiondir),
2381 'zsh completions dir: @0@'.format(zshcompletiondir),
2382 'extra start script: @0@'.format(get_option('rc-local')),
2383 'extra stop script: @0@'.format(get_option('halt-local')),
2384 'debug shell: @0@ @ @1@'.format(get_option('debug-shell'),
2385 get_option('debug-tty')),
2386 'TTY GID: @0@'.format(tty_gid),
2387 'maximum system UID: @0@'.format(system_uid_max),
2388 'maximum system GID: @0@'.format(system_gid_max),
2389 '/dev/kvm access mode: @0@'.format(get_option('dev-kvm-mode')),
2390 'certificate root: @0@'.format(get_option('certificate-root')),
2391 'support URL: @0@'.format(support_url),
2392 'nobody user name: @0@'.format(get_option('nobody-user')),
2393 'nobody group name: @0@'.format(get_option('nobody-group')),
2394 'fallback hostname: @0@'.format(get_option('fallback-hostname')),
2395
2396 'default DNSSEC mode: @0@'.format(default_dnssec),
2397 'default cgroup hierarchy: @0@'.format(default_hierarchy),
2398 'default KillUserProcesses setting: @0@'.format(kill_user_processes)]
2399
2400alt_dns_servers = '\n '.join(dns_servers.split(' '))
2401alt_ntp_servers = '\n '.join(ntp_servers.split(' '))
2402status += [
2403 'default DNS servers: @0@'.format(alt_dns_servers),
2404 'default NTP servers: @0@'.format(alt_ntp_servers)]
2405
2406alt_time_epoch = run_command('date', '-Is', '-u', '-d',
2407 '@@0@'.format(time_epoch)).stdout().strip()
2408status += [
2409 'time epoch: @0@ (@1@)'.format(time_epoch, alt_time_epoch)]
2410
2411# TODO:
2412# CFLAGS: ${OUR_CFLAGS} ${CFLAGS}
2413# CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
2414# LDFLAGS: ${OUR_LDFLAGS} ${LDFLAGS}
2415
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04002416if conf.get('ENABLE_EFI', false)
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002417 status += [
2418 'efi arch: @0@'.format(efi_arch)]
2419
2420 if have_gnu_efi
2421 status += [
2422 'EFI machine type: @0@'.format(EFI_MACHINE_TYPE_NAME),
2423 'EFI CC @0@'.format(efi_cc),
2424 'EFI libdir: @0@'.format(efi_libdir),
2425 'EFI ldsdir: @0@'.format(efi_ldsdir),
2426 'EFI includedir: @0@'.format(efi_incdir)]
2427 endif
2428endif
2429
2430found = []
2431missing = []
2432
2433foreach tuple : [
2434 ['libcryptsetup'],
2435 ['PAM'],
2436 ['AUDIT'],
2437 ['IMA'],
2438 ['AppArmor'],
2439 ['SELinux'],
2440 ['SECCOMP'],
2441 ['SMACK'],
2442 ['zlib'],
2443 ['xz'],
2444 ['lz4'],
2445 ['bzip2'],
2446 ['ACL'],
2447 ['gcrypt'],
2448 ['qrencode'],
2449 ['microhttpd'],
2450 ['gnutls'],
2451 ['libcurl'],
Zbigniew Jędrzejewski-Szmek87057e22017-05-09 21:56:34 -04002452 ['libidn2'],
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002453 ['libidn'],
2454 ['libiptc'],
2455 ['elfutils'],
2456 ['binfmt'],
2457 ['vconsole'],
2458 ['quotacheck'],
2459 ['tmpfiles'],
2460 ['environment.d'],
2461 ['sysusers'],
2462 ['firstboot'],
2463 ['randomseed'],
2464 ['backlight'],
2465 ['rfkill'],
2466 ['logind'],
2467 ['machined'],
2468 ['importd'],
2469 ['hostnamed'],
2470 ['timedated'],
2471 ['timesyncd'],
2472 ['localed'],
2473 ['networkd'],
2474 ['resolved'],
2475 ['coredump'],
2476 ['polkit'],
2477 ['legacy pkla', install_polkit_pkla],
2478 ['efi'],
2479 ['gnu-efi', have_gnu_efi],
2480 ['kmod'],
2481 ['xkbcommon'],
2482 ['blkid'],
2483 ['dbus'],
2484 ['glib'],
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04002485 ['nss-myhostname', conf.get('HAVE_MYHOSTNAME', false)],
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002486 ['hwdb'],
2487 ['tpm'],
2488 ['man pages', want_man],
2489 ['html pages', want_html],
2490 ['man page indices', want_man and have_lxml],
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04002491 ['split /usr', conf.get('HAVE_SPLIT_USR', false)],
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002492 ['SysV compat'],
2493 ['utmp'],
2494 ['ldconfig'],
2495 ['hibernate'],
2496 ['adm group', get_option('adm-group')],
2497 ['wheel group', get_option('wheel-group')],
Franck Buib14e1b42017-05-09 14:02:37 +02002498 ['gshadow'],
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002499 ['debug hashmap'],
2500 ['debug mmap cache'],
2501]
2502
2503 cond = tuple.get(1, '')
2504 if cond == ''
2505 ident1 = 'HAVE_' + tuple[0].underscorify().to_upper()
2506 ident2 = 'ENABLE_' + tuple[0].underscorify().to_upper()
Zbigniew Jędrzejewski-Szmek2c201c22017-04-27 21:13:08 -04002507 cond = conf.get(ident1, false) or conf.get(ident2, false)
Zbigniew Jędrzejewski-Szmek829257d2017-04-27 20:54:52 -04002508 endif
2509 if cond
2510 found += [tuple[0]]
2511 else
2512 missing += [tuple[0]]
2513 endif
2514endforeach
2515
2516status += [
2517 'enabled features: @0@'.format(', '.join(found)),
2518 'disabled features: @0@'.format(', '.join(missing))]
2519message('\n '.join(status))