d9205b4da5
The dependency on !BR2_STATIC_LIBS is due to missing Libs.private in the libmodconfig pkg-config file making builds that statically link against libmodsecurity fail. Lua is disabled due to using the host libraries. Yajl is disabled as enabling it forces the tests to be built. These tests have a hard dependency on libmodsecurity.a which is not built when --disable-static is used in the configuration. There is no flag to disable these tests. Signed-off-by: Frank Vanbever <frank.vanbever@essensium.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
20 lines
729 B
Plaintext
20 lines
729 B
Plaintext
config BR2_PACKAGE_LIBMODSECURITY
|
|
bool "libmodsecurity"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on !BR2_STATIC_LIBS
|
|
select BR2_PACKAGE_PCRE
|
|
help
|
|
Libmodsecurity is one component of the ModSecurity
|
|
v3 project. The library codebase serves as an
|
|
interface to ModSecurity Connectors taking in web
|
|
traffic and applying traditional ModSecurity
|
|
processing. In general, it provides the capability
|
|
to load/interpret rules written in the ModSecurity
|
|
SecRules format and apply them to HTTP content
|
|
provided by your application via Connectors.
|
|
|
|
https://github.com/SpiderLabs/ModSecurity
|
|
|
|
comment "libmodsecurity needs a toolchain w/ C++, dynamic library"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS
|