From: Fred Morcos Date: Tue, 15 Aug 2023 11:24:55 +0000 (+0200) Subject: Meson: Fix lua_records handling X-Git-Tag: rec-5.1.0-alpha1~80^2~261 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=889993bef0bc084ce3efaf98f392068118511312;p=thirdparty%2Fpdns.git Meson: Fix lua_records handling --- 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')