From: Zbigniew Jędrzejewski-Szmek Date: Thu, 27 Apr 2017 14:05:18 +0000 (-0400) Subject: meson: add version check for libseccomp X-Git-Tag: v234~273^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9f0e9c0119c67bd960082d0350c32938f4fca967;p=thirdparty%2Fsystemd.git meson: add version check for libseccomp Compilation fails because of the missing arm64 bits with old seccomp versions. --- diff --git a/meson.build b/meson.build index c412aff91f2..d9dfe7fbd94 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)