diff options
author | Alexander Bokovoy <ab@samba.org> | 2012-05-25 18:45:17 +0300 |
---|---|---|
committer | Alexander Bokovoy <ab@samba.org> | 2012-05-25 22:22:44 +0200 |
commit | 518484af8d4960b483e40fbb244e284532efd267 (patch) | |
tree | 28fb9bdf422c65dd9d5edc8b1559ea42a20d6313 /libcli/dns | |
parent | 337353bd3c752a41b49381486b07fe91634e6c22 (diff) | |
download | samba-518484af8d4960b483e40fbb244e284532efd267.tar.gz samba-518484af8d4960b483e40fbb244e284532efd267.tar.bz2 samba-518484af8d4960b483e40fbb244e284532efd267.zip |
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 <ab@samba.org>
Autobuild-Date: Fri May 25 22:22:44 CEST 2012 on sn-devel-104
Diffstat (limited to 'libcli/dns')
-rwxr-xr-x | libcli/dns/wscript_build | 12 |
1 files changed, 7 insertions, 5 deletions
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') |