diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-04-27 16:05:18 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-04-27 16:05:18 +0200 |
commit | 9f0e9c0119c67bd960082d0350c32938f4fca967 (patch) | |
tree | 24272156e8f77ca78a544c8375268b78e0e7bede /meson.build | |
parent | meson: also search for libcap directly (diff) | |
download | systemd-9f0e9c0119c67bd960082d0350c32938f4fca967.tar.xz systemd-9f0e9c0119c67bd960082d0350c32938f4fca967.zip |
meson: add version check for libseccomp
Compilation fails because of the missing arm64 bits with old seccomp versions.
Diffstat (limited to '')
-rw-r--r-- | meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build index c412aff91f..d9dfe7fbd9 100644 --- a/meson.build +++ b/meson.build @@ -626,6 +626,7 @@ libmount = dependency('mount', want_seccomp = get_option('seccomp') if want_seccomp != 'false' libseccomp = dependency('libseccomp', + version : '>= 2.3.1', required : want_seccomp == 'true') if libseccomp.found() conf.set('HAVE_SECCOMP', 1) |