Config.in 886 B

1234567891011121314151617181920212223242526
  1. config BR2_PACKAGE_PROSODY
  2. bool "prosody"
  3. depends on BR2_USE_MMU # fork
  4. depends on BR2_PACKAGE_HAS_LUAINTERPRETER
  5. depends on !BR2_PACKAGE_LUA_5_4
  6. depends on !BR2_STATIC_LIBS # luaexpat, luasec, luasocket, luafilesystem
  7. select BR2_PACKAGE_LUABITOP if BR2_PACKAGE_LUA_5_1 # runtime
  8. select BR2_PACKAGE_LUAEXPAT # runtime
  9. select BR2_PACKAGE_LUASEC # runtime
  10. select BR2_PACKAGE_LUASOCKET # runtime
  11. select BR2_PACKAGE_OPENSSL
  12. select BR2_PACKAGE_LIBIDN
  13. select BR2_PACKAGE_LUAFILESYSTEM # runtime
  14. help
  15. Prosody is a modern XMPP communication server. It aims to be
  16. easy to set up and configure, and efficient with system
  17. resources.
  18. https://prosody.im
  19. comment "prosody needs the lua interpreter, dynamic library"
  20. depends on !BR2_PACKAGE_HAS_LUAINTERPRETER || BR2_STATIC_LIBS
  21. depends on BR2_USE_MMU
  22. comment "prosody needs a Lua <= 5.3"
  23. depends on BR2_PACKAGE_LUA_5_4