Config.in 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. config BR2_PACKAGE_SNORT3
  2. bool "snort3"
  3. depends on !BR2_PACKAGE_LUA # luajit
  4. depends on BR2_PACKAGE_LUAJIT_ARCH_SUPPORTS # luajit
  5. depends on !(BR2_PACKAGE_DAQ || BR2_PACKAGE_SNORT)
  6. depends on BR2_USE_MMU # fork()
  7. depends on BR2_INSTALL_LIBSTDCPP
  8. depends on !BR2_STATIC_LIBS # daq3
  9. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
  10. depends on BR2_TOOLCHAIN_HAS_THREADS # daq3, hwloc
  11. depends on BR2_USE_WCHAR
  12. select BR2_PACKAGE_DAQ3
  13. select BR2_PACKAGE_FLEX
  14. select BR2_PACKAGE_HWLOC
  15. select BR2_PACKAGE_LIBDNET
  16. select BR2_PACKAGE_LIBPCAP
  17. select BR2_PACKAGE_LUAJIT
  18. select BR2_PACKAGE_PCRE
  19. select BR2_PACKAGE_LIBTIRPC if !BR2_TOOLCHAIN_HAS_NATIVE_RPC
  20. select BR2_PACKAGE_OPENSSL
  21. select BR2_PACKAGE_ZLIB
  22. help
  23. Snort 3 is the next generation Snort IPS (Intrusion
  24. Prevention System).
  25. - Support multiple packet processing threads
  26. - Shared configuration and attribute table
  27. - Use a simple, scriptable configuration
  28. - Make key components pluggable
  29. - Autodetect services for portless configuration
  30. - Support sticky buffers in rules
  31. - Autogenerate reference documentation
  32. - Provide better cross platform support
  33. https://www.snort.org/snort3
  34. comment "snort3 needs a toolchain w/ C++, wchar, threads, dynamic library, gcc >= 4.9"
  35. depends on !BR2_PACKAGE_LUA
  36. depends on BR2_PACKAGE_LUAJIT_ARCH_SUPPORTS
  37. depends on !(BR2_PACKAGE_DAQ || BR2_PACKAGE_SNORT)
  38. depends on BR2_USE_MMU
  39. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
  40. BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || \
  41. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9