xref: /OK3568_Linux_fs/buildroot/package/iptables/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_IPTABLES
2	bool "iptables"
3	help
4	  Linux kernel firewall, NAT, and packet mangling tools.
5
6	  http://www.netfilter.org/projects/iptables/index.html
7
8if BR2_PACKAGE_IPTABLES
9
10config BR2_PACKAGE_IPTABLES_BPF_NFSYNPROXY
11	bool "bpfc and nfsynproxy"
12	select BR2_PACKAGE_LIBPCAP
13	help
14	  Build bpf compiler and nfsynproxy configuration tool.
15
16config BR2_PACKAGE_IPTABLES_NFTABLES
17	bool "nftables compat"
18	# uses dlfcn
19	depends on !BR2_STATIC_LIBS
20	depends on BR2_USE_WCHAR
21	depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12
22	select BR2_PACKAGE_LIBMNL
23	select BR2_PACKAGE_LIBNFTNL
24	help
25	  Build nftables compat utilities.
26
27comment "nftables compat needs a toolchain w/ wchar, dynamic library, headers >= 3.12"
28	depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12 || \
29		!BR2_USE_WCHAR || BR2_STATIC_LIBS
30
31endif
32