2013-06-05 23:53:30 +00:00
|
|
|
################################################################################
|
2003-01-19 07:49:24 +00:00
|
|
|
#
|
|
|
|
|
# iptables
|
|
|
|
|
#
|
2013-06-05 23:53:30 +00:00
|
|
|
################################################################################
|
2011-01-10 14:41:24 -03:00
|
|
|
|
2015-12-20 17:05:27 -03:00
|
|
|
IPTABLES_VERSION = 1.6.0
|
2008-09-16 02:12:23 +00:00
|
|
|
IPTABLES_SOURCE = iptables-$(IPTABLES_VERSION).tar.bz2
|
|
|
|
|
IPTABLES_SITE = http://ftp.netfilter.org/pub/iptables
|
2011-01-10 14:41:24 -03:00
|
|
|
IPTABLES_INSTALL_STAGING = YES
|
2013-08-30 18:57:20 -03:00
|
|
|
IPTABLES_DEPENDENCIES = host-pkgconf \
|
|
|
|
|
$(if $(BR2_PACKAGE_LIBNETFILTER_CONNTRACK),libnetfilter_conntrack)
|
2012-08-11 19:27:26 -03:00
|
|
|
IPTABLES_LICENSE = GPLv2
|
|
|
|
|
IPTABLES_LICENSE_FILES = COPYING
|
2014-10-21 13:58:14 -03:00
|
|
|
# Building static causes ugly warnings on some plugins
|
|
|
|
|
IPTABLES_CONF_OPTS = --libexecdir=/usr/lib --with-kernel=$(STAGING_DIR)/usr \
|
2014-12-03 22:41:29 +01:00
|
|
|
$(if $(BR2_STATIC_LIBS),,--disable-static)
|
2015-12-30 15:01:23 -03:00
|
|
|
# For 0002-iptables-add-xtables-config-parser.h-to-BUILT_SOURCES.patch
|
|
|
|
|
IPTABLES_AUTORECONF = YES
|
2009-03-30 18:41:53 +00:00
|
|
|
|
2013-10-30 15:09:10 -03:00
|
|
|
# For connlabel match
|
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBNETFILTER_CONNTRACK),y)
|
|
|
|
|
IPTABLES_DEPENDENCIES += libnetfilter_conntrack
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
# For nfnl_osf
|
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBNFNETLINK),y)
|
|
|
|
|
IPTABLES_DEPENDENCIES += libnfnetlink
|
|
|
|
|
endif
|
|
|
|
|
|
2015-12-20 17:05:27 -03:00
|
|
|
# For iptables-compat tools
|
|
|
|
|
ifeq ($(BR2_PACKAGE_IPTABLES_NFTABLES),y)
|
|
|
|
|
IPTABLES_CONF_OPTS += --enable-nftables
|
|
|
|
|
IPTABLES_DEPENDENCIES += host-bison host-flex libmnl libnftnl
|
|
|
|
|
else
|
|
|
|
|
IPTABLES_CONF_OPTS += --disable-nftables
|
|
|
|
|
endif
|
2010-09-01 23:52:52 +02:00
|
|
|
|
2015-12-20 17:05:27 -03:00
|
|
|
# bpf compiler support and nfsynproxy tool
|
|
|
|
|
ifeq ($(BR2_PACKAGE_IPTABLES_BPF_NFSYNPROXY),y)
|
2016-01-06 10:25:38 -03:00
|
|
|
# libpcap is tricky for static-only builds and needs help
|
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
|
|
|
IPTABLES_LIBS_FOR_STATIC_LINK += `$(STAGING_DIR)/usr/bin/pcap-config --static --additional-libs`
|
|
|
|
|
IPTABLES_CONF_OPTS += LIBS="$(IPTABLES_LIBS_FOR_STATIC_LINK)"
|
|
|
|
|
endif
|
2015-12-20 17:05:27 -03:00
|
|
|
IPTABLES_CONF_OPTS += --enable-bpf-compiler --enable-nfsynproxy
|
|
|
|
|
IPTABLES_DEPENDENCIES += libpcap
|
|
|
|
|
else
|
|
|
|
|
IPTABLES_CONF_OPTS += --disable-bpf-compiler --disable-nfsynproxy
|
|
|
|
|
endif
|
2009-09-16 08:39:26 +02:00
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|