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.
This commit is contained in:
Carsten Haitzler 2024-01-11 07:29:57 +00:00 committed by Christopher Michael
parent 59bf668983
commit 4569da4ad1
2 changed files with 2 additions and 2 deletions

View File

@ -347,7 +347,7 @@ Required by default:
* openjpeg2 * openjpeg2
* gstreamer (Ensure all codecs you want are installed.) * gstreamer (Ensure all codecs you want are installed.)
* zlib * zlib
* luajit (lua 5.1 or 5.2 support optional) * lua (lua 5.1, luajit or lua 5.2 support optional)
* libtiff * libtiff
* openssl * openssl
* curl * curl

View File

@ -330,7 +330,7 @@ option('dotnet',
option('lua-interpreter', option('lua-interpreter',
type: 'combo', type: 'combo',
choices: ['luajit', 'lua'], choices: ['luajit', 'lua'],
value: 'luajit', value: 'lua',
description: 'Which Lua back-end library to use in efl' description: 'Which Lua back-end library to use in efl'
) )