diff options
| author | Rosy Song | 2018-07-31 09:09:34 +0000 |
|---|---|---|
| committer | John Crispin | 2018-08-01 09:25:04 +0000 |
| commit | f30583c41d37c39d3ca063b31871a3c207734b1f (patch) | |
| tree | 63aa87539ee6924ea24c986592bd41b9dea24e42 | |
| parent | 0b7a9688ce49c60a18575b925138b100f4e8e078 (diff) | |
| download | openwrt-f30583c41d37c39d3ca063b31871a3c207734b1f.tar.gz | |
nftables: allow to build with json support
Signed-off-by: Rosy Song <rosysong@rosinson.com>
| -rw-r--r-- | package/network/utils/nftables/Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/package/network/utils/nftables/Makefile b/package/network/utils/nftables/Makefile index f3bdc5caee..d1e995116d 100644 --- a/package/network/utils/nftables/Makefile +++ b/package/network/utils/nftables/Makefile @@ -34,10 +34,21 @@ define Package/nftables CATEGORY:=Network SUBMENU:=Firewall TITLE:=nftables packet filtering userspace utility - DEPENDS:=+kmod-nft-core +libnftnl + DEPENDS:=+kmod-nft-core +libnftnl +PACKAGE_NFT_WITH_JSON:jansson URL:=http://netfilter.org/projects/nftables/ endef +define Package/nftables/config + config PACKAGE_NFT_WITH_JSON + bool "Build nftables with json support" + depends on PACKAGE_nftables + default n +endef + +ifeq ($(CONFIG_PACKAGE_NFT_WITH_JSON),y) +CONFIGURE_ARGS += --with-json +endif + define Package/nftables/install $(INSTALL_DIR) $(1)/usr/sbin $(CP) $(PKG_INSTALL_DIR)/usr/sbin/nft $(1)/usr/sbin/ |