From: Volker Lendecke Date: Thu, 4 Jan 2018 16:06:53 +0000 (+0100) Subject: libcli/dns: Make "clidns" a library X-Git-Tag: talloc-2.1.15~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=237c06aad817f495fe57fcf2df434e4852c878cd;p=thirdparty%2Fsamba.git libcli/dns: Make "clidns" a library This will be linked into the SAMBA_LIBRARY "addns" in the next step. Because the other user, "dnsserver_common", is also a library, we can't link this as a subsystem anymore. Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/libcli/dns/wscript_build b/libcli/dns/wscript_build index d06f84d3cc3..0def78e2e1d 100644 --- a/libcli/dns/wscript_build +++ b/libcli/dns/wscript_build @@ -1,8 +1,9 @@ #!/usr/bin/env python -bld.SAMBA_SUBSYSTEM('clidns', +bld.SAMBA_LIBRARY('clidns', source='dns.c resolvconf.c', - public_deps='LIBTSOCKET tevent-util NDR_DNS') + public_deps='LIBTSOCKET tevent-util NDR_DNS', + private_library=True) bld.SAMBA_BINARY('resolvconftest', source='resolvconftest.c',