From: Remi Gacogne Date: Mon, 17 Feb 2025 13:58:47 +0000 (+0100) Subject: dnsdist: Only compile lmdb-safe if LMDB has been found X-Git-Tag: dnsdist-2.0.0-alpha1~30^2~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf6304dad10a2fb1680370fcd3b7d386a1fe7076;p=thirdparty%2Fpdns.git dnsdist: Only compile lmdb-safe if LMDB has been found --- diff --git a/pdns/dnsdistdist/meson.build b/pdns/dnsdistdist/meson.build index ae09fd9741..3b6f42230a 100644 --- a/pdns/dnsdistdist/meson.build +++ b/pdns/dnsdistdist/meson.build @@ -102,7 +102,7 @@ subdir('ext' / 'luawrapper') subdir('ext' / 'protozero') subdir('ext' / 'yahttp') -if get_option('lmdb').allowed() +if dep_lmdb.found() subdir('ext' / 'lmdb-safe') else dep_lmdb_safe = declare_dependency()