From c306f914a5464d2ed1d422a05aad8e569b65bd5e Mon Sep 17 00:00:00 2001 From: Fred Morcos Date: Mon, 6 Nov 2023 12:24:32 +0100 Subject: [PATCH] Meson: Build pdns-kvresp --- meson.build | 2 +- pdns/meson.build | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index a727eae1c2..ed4e2f1226 100644 --- a/meson.build +++ b/meson.build @@ -234,7 +234,7 @@ if get_option('module-ldap') != 'disabled' endif if get_option('tools') - tools += ['sdig', 'calidns', 'dumresp'] + tools += ['sdig', 'calidns', 'dumresp', 'kvresp'] endif diff --git a/pdns/meson.build b/pdns/meson.build index 811daafa90..5f25962764 100644 --- a/pdns/meson.build +++ b/pdns/meson.build @@ -579,6 +579,11 @@ tool_libs = { 'headers': [], 'deps': [deps, libpdns_common], }, + 'kvresp': { + 'sources': ['kvresp.cc'], + 'headers': [], + 'deps': [deps, libpdns_common], + }, } foreach tool_name, tool_info: tool_libs -- 2.47.2