From d968211357773992a018d3b25dcc28f2568b16c9 Mon Sep 17 00:00:00 2001 From: Fred Morcos Date: Wed, 12 Jul 2023 23:29:13 +0200 Subject: [PATCH] Meson: Auth tinyDNS backend --- meson.build | 1 + meson_options.txt | 2 ++ 2 files changed, 3 insertions(+) diff --git a/meson.build b/meson.build index cc28624279..3baeb15618 100644 --- a/meson.build +++ b/meson.build @@ -121,6 +121,7 @@ all_modules = [ ['gsqlite3', 'sqlite3'], ['ldap', 'ldap'], ['remote', 'curl'], + ['tinydns', 'cdb'], ] selected_modules = [] foreach module: all_modules diff --git a/meson_options.txt b/meson_options.txt index 48d2d3a531..e501ed34f3 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -29,3 +29,5 @@ option('module-ldap', type: 'boolean', value: false, description: 'Build the LDA option('module-ldap-dyn', type: 'boolean', value: false, description: 'Build the dynamically loadable LDAP backend') option('module-remote', type: 'boolean', value: false, description: 'Build the remote backend') option('module-remote-dyn', type: 'boolean', value: false, description: 'Build the dynamically loadable remote backend') +option('module-tinydns', type: 'boolean', value: false, description: 'Build the tinyDNS backend') +option('module-tinydns-dyn', type: 'boolean', value: false, description: 'Build the dynamically loadable tinyDNS backend') -- 2.47.2