From 9f0e9c0119c67bd960082d0350c32938f4fca967 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Thu, 27 Apr 2017 10:05:18 -0400 Subject: [PATCH] meson: add version check for libseccomp Compilation fails because of the missing arm64 bits with old seccomp versions. --- meson.build | 1 + 1 file changed, 1 insertion(+) 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) -- 2.47.3