From: Bernd Kuhls Date: Sun, 21 Feb 2016 17:34:58 +0000 (+0100) Subject: package/lxc: add optional support for libseccomp X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2e461df5dd0cc37bde6908a932528a74a512636d;p=buildroot.git package/lxc: add optional support for libseccomp When libseccomp was compiled before, lxc will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/libexec/lxc/lxc-monitord | grep NEEDED 0x0000000000000001 (NEEDED) Shared library: [liblxc.so.1] 0x0000000000000001 (NEEDED) Shared library: [libcap.so.2] 0x0000000000000001 (NEEDED) Shared library: [libseccomp.so.2] [...] Signed-off-by: Bernd Kuhls Signed-off-by: Thomas Petazzoni --- diff --git a/package/lxc/lxc.mk b/package/lxc/lxc.mk index e382f4dec5..819096959a 100644 --- a/package/lxc/lxc.mk +++ b/package/lxc/lxc.mk @@ -15,4 +15,11 @@ LXC_CONF_OPTS = --disable-apparmor --with-distro=buildroot \ --disable-lua --disable-python \ $(if $(BR2_PACKAGE_BASH),,--disable-bash) +ifeq ($(BR2_PACKAGE_LIBSECCOMP),y) +LXC_CONF_OPTS += --enable-seccomp +LXC_DEPENDENCIES += libseccomp +else +LXC_CONF_OPTS += --disable-seccomp +endif + $(eval $(autotools-package))