]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Meson: Cleanup some of the tool listings
authorFred Morcos <fred.morcos@open-xchange.com>
Wed, 22 Nov 2023 13:26:36 +0000 (14:26 +0100)
committerFred Morcos <fred.morcos@open-xchange.com>
Wed, 20 Mar 2024 12:28:57 +0000 (13:28 +0100)
meson.build
pdns/meson.build

index 9585f7494b737f5b284e58580d36ea41904de916..9f71f45c97c6f44738e55c5649bff668d4c208fe 100644 (file)
@@ -226,20 +226,38 @@ if get_option('module-ldap') != 'disabled'
 endif
 
 if get_option('tools')
-  # TODO Broken: comfun
   tools += [
-    'sdig', 'calidns', 'dumresp', 'kvresp', 'stubquery', 'saxfr', 'nsec3dig',
-    'dnswasher', 'dnsreplay', 'dnsscan', 'nproxy', 'pdns-auth-notify', 'dnsscope',
-    'dnsgram', 'dnsdemog', 'dnspcap2calidns', 'dnspcap2protobuf'
+    'calidns',
+    # 'comfun',                   # TODO: Broken
+    'dnsdemog',
+    'dnsgram',
+    'dnspcap2calidns',
+    'dnspcap2protobuf',
+    'dnsreplay',
+    'dnsscan',
+    'dnsscope',
+    'dnswasher',
+    'dumresp',
+    'ixplore',
+    'kvresp',
+    'nproxy',
+    'nsec3dig',
+    'pdns-auth-notify',
+    'saxfr',
+    'sdig',
+    'stubquery',
   ]
 
   if have_boost_1_48_0
-    tools += ['dnstcpbench', 'dnsbulktest']
+    tools += [
+      'dnsbulktest',
+      'dnstcpbench',
+    ]
   endif
 endif
 
 if get_option('tools-ixfrdist')
-  tools += ['ixfrdist', 'ixplore']
+  tools += ['ixfrdist']
 endif
 
 if get_option('unit-tests')
index 18ce6695ccbc14a2cb8672191a23b5c2e2136f3e..72f58e59a3de38d305987f8a2767564da554378c 100644 (file)
@@ -1148,6 +1148,59 @@ if get_option('tools')
         libpdns_dnslabeltext,
       ],
     },
+    'ixplore': {
+      'main': 'ixplore.cc',
+      'sources': [
+        'arguments.cc',
+        'axfr-retriever.cc',
+        'base32.cc',
+        'base64.cc',
+        'base64.hh',
+        'dns.cc',
+        'dns_random.hh',
+        'dnsname.cc',
+        'dnsname.hh',
+        'dnsparser.cc',
+        'dnsparser.hh',
+        'dnsrecords.cc',
+        'dnssecinfra.cc',
+        'dnswriter.cc',
+        'dnswriter.hh',
+        'gss_context.cc',
+        'gss_context.hh',
+        'iputils.cc',
+        'ixfr.cc',
+        'ixfr.hh',
+        'ixfrutils.cc',
+        'ixfrutils.hh',
+        'logger.cc',
+        'misc.cc',
+        'misc.hh',
+        'nsecrecords.cc',
+        'qtype.cc',
+        'query-local-address.hh',
+        'query-local-address.cc',
+        'rcpgenerator.cc',
+        'rcpgenerator.hh',
+        'resolver.cc',
+        'sillyrecords.cc',
+        'sstuff.hh',
+        'statbag.cc',
+        'svc-records.cc',
+        'svc-records.hh',
+        'tsigverifier.cc',
+        'tsigverifier.hh',
+        'unix_utility.cc',
+        'zoneparser-tng.cc',
+
+        'pkcs11signers.cc',
+        'pkcs11signers.hh',
+      ],
+      'deps': [
+        deps,
+        libpdns_dnslabeltext,
+      ],
+    },
   }
 
   if have_boost_1_48_0
@@ -1297,59 +1350,6 @@ if get_option('tools-ixfrdist')
         libpdns_dnslabeltext,
       ],
     },
-    'ixplore': {
-      'main': 'ixplore.cc',
-      'sources': [
-        'arguments.cc',
-        'axfr-retriever.cc',
-        'base32.cc',
-        'base64.cc',
-        'base64.hh',
-        'dns.cc',
-        'dns_random.hh',
-        'dnsname.cc',
-        'dnsname.hh',
-        'dnsparser.cc',
-        'dnsparser.hh',
-        'dnsrecords.cc',
-        'dnssecinfra.cc',
-        'dnswriter.cc',
-        'dnswriter.hh',
-        'gss_context.cc',
-        'gss_context.hh',
-        'iputils.cc',
-        'ixfr.cc',
-        'ixfr.hh',
-        'ixfrutils.cc',
-        'ixfrutils.hh',
-        'logger.cc',
-        'misc.cc',
-        'misc.hh',
-        'nsecrecords.cc',
-        'qtype.cc',
-        'query-local-address.hh',
-        'query-local-address.cc',
-        'rcpgenerator.cc',
-        'rcpgenerator.hh',
-        'resolver.cc',
-        'sillyrecords.cc',
-        'sstuff.hh',
-        'statbag.cc',
-        'svc-records.cc',
-        'svc-records.hh',
-        'tsigverifier.cc',
-        'tsigverifier.hh',
-        'unix_utility.cc',
-        'zoneparser-tng.cc',
-
-        'pkcs11signers.cc',
-        'pkcs11signers.hh',
-      ],
-      'deps': [
-        deps,
-        libpdns_dnslabeltext,
-      ],
-    },
   }
 endif