From 9808378511936f3474a795e248bd2a4b5f80ec80 Mon Sep 17 00:00:00 2001 From: buffet Date: Fri, 25 Mar 2022 20:17:11 +0000 Subject: [PATCH] Add minimum version to lua fallback dependency to avoid confusion --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index b3b03257..75cd8cf3 100644 --- a/meson.build +++ b/meson.build @@ -78,6 +78,7 @@ if not get_option('source-only') lua_dep = dependency('lua5.4', fallback: lua_quick_fallback, required : false) if not lua_dep.found() lua_dep = dependency('lua', fallback: ['lua', 'lua_dep'], + version: '>= 5.4', default_options: ['default_library=static', 'line_editing=false', 'interpreter=false'] ) endif