1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-27 22:50:26 +03:00

dns: build python bindings for dnsserver RPC protocol

This commit is contained in:
Andrew Tridgell 2011-09-26 09:50:11 +10:00
parent ff482bc836
commit 57e30bc0cb
2 changed files with 11 additions and 0 deletions

View File

@ -558,6 +558,11 @@ bld.SAMBA_SUBSYSTEM('RPC_NDR_DNSP',
public_deps='dcerpc-binding NDR_DNSP'
)
bld.SAMBA_SUBSYSTEM('RPC_NDR_DNSSERVER',
source='gen_ndr/ndr_dnsserver_c.c',
public_deps='dcerpc-binding ndr-standard'
)
# a grouping library for NDR subsystems that may be used by more than one target
bld.SAMBA_LIBRARY('ndr-samba',
source=[],

View File

@ -340,6 +340,12 @@ bld.SAMBA_PYTHON('python_netlogon',
realname='samba/dcerpc/netlogon.so'
)
bld.SAMBA_PYTHON('python_dnsserver',
source='../../librpc/gen_ndr/py_dnsserver.c',
deps='RPC_NDR_DNSSERVER pytalloc-util pyrpc_util',
realname='samba/dcerpc/dnsserver.so'
)
bld.SAMBA_SCRIPT('python_dcerpc_init',
pattern='rpc/dcerpc.py',
installdir='python/samba/dcerpc',