From 889993bef0bc084ce3efaf98f392068118511312 Mon Sep 17 00:00:00 2001 From: Fred Morcos Date: Tue, 15 Aug 2023 13:24:55 +0200 Subject: [PATCH] Meson: Fix lua_records handling --- meson/lua-records/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson/lua-records/meson.build b/meson/lua-records/meson.build index 16b330a33e..7b91ae71ed 100644 --- a/meson/lua-records/meson.build +++ b/meson/lua-records/meson.build @@ -4,6 +4,7 @@ opt_lua_records = get_option('lua-records') dep_libcurl = dependency('libcurl', version: '>= 7.21.3', required: opt_lua_records) +deps += dep_libcurl conf.set10('HAVE_LIBCURL', dep_libcurl.found(), description: 'Whether we have libcurl') opt_lua_enabled = opt_lua in ['auto', 'luajit', 'lua'] @@ -17,5 +18,5 @@ if not dep_lua.found() endif found = opt_lua_records and opt_lua_enabled and dep_lua.found() and dep_libcurl.found() -conf.set10('HAVE_LUA_RECORDS', found, description: 'Whether we have Lua records') +conf.set('HAVE_LUA_RECORDS', found, description: 'Whether we have Lua records') summary('Lua Records', found, bool_yn: true, section: 'Configuration') -- 2.47.2