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')
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
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