From: Fabrice Fontaine Date: Wed, 27 Mar 2019 18:12:48 +0000 (+0100) Subject: package/keepalived: add optional libnftnl dependency X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ab3673d99b59d8cb6fb062a7b893a25b08d85f65;p=buildroot.git package/keepalived: add optional libnftnl dependency nftables support has been added since version 2.0.11 and https://github.com/acassen/keepalived/commit/aa12175ea638912a7789e832634d7ccf80fdf48d Signed-off-by: Fabrice Fontaine Signed-off-by: Thomas Petazzoni --- diff --git a/package/keepalived/keepalived.mk b/package/keepalived/keepalived.mk index fcdb43ce13..15a1b0e9f4 100644 --- a/package/keepalived/keepalived.mk +++ b/package/keepalived/keepalived.mk @@ -46,4 +46,11 @@ else KEEPALIVED_CONF_OPTS += --disable-libiptc endif +ifeq ($(BR2_PACKAGE_LIBNFTNL),y) +KEEPALIVED_DEPENDENCIES += libnftnl +KEEPALIVED_CONF_OPTS += --enable-nftables +else +KEEPALIVED_CONF_OPTS += --disable-nftables +endif + $(eval $(autotools-package))