Config.in 817 B

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