package/lxc: add liburing optional dependency

liburing is an optional dependency (enabed by default) since version
4.0.11 and
b1f9aee5c4

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Fabrice Fontaine 2022-01-04 19:11:07 +01:00 committed by Thomas Petazzoni
parent 03ca6f4e39
commit 352252149e

View File

@ -44,6 +44,13 @@ else
LXC_CONF_OPTS += --disable-selinux
endif
ifeq ($(BR2_PACKAGE_LIBURING),y)
LXC_CONF_OPTS += --enable-liburing
LXC_DEPENDENCIES += liburing
else
LXC_CONF_OPTS += --disable-liburing
endif
ifeq ($(BR2_PACKAGE_OPENSSL),y)
LXC_CONF_OPTS += --enable-openssl
LXC_DEPENDENCIES += openssl