Blame view

buildroot/buildroot-2016.08.1/package/iptables/iptables.mk 1.78 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
  ################################################################################
  #
  # iptables
  #
  ################################################################################
  
  IPTABLES_VERSION = 1.6.0
  IPTABLES_SOURCE = iptables-$(IPTABLES_VERSION).tar.bz2
  IPTABLES_SITE = http://ftp.netfilter.org/pub/iptables
  IPTABLES_INSTALL_STAGING = YES
  IPTABLES_DEPENDENCIES = host-pkgconf \
  	$(if $(BR2_PACKAGE_LIBNETFILTER_CONNTRACK),libnetfilter_conntrack)
  IPTABLES_LICENSE = GPLv2
  IPTABLES_LICENSE_FILES = COPYING
  # Building static causes ugly warnings on some plugins
  IPTABLES_CONF_OPTS = --libexecdir=/usr/lib --with-kernel=$(STAGING_DIR)/usr \
  	$(if $(BR2_STATIC_LIBS),,--disable-static)
  # For 0002-iptables-add-xtables-config-parser.h-to-BUILT_SOURCES.patch
  # and 0003-extensions-added-AR-substitution.patch
  IPTABLES_AUTORECONF = YES
  
  # 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
  
  # 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
  
  # bpf compiler support and nfsynproxy tool
  ifeq ($(BR2_PACKAGE_IPTABLES_BPF_NFSYNPROXY),y)
  # 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
  IPTABLES_CONF_OPTS += --enable-bpf-compiler --enable-nfsynproxy
  IPTABLES_DEPENDENCIES += libpcap
  else
  IPTABLES_CONF_OPTS += --disable-bpf-compiler --disable-nfsynproxy
  endif
  
  $(eval $(autotools-package))