This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository efl.
View the commit online.
commit f0a966a65f2544bf4463b917a921e8c623ec4eb3
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Thu Jan 11 07:29:57 2024 +0000
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'
)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.