All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/prosody: fix dependency
@ 2020-07-28  6:21 Francois Perrad
  2020-07-28  7:21 ` Thomas Petazzoni
  2020-08-08 21:48 ` Thomas Petazzoni
  0 siblings, 2 replies; 6+ messages in thread
From: Francois Perrad @ 2020-07-28  6:21 UTC (permalink / raw)
  To: buildroot

LuaBitOp is not available with Lua 5.3

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 package/prosody/Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/prosody/Config.in b/package/prosody/Config.in
index 4b7ea9425..bb3a5025f 100644
--- a/package/prosody/Config.in
+++ b/package/prosody/Config.in
@@ -3,7 +3,7 @@ config BR2_PACKAGE_PROSODY
 	depends on BR2_USE_MMU # fork
 	depends on BR2_PACKAGE_HAS_LUAINTERPRETER
 	depends on !BR2_STATIC_LIBS # luaexpat, luasec, luasocket, luafilesystem
-	select BR2_PACKAGE_LUABITOP if !BR2_PACKAGE_LUAJIT # runtime
+	select BR2_PACKAGE_LUABITOP if BR2_PACKAGE_LUA_5_1 # runtime
 	select BR2_PACKAGE_LUAEXPAT # runtime
 	select BR2_PACKAGE_LUASEC # runtime
 	select BR2_PACKAGE_LUASOCKET # runtime
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-08-08 21:48 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-28  6:21 [Buildroot] [PATCH] package/prosody: fix dependency Francois Perrad
2020-07-28  7:21 ` Thomas Petazzoni
2020-07-28  9:21   ` François Perrad
2020-07-28 20:25     ` Yann E. MORIN
2020-07-29 13:01       ` François Perrad
2020-08-08 21:48 ` Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.