1config BR2_PACKAGE_LIBMODSECURITY 2 bool "libmodsecurity" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on BR2_TOOLCHAIN_HAS_THREADS 5 select BR2_PACKAGE_PCRE 6 help 7 Libmodsecurity is one component of the ModSecurity 8 v3 project. The library codebase serves as an 9 interface to ModSecurity Connectors taking in web 10 traffic and applying traditional ModSecurity 11 processing. In general, it provides the capability 12 to load/interpret rules written in the ModSecurity 13 SecRules format and apply them to HTTP content 14 provided by your application via Connectors. 15 16 https://github.com/SpiderLabs/ModSecurity 17 18comment "libmodsecurity needs a toolchain w/ C++, threads" 19 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS 20