From: Fred Morcos Date: Wed, 12 Jul 2023 21:29:13 +0000 (+0200) Subject: Meson: Auth tinyDNS backend X-Git-Tag: rec-5.1.0-alpha1~80^2~327 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d968211357773992a018d3b25dcc28f2568b16c9;p=thirdparty%2Fpdns.git Meson: Auth tinyDNS backend --- 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')