Config.in 815 B

123456789101112131415161718192021
  1. config BR2_PACKAGE_NGINX_MODSECURITY
  2. bool "nginx-modsecurity"
  3. depends on BR2_PACKAGE_NGINX_HTTP
  4. depends on BR2_INSTALL_LIBSTDCPP # libmodsecurity
  5. depends on BR2_TOOLCHAIN_HAS_THREADS # libmodsecurity
  6. depends on !(BR2_STATIC_LIBS && BR2_PACKAGE_LIBCURL_MBEDTLS) # libmodsecurity
  7. select BR2_PACKAGE_LIBMODSECURITY
  8. help
  9. The ModSecurity-nginx connector is the connection
  10. point between nginx and libmodsecurity
  11. (ModSecurity v3).
  12. https://github.com/SpiderLabs/ModSecurity-nginx
  13. comment "nginx-modsecurity needs a toolchain w/ C++, threads"
  14. depends on BR2_PACKAGE_NGINX_HTTP
  15. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
  16. comment "nginx-modsecurity needs a toolchain w/ dynamic library"
  17. depends on BR2_PACKAGE_NGINX_HTTP
  18. depends on BR2_STATIC_LIBS && BR2_PACKAGE_LIBCURL_MBEDTLS