From e45e342624da1b7f5df42c34c6fdccf32fc7b0e2 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 4 Nov 2019 11:52:27 +1300 Subject: [PATCH] librpc: Do not include the ndr_table for libnet_join.idl and libnetapi.idl in the global list These are not wire protocols, there are no structures to parse. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14191 Signed-off-by: Andrew Bartlett Signed-off-by: Douglas Bagnall Pair-progammed-with: Douglas Bagnall --- source3/librpc/idl/wscript_build | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/source3/librpc/idl/wscript_build b/source3/librpc/idl/wscript_build index 183226e5f9b..2c6ec49faec 100644 --- a/source3/librpc/idl/wscript_build +++ b/source3/librpc/idl/wscript_build @@ -5,10 +5,17 @@ import os topinclude=os.path.join(bld.srcnode.abspath(), 'librpc/idl') bld.SAMBA_PIDL_LIST('PIDL', - '''libnetapi.idl open_files.idl - perfcount.idl secrets.idl libnet_join.idl + '''open_files.idl + perfcount.idl secrets.idl smbXsrv.idl leases_db.idl ''', options='--includedir=%s --header --ndr-parser' % topinclude, output_dir='../gen_ndr') + +bld.SAMBA_PIDL_LIST('PIDL', + '''libnetapi.idl libnet_join.idl + ''', + options='--includedir=%s --header --ndr-parser' % topinclude, + output_dir='../gen_ndr', + generate_tables=False) -- 2.47.3