From 4569da4ad15c944898a9554215ef100715f9b6e1 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Thu, 11 Jan 2024 07:29:57 +0000 Subject: [PATCH] lua - move to lua as default lua engine from luajit luajit seems to be dwindling. it also has bugs on aarch64 which means packages for efl like i maintain on arch use lua instead of luajit by default. reflect this as the default choice now. --- README.md | 2 +- meson_options.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6a3c48cfb2..60b52494f4 100644 --- a/README.md +++ b/README.md @@ -347,7 +347,7 @@ Required by default: * openjpeg2 * gstreamer (Ensure all codecs you want are installed.) * zlib -* luajit (lua 5.1 or 5.2 support optional) +* lua (lua 5.1, luajit or lua 5.2 support optional) * libtiff * openssl * curl diff --git a/meson_options.txt b/meson_options.txt index 1639a8879f..143ce19dba 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -330,7 +330,7 @@ option('dotnet', option('lua-interpreter', type: 'combo', choices: ['luajit', 'lua'], - value: 'luajit', + value: 'lua', description: 'Which Lua back-end library to use in efl' )