mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2026-02-04 06:10:28 +01:00
meson: accept lua 5.5 as well
Lua 5.5 was released on 2025-12-22[0], and wireplumber appears to work fine with it. [0]: https://lua.org/versions.html#5.5
This commit is contained in:
parent
9040ec1e51
commit
a5a079ec1d
1 changed files with 2 additions and 1 deletions
|
|
@ -89,6 +89,7 @@ if build_modules
|
|||
endif
|
||||
else
|
||||
lua_versions = [
|
||||
'-5.5', '5.5', '55',
|
||||
'-5.4', '5.4', '54',
|
||||
'-5.3', '5.3', '53',
|
||||
]
|
||||
|
|
@ -104,7 +105,7 @@ if build_modules
|
|||
lua_dep = dependency('lua', version: ['>=5.3.0'], required: false)
|
||||
endif
|
||||
if not lua_dep.found()
|
||||
error ('Could not find lua. Lua version 5.4 or 5.3 required')
|
||||
error ('Could not find lua. Lua version 5.5, 5.4 or 5.3 required')
|
||||
endif
|
||||
endif
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue