python:tests: Store keys as bytes rather than as lists of ints
[samba.git] / libcli / dns / wscript_build
1 #!/usr/bin/env python
2
3 bld.SAMBA_LIBRARY('clidns',
4         source='dns.c resolvconf.c',
5         public_deps='LIBTSOCKET tevent-util ndr-standard',
6         private_library=True)
7
8 bld.SAMBA_BINARY('resolvconftest',
9                   source='resolvconftest.c',
10                   deps='clidns',
11                   enabled=bld.CONFIG_SET('HAVE_FMEMOPEN'),
12                   for_selftest=True)
13
14 bld.SAMBA_SUBSYSTEM('dns_lookup',
15                     source='dns_lookup.c',
16                     public_deps='clidns')
17
18 bld.SAMBA_BINARY('dns_lookuptest',
19                   source='dns_lookuptest.c',
20                   deps='dns_lookup',
21                   for_selftest=True)