From: Stéphane Graber Date: Tue, 7 Jun 2022 19:16:36 +0000 (-0400) Subject: meson: seccomp is optional X-Git-Tag: lxc-5.0.0~9^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=869deb9173bbfa460ba29519087cb9f8978899f2;p=thirdparty%2Flxc.git meson: seccomp is optional Signed-off-by: Stéphane Graber --- diff --git a/meson.build b/meson.build index e3b376130..4829f80f7 100644 --- a/meson.build +++ b/meson.build @@ -265,7 +265,7 @@ endif threads = dependency('threads') ## Seccomp. -libseccomp = dependency('libseccomp') +libseccomp = dependency('libseccomp', required: false) srcconf.set10('HAVE_SECCOMP', libseccomp.found()) pkgconfig_libs += libseccomp if libseccomp.found()