mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 08:20:12 +01:00
meson/freedreno: Fix lua requirement
Freedreno needs at least Lua 5.2, but the current code will report found
for 5.1, which doesn't actually work.
Fixes: caa107cb8d
("freedreno/decode: move dependencies up a level")
Reviewed-by: Rob Clark <robclark@freedesktop.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6229>
This commit is contained in:
parent
0cdd411b6d
commit
1e28745bc0
1 changed files with 1 additions and 1 deletions
|
|
@ -30,7 +30,7 @@ if not dep_lua.found()
|
|||
dep_lua = dependency('lua52', required: false)
|
||||
endif
|
||||
if not dep_lua.found()
|
||||
dep_lua = dependency('lua', required: false)
|
||||
dep_lua = dependency('lua', required: false, version : '>=5.2')
|
||||
endif
|
||||
|
||||
dep_libarchive = dependency('libarchive', required: false)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue