Config.in 720 B

1234567891011121314151617181920212223242526
  1. config BR2_PACKAGE_CIVETWEB
  2. bool "civetweb"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS
  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_LUA
  9. bool "enable Lua support"
  10. # required by the bundled Sqlite3 and Lua code
  11. depends on BR2_LARGEFILE
  12. help
  13. Enable Lua support in Civetweb. Note that this will use a
  14. version of Lua and Sqlite bundled within the Civetweb
  15. sources, and not the packages from Buildroot.
  16. comment "Lua support requires largefile support in toolchain"
  17. depends on !BR2_LARGEFILE
  18. endif
  19. comment "civetweb requires a toolchain with PTHREAD support"
  20. depends on !BR2_TOOLCHAIN_HAS_THREADS