Config.in 906 B

12345678910111213141516171819202122232425262728293031323334
  1. config BR2_PACKAGE_CIVETWEB
  2. bool "civetweb"
  3. depends on BR2_TOOLCHAIN_BUILDROOT_UCLIBC && !BR2_PTHREADS_NONE
  4. help
  5. Full featured embedded web server with LUA support.
  6. https://sourceforge.net/projects/civetweb
  7. if BR2_PACKAGE_CIVETWEB
  8. config BR2_CIVETWEB_WITH_IPV6
  9. bool "enable IPV6 support"
  10. depends on BR2_INET_IPV6
  11. config BR2_CIVETWEB_WITH_LUA
  12. bool "enable LUA support"
  13. depends on BR2_LARGEFILE # util-linux
  14. config BR2_CIVETWEB_WITH_SSL
  15. bool "enable SSL support"
  16. depends on BR2_PACKAGE_OPENSSL
  17. comment "civetweb IPV6 support requires IPV6"
  18. depends on !BR2_INET_IPV6
  19. comment "civetweb LUA support requires large file support"
  20. depends on !BR2_LARGEFILE
  21. comment "civetweb SSL support requires OpenSSL"
  22. depends on !BR2_PACKAGE_OPENSSL
  23. endif
  24. comment "civetweb requires a toolchain with PTHREAD support"
  25. depends on !BR2_TOOLCHAIN_BUILDROOT_UCLIBC || BR2_PTHREADS_NONE