1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00
samba-mirror/libcli/dns/wscript_build
Volker Lendecke dbbce1a454 libcli/dns: clidns must depend on ndr_standard, not on NDR_DNS
Otherwise we can't link this into other libraries

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
2019-01-15 07:53:21 +01:00

21 lines
595 B
Python

#!/usr/bin/env python
bld.SAMBA_LIBRARY('clidns',
source='dns.c resolvconf.c',
public_deps='LIBTSOCKET tevent-util ndr-standard',
private_library=True)
bld.SAMBA_BINARY('resolvconftest',
source='resolvconftest.c',
deps='clidns',
install=False)
bld.SAMBA_SUBSYSTEM('dns_lookup',
source='dns_lookup.c',
public_deps='clidns')
bld.SAMBA_BINARY('dns_lookuptest',
source='dns_lookuptest.c',
deps='dns_lookup',
install=False)