diff options
| author | Steven Barth | 2015-05-05 16:28:02 +0000 |
|---|---|---|
| committer | Steven Barth | 2015-05-05 16:29:04 +0000 |
| commit | d0671bf308aa93dcc71d53475c8e61ae231543ba (patch) | |
| tree | 1ad84fb125f9dfac727298b54be25d588f3df86f | |
| parent | 98f8393d29ca01e67de5a5e16f96c6f29f4b7d1d (diff) | |
| download | routing-d0671bf308aa93dcc71d53475c8e61ae231543ba.tar.gz | |
miniupnpd: remove libnfnetlink dependency
Signed-off-by: Steven Barth <steven@midlink.org>
| -rw-r--r-- | miniupnpd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miniupnpd/Makefile b/miniupnpd/Makefile index f718746..1eac6c1 100644 --- a/miniupnpd/Makefile +++ b/miniupnpd/Makefile @@ -23,7 +23,7 @@ include $(INCLUDE_DIR)/package.mk define Package/miniupnpd SECTION:=net CATEGORY:=Network - DEPENDS:=+iptables +libip4tc +IPV6:libip6tc +IPV6:ip6tables +libnfnetlink + DEPENDS:=+iptables +libip4tc +IPV6:libip6tc +IPV6:ip6tables TITLE:=Lightweight UPnP IGD, NAT-PMP & PCP daemon SUBMENU:=Firewall URL:=http://miniupnp.free.fr/ @@ -52,7 +52,7 @@ endef MAKE_FLAGS += \ TEST=0 \ LIBS="" \ - CC="$(TARGET_CC) -DIPTABLES_143 -lnfnetlink -lip4tc $(if $(CONFIG_IPV6),-lip6tc)" \ + CC="$(TARGET_CC) -DIPTABLES_143 -lip4tc $(if $(CONFIG_IPV6),-lip6tc)" \ CONFIG_OPTIONS="$(if $(CONFIG_IPV6),--ipv6) --leasefile" \ -f Makefile.linux \ miniupnpd |