mirror of
https://github.com/samba-team/samba.git
synced 2025-01-06 13:18:07 +03:00
c95a2785e2
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
17 lines
527 B
Python
17 lines
527 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_LIBRARY('addns',
|
|
source='''
|
|
dnsquery.c
|
|
dnsrecord.c
|
|
dnsutils.c
|
|
dnssock.c
|
|
dnsgss.c
|
|
dnsmarshall.c
|
|
error.c
|
|
dnsquery_srv.c
|
|
''',
|
|
public_deps='samba-util gensec ndr resolv dns_lookup',
|
|
private_library=True,
|
|
vars=locals())
|