]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Meson: Auth socket dir
authorFred Morcos <fred.morcos@open-xchange.com>
Tue, 8 Aug 2023 14:13:53 +0000 (16:13 +0200)
committerFred Morcos <fred.morcos@open-xchange.com>
Wed, 20 Mar 2024 12:28:34 +0000 (13:28 +0100)
meson.build
meson/auth-socket-dir/meson.build [new file with mode: 0644]

index 949763ae8edb82d8a046ad1f5061fe2d9d930eb2..275dfc62c00f0090d2a9018e604738fa1d346031 100644 (file)
@@ -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 (file)
index 0000000..89a1bf7
--- /dev/null
@@ -0,0 +1,4 @@
+# Socket Dir
+# Outputs: opt_socket_dir
+
+opt_socket_dir = get_option('socket-dir')