From: Fred Morcos Date: Tue, 22 Aug 2023 14:10:29 +0000 (+0200) Subject: Meson: Add boost dependency for auth bind and pipe backends X-Git-Tag: rec-5.1.0-alpha1~80^2~148 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd8102ab7a00b4056955eb725a106cc80e60a171;p=thirdparty%2Fpdns.git Meson: Add boost dependency for auth bind and pipe backends --- diff --git a/modules/bindbackend/meson.build b/modules/bindbackend/meson.build index 0b8472c870..5c582067fb 100644 --- a/modules/bindbackend/meson.build +++ b/modules/bindbackend/meson.build @@ -11,7 +11,7 @@ extras = [ product_source_dir / 'pdns' / 'bind-dnssec.schema.sqlite3.sql', ] -deps = [dep_pdns, dep_libcrypto] +deps = [dep_pdns, dep_libcrypto, dep_boost] lib = static_library( module_backend_name, diff --git a/modules/pipebackend/meson.build b/modules/pipebackend/meson.build index f526dd94cf..1cb6cd051b 100644 --- a/modules/pipebackend/meson.build +++ b/modules/pipebackend/meson.build @@ -10,7 +10,7 @@ extras = [ 'backend.pl', ] -deps = [dep_pdns, dep_libcrypto] +deps = [dep_pdns, dep_libcrypto, dep_boost] lib = static_library( module_backend_name,