From 237c06aad817f495fe57fcf2df434e4852c878cd Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 4 Jan 2018 17:06:53 +0100 Subject: [PATCH] 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 --- libcli/dns/wscript_build | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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', -- 2.34.1