]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Meson: Auth bind module
authorFred Morcos <fred.morcos@open-xchange.com>
Fri, 28 Jul 2023 09:27:10 +0000 (11:27 +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 cca334bc9f72957ba1fc8b899c9b2968e2960e4a..a37f6dab798af4a6d9491829e6f3fa0220bc08e4 100644 (file)
@@ -115,6 +115,7 @@ opt_socket_dir = get_option('socket-dir')
 
 # Modules
 all_modules = [
+  ['bind',     []],
   ['gmysql',   ['mysql']],
   ['godbc',    ['odbc']],
   ['gpgsql',   ['pgsql']],
index da13931d4c0bf1c4beeb76ac4d961276a9dbc3ba..bff10b76043a6768de6fe5680cb3f7ba77b1fc9b 100644 (file)
@@ -17,6 +17,8 @@ option('verbose-logging', type: 'boolean', value: false, description: 'Enable ve
 option('pkcs11', type: 'boolean', value: false, description: 'Enable PKCS11 support (experimental)')
 option('gss-tsig', type: 'boolean', value: false, description: 'Enable GSS-TSIG support (experimental)')
 option('socket-dir', type: 'string', value: '/var/run', description: 'Where the control socket lives')
+option('module-bind', type: 'boolean', value: true, description: 'Build the bind backend')
+option('module-bind-dyn', type: 'boolean', value: false, description: 'Build the dynamically loadable bind backend')
 option('module-gmysql', type: 'boolean', value: true, description: 'Build the gmysql backend')
 option('module-gmysql-dyn', type: 'boolean', value: false, description: 'Build the dynamically loadable gmysql backend')
 option('module-godbc', type: 'boolean', value: false, description: 'Build the godbc backend')