Config.in 712 B

12345678910111213141516171819202122232425262728
  1. config BR2_PACKAGE_CIVETWEB
  2. bool "civetweb"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS
  4. depends on BR2_USE_MMU # fork()
  5. select BR2_PACKAGE_CIVETWEB_SERVER if !BR2_PACKAGE_CIVETWEB_LIB
  6. help
  7. Full featured embedded web server with Lua support.
  8. https://sourceforge.net/projects/civetweb
  9. if BR2_PACKAGE_CIVETWEB
  10. config BR2_PACKAGE_CIVETWEB_SERVER
  11. bool "enable the web server application"
  12. help
  13. Include the web server and its config files.
  14. config BR2_PACKAGE_CIVETWEB_LIB
  15. bool "enable library for embedding"
  16. help
  17. Enable the civetweb library for embedding in another
  18. application.
  19. endif
  20. comment "civetweb needs a toolchain w/ threads"
  21. depends on BR2_USE_MMU
  22. depends on !BR2_TOOLCHAIN_HAS_THREADS