From: Fred Morcos Date: Fri, 28 Jul 2023 09:27:17 +0000 (+0200) Subject: Meson: Auth pipe backend X-Git-Tag: rec-5.1.0-alpha1~80^2~316 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4617a9f44009f700c25ce0a03bd281766bb65dce;p=thirdparty%2Fpdns.git Meson: Auth pipe backend --- diff --git a/meson.build b/meson.build index a37f6dab79..08be33a51b 100644 --- a/meson.build +++ b/meson.build @@ -116,6 +116,7 @@ opt_socket_dir = get_option('socket-dir') # Modules all_modules = [ ['bind', []], + ['pipe', []], ['gmysql', ['mysql']], ['godbc', ['odbc']], ['gpgsql', ['pgsql']], diff --git a/meson_options.txt b/meson_options.txt index bff10b7604..c0517ea350 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -19,6 +19,8 @@ option('gss-tsig', type: 'boolean', value: false, description: 'Enable GSS-TSIG 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-pipe', type: 'boolean', value: false, description: 'Build the pipe backend') +option('module-pipe-dyn', type: 'boolean', value: true, description: 'Build the dynamically loadable pipe 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')