From: Fred Morcos Date: Wed, 16 Aug 2023 13:28:01 +0000 (+0200) Subject: Meson: Cleanup misc modules X-Git-Tag: rec-5.1.0-alpha1~80^2~194 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=34eb2749c15f981620f13a7af325114c5ed3b85d;p=thirdparty%2Fpdns.git Meson: Cleanup misc modules --- diff --git a/meson/auto-var-init/meson.build b/meson/auto-var-init/meson.build index 83346293a6..a4bba75ae2 100644 --- a/meson/auto-var-init/meson.build +++ b/meson/auto-var-init/meson.build @@ -1,5 +1,3 @@ -# Automatic Variable Initialization - auto_var_init = get_option('auto-var-init') if auto_var_init != 'disabled' diff --git a/meson/code-coverage/meson.build b/meson/code-coverage/meson.build index acbcb509b7..7b188ed6fd 100644 --- a/meson/code-coverage/meson.build +++ b/meson/code-coverage/meson.build @@ -1,5 +1,3 @@ -# Code coverage - coverage = get_option('b_coverage') if coverage diff --git a/meson/malloc-trace/meson.build b/meson/malloc-trace/meson.build index 1f48637ba8..6b0ac963cd 100644 --- a/meson/malloc-trace/meson.build +++ b/meson/malloc-trace/meson.build @@ -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') diff --git a/meson/socket-dir/meson.build b/meson/socket-dir/meson.build index 673db77744..21cea4669c 100644 --- a/meson/socket-dir/meson.build +++ b/meson/socket-dir/meson.build @@ -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')