]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Meson: Auth tinyDNS backend
authorFred Morcos <fred.morcos@open-xchange.com>
Wed, 12 Jul 2023 21:29:13 +0000 (23:29 +0200)
committerFred Morcos <fred.morcos@open-xchange.com>
Wed, 20 Mar 2024 12:28:30 +0000 (13:28 +0100)
meson.build
meson_options.txt

index cc2862427912285fdf1cf731e82d3e026e83db07..3baeb15618c5bd18d04b9941180905f35274a02b 100644 (file)
@@ -121,6 +121,7 @@ all_modules = [
   ['gsqlite3', 'sqlite3'],
   ['ldap', 'ldap'],
   ['remote', 'curl'],
+  ['tinydns', 'cdb'],
 ]
 selected_modules = []
 foreach module: all_modules
index 48d2d3a531ce3301033a4fe8f140c61794227361..e501ed34f32c55d56e27b1ca25dfafd766c2971a 100644 (file)
@@ -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')