1config 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 19 https://prosody.im 20 21comment "prosody needs the lua interpreter, dynamic library" 22 depends on !BR2_PACKAGE_HAS_LUAINTERPRETER || BR2_STATIC_LIBS 23 depends on BR2_USE_MMU 24 25comment "prosody needs a Lua <= 5.3" 26 depends on BR2_PACKAGE_LUA_5_4 27