From: Fred Morcos Date: Fri, 28 Jul 2023 09:27:10 +0000 (+0200) Subject: Meson: Auth bind module X-Git-Tag: rec-5.1.0-alpha1~80^2~317 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e12bf928c50a7e716569aeb80dcdfe262fbf5a10;p=thirdparty%2Fpdns.git Meson: Auth bind module --- diff --git a/meson.build b/meson.build index cca334bc9f..a37f6dab79 100644 --- a/meson.build +++ b/meson.build @@ -115,6 +115,7 @@ opt_socket_dir = get_option('socket-dir') # Modules all_modules = [ + ['bind', []], ['gmysql', ['mysql']], ['godbc', ['odbc']], ['gpgsql', ['pgsql']], diff --git a/meson_options.txt b/meson_options.txt index da13931d4c..bff10b7604 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -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')