From a5a079ec1d2ecb5e029328187493fe2425cb9c2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Wed, 24 Dec 2025 20:43:33 +0100 Subject: [PATCH] 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 --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 7c994db8..7b122ac9 100644 --- a/meson.build +++ b/meson.build @@ -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