|
@@ -10,7 +10,7 @@ LXC_LICENSE = LGPLv2.1+
|
|
|
LXC_LICENSE_FILES = COPYING
|
|
|
LXC_DEPENDENCIES = libcap host-pkgconf
|
|
|
LXC_CONF_OPTS = --disable-apparmor --with-distro=buildroot \
|
|
|
- --disable-lua --disable-python --disable-werror \
|
|
|
+ --disable-python --disable-werror \
|
|
|
$(if $(BR2_PACKAGE_BASH),,--disable-bash)
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSECCOMP),y)
|
|
@@ -20,4 +20,15 @@ else
|
|
|
LXC_CONF_OPTS += --disable-seccomp
|
|
|
endif
|
|
|
|
|
|
+ifeq ($(BR2_PACKAGE_HAS_LUAINTERPRETER),y)
|
|
|
+LXC_CONF_OPTS += --enable-lua
|
|
|
+LXC_DEPENDENCIES += luainterpreter
|
|
|
+ifeq ($(BR2_PACKAGE_LUAJIT),y)
|
|
|
+# By default, lxc will only search for lua.pc
|
|
|
+LXC_CONF_OPTS += --with-lua-pc=luajit
|
|
|
+endif
|
|
|
+else
|
|
|
+LXC_CONF_OPTS += --disable-lua
|
|
|
+endif
|
|
|
+
|
|
|
$(eval $(autotools-package))
|