]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Meson: Cleanup misc modules
authorFred Morcos <fred.morcos@open-xchange.com>
Wed, 16 Aug 2023 13:28:01 +0000 (15:28 +0200)
committerFred Morcos <fred.morcos@open-xchange.com>
Wed, 20 Mar 2024 12:28:42 +0000 (13:28 +0100)
meson/auto-var-init/meson.build
meson/code-coverage/meson.build
meson/malloc-trace/meson.build
meson/socket-dir/meson.build

index 83346293a6d8edb7f78a812814ec5fd05013bb32..a4bba75ae281d6df15f0dd847024a0c11478c671 100644 (file)
@@ -1,5 +1,3 @@
-# Automatic Variable Initialization
-
 auto_var_init = get_option('auto-var-init')
 
 if auto_var_init != 'disabled'
index acbcb509b7c212f47103dc781aeff57a8bd5cdac..7b188ed6fd0f4404e4b4c21f2f6cb4a8b14f1b02 100644 (file)
@@ -1,5 +1,3 @@
-# Code coverage
-
 coverage = get_option('b_coverage')
 
 if coverage
index 1f48637ba8dfff01acba992c6018d8309df46d03..6b0ac963cddd946c021b1d0d77201ac4e1232328 100644 (file)
@@ -1,4 +1,2 @@
-# Malloc-trace
-
 opt_malloc_trace = get_option('malloc-trace')
-conf.set10('MALLOC_TRACE', opt_malloc_trace, description: 'Enable malloc-trace')
+conf.set('MALLOC_TRACE', opt_malloc_trace, description: 'malloc-trace')
index 673db77744ff46bdbaca49afce6015cfb937c927..21cea4669cda103e9fd7eb88ada49cf7bea2de05 100644 (file)
@@ -1,6 +1,2 @@
-# Socket Dir
-# Inputs: conf
-# Outputs: opt_socket_dir
-
 opt_socket_dir = get_option('socket-dir')
-conf.set_quoted('LOCALSTATEDIR', opt_socket_dir, description: 'Local state or socket directory')
+conf.set_quoted('LOCALSTATEDIR', opt_socket_dir, description: 'Local state/socket directory')