]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Meson: Auth pipe backend
authorFred Morcos <fred.morcos@open-xchange.com>
Fri, 28 Jul 2023 09:27:17 +0000 (11:27 +0200)
committerFred Morcos <fred.morcos@open-xchange.com>
Wed, 20 Mar 2024 12:28:31 +0000 (13:28 +0100)
meson.build
meson_options.txt

index a37f6dab798af4a6d9491829e6f3fa0220bc08e4..08be33a51bf3fea9567ac37f5228fda864423e88 100644 (file)
@@ -116,6 +116,7 @@ opt_socket_dir = get_option('socket-dir')
 # Modules
 all_modules = [
   ['bind',     []],
+  ['pipe',     []],
   ['gmysql',   ['mysql']],
   ['godbc',    ['odbc']],
   ['gpgsql',   ['pgsql']],
index bff10b76043a6768de6fe5680cb3f7ba77b1fc9b..c0517ea350ab3b8dedd3f33b024984cfb050fe38 100644 (file)
@@ -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')