1config BR2_PACKAGE_SNORT3 2 bool "snort3" 3 depends on BR2_PACKAGE_LUAJIT_ARCH_SUPPORTS # luajit 4 depends on !(BR2_PACKAGE_DAQ || BR2_PACKAGE_SNORT) 5 depends on BR2_USE_MMU # fork() 6 depends on BR2_INSTALL_LIBSTDCPP 7 depends on !BR2_STATIC_LIBS # daq3 8 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11 9 depends on BR2_TOOLCHAIN_HAS_THREADS # daq3, hwloc 10 depends on BR2_USE_WCHAR 11 select BR2_PACKAGE_DAQ3 12 select BR2_PACKAGE_FLEX 13 select BR2_PACKAGE_HWLOC 14 select BR2_PACKAGE_LIBDNET 15 select BR2_PACKAGE_LIBPCAP 16 select BR2_PACKAGE_LUAJIT 17 select BR2_PACKAGE_PCRE 18 select BR2_PACKAGE_LIBTIRPC if !BR2_TOOLCHAIN_HAS_NATIVE_RPC 19 select BR2_PACKAGE_OPENSSL 20 select BR2_PACKAGE_ZLIB 21 help 22 Snort 3 is the next generation Snort IPS (Intrusion 23 Prevention System). 24 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 34 https://www.snort.org/snort3 35 36comment "snort3 needs a toolchain w/ C++, wchar, threads, dynamic library, gcc >= 4.9" 37 depends on BR2_PACKAGE_LUAJIT_ARCH_SUPPORTS 38 depends on !(BR2_PACKAGE_DAQ || BR2_PACKAGE_SNORT) 39 depends on BR2_USE_MMU 40 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \ 41 BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || \ 42 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 43