mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
caa32ac237
This commit switches the luasyslog package to use a fork of the project that has good Lua 5.3 support. This fork has a public repository on Github (https://github.com/ntd/luasyslog/), and is available as a Lua Rock (https://luarocks.org/modules/ntd/luasyslog), but unfortunately the rockspec uses a build method that is not supported by the Buildroot luarocks infrastructure. Therefore, we used the autotools build system provided by this fork. Because this fork has good support for Lua 5.3, the "Lua 5.3 compatibility" patch becomes useless and can be dropped. Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
28 lines
630 B
Diff
28 lines
630 B
Diff
From 84296c5eae651b45ebfa233199b7ddc009a5dad3 Mon Sep 17 00:00:00 2001
|
|
From: Francois Perrad <francois.perrad@gadz.org>
|
|
Date: Fri, 21 Jun 2019 14:58:54 +0200
|
|
Subject: [PATCH] remove AX_LUA_LIBS
|
|
|
|
AX_LUA_LIBS fails with LuaJIT
|
|
|
|
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
|
|
---
|
|
configure.ac | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 9ac6c95..d7fc518 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -32,7 +32,6 @@ AC_PATH_PROG([LUAROCKS], [luarocks], [:])
|
|
AX_PROG_LUA([5.1],[6.0])
|
|
|
|
dnl Check for libraries
|
|
-AX_LUA_LIBS
|
|
|
|
dnl Check for functions
|
|
AC_HEADER_STDC
|
|
--
|
|
2.20.1
|
|
|