mirror of
https://github.com/samba-team/samba.git
synced 2025-01-13 13:18:06 +03:00
a772797a38
The extra fields in the structure that Samba4 does not use should not bother it. Andrew Bartlett Signed-off-by: Andrew Tridgell <tridge@samba.org>
17 lines
589 B
Python
17 lines
589 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
|
|
topinclude=os.path.join(bld.srcnode.abspath(), 'librpc/idl')
|
|
|
|
bld.SAMBA_PIDL_LIST('PIDL',
|
|
'''messaging.idl libnetapi.idl
|
|
perfcount.idl secrets.idl libnet_join.idl''',
|
|
options='--includedir=%s --header --ndr-parser' % topinclude,
|
|
output_dir='../gen_ndr')
|
|
|
|
bld.SAMBA_PIDL_LIST('PIDL',
|
|
'wbint.idl',
|
|
options='--includedir=%s --header --ndr-parser --samba3-ndr-server --client' % topinclude,
|
|
output_dir='../gen_ndr')
|