From: Fred Morcos Date: Tue, 8 Aug 2023 14:13:53 +0000 (+0200) Subject: Meson: Auth socket dir X-Git-Tag: rec-5.1.0-alpha1~80^2~279 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b2ee944c9c8139b4115699719af38e8fb99f74f3;p=thirdparty%2Fpdns.git Meson: Auth socket dir --- diff --git a/meson.build b/meson.build index 949763ae8e..275dfc62c0 100644 --- a/meson.build +++ b/meson.build @@ -72,6 +72,7 @@ subdir('meson' / 'code-coverage') # Code coverage subdir('meson' / 'auto-var-init') # Automatic Variable Initialization subdir('meson' / 'sanitizers') # Sanitizers subdir('meson' / 'malloc-trace') # Malloc-trace +subdir('meson' / 'auth-socket-dir') # Socket Dir # Find ragel or pdns/dnslabeltext.cc if not ragel.found() and not fs.exists('pdns' / 'dnslabeltext.cc') @@ -112,9 +113,6 @@ foreach func: funcs # summary(func, found, bool_yn: true, section: 'Various Functions') endforeach -# Socket Dir -opt_socket_dir = get_option('socket-dir') - # Modules all_modules = { 'bind': [], diff --git a/meson/auth-socket-dir/meson.build b/meson/auth-socket-dir/meson.build new file mode 100644 index 0000000000..89a1bf7d79 --- /dev/null +++ b/meson/auth-socket-dir/meson.build @@ -0,0 +1,4 @@ +# Socket Dir +# Outputs: opt_socket_dir + +opt_socket_dir = get_option('socket-dir')