From 518484af8d4960b483e40fbb244e284532efd267 Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Fri, 25 May 2012 18:45:17 +0300 Subject: dns_hosts_file: move to a separate subsystem After discussion with Kai move dns_hosts_file to a separate subsystem and merge it into libaddns private library for s3/s4 client use. Also remove dependency in libcli/nbt, the code from libcli/dns subsystems is not used there at all. Autobuild-User: Alexander Bokovoy Autobuild-Date: Fri May 25 22:22:44 CEST 2012 on sn-devel-104 --- libcli/dns/wscript_build | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'libcli/dns/wscript_build') diff --git a/libcli/dns/wscript_build b/libcli/dns/wscript_build index 03025ad176..421dd6dca2 100755 --- a/libcli/dns/wscript_build +++ b/libcli/dns/wscript_build @@ -1,7 +1,9 @@ #!/usr/bin/env python -bld.SAMBA_LIBRARY('clidns', - source='dns.c dns_hosts_file.c', - public_deps='LIBTSOCKET tevent-util', - private_library=True, - vars=locals()) +bld.SAMBA_SUBSYSTEM('clidns', + source='dns.c', + public_deps='LIBTSOCKET tevent-util') + +bld.SAMBA_SUBSYSTEM('dnshostsfile', + source='dns_hosts_file.c', + public_deps='samba-util errors') -- cgit