diff options
author | Samuel Cabrero <scabrero@suse.de> | 2019-01-15 17:55:07 +0100 |
---|---|---|
committer | Samuel Cabrero <scabrero@sn-devel-184> | 2020-03-20 15:36:31 +0000 |
commit | 1903467014a3f1eb8b0b15c82d8c5f25fc2ea808 (patch) | |
tree | d4e583d84e2c32ead6013a3dbecf74f45959ab71 /librpc/idl/wscript_build | |
parent | d809da3acefde4a365aea52ea60649967e561633 (diff) | |
download | samba-1903467014a3f1eb8b0b15c82d8c5f25fc2ea808.tar.gz |
pidl:NDR/ServerCompat: Compat server PIDL parser
Signed-off-by: Samuel Cabrero <scabrero@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'librpc/idl/wscript_build')
-rw-r--r-- | librpc/idl/wscript_build | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/librpc/idl/wscript_build b/librpc/idl/wscript_build index b66f27be901..7acf5542fa2 100644 --- a/librpc/idl/wscript_build +++ b/librpc/idl/wscript_build @@ -11,7 +11,7 @@ bld.SAMBA_PIDL_LIST('PIDL', svcctl.idl wkssvc.idl eventlog6.idl backupkey.idl witness.idl clusapi.idl mdssvc.idl''', - options='--header --ndr-parser --samba3-ndr-server --server --client --python', + options='--header --ndr-parser --samba3-ndr-server --server-compat --server --client --python', output_dir='../gen_ndr') # The interface names here are not the same as the IDL name, so the @@ -21,7 +21,7 @@ bld.SAMBA_PIDL_LIST('PIDL', fsrvp.idl lsa.idl winspool.idl''', - options='--header --ndr-parser --samba3-ndr-server --server --client --python', + options='--header --ndr-parser --samba3-ndr-server --server-compat --server --client --python', output_dir='../gen_ndr', generate_fuzzers=False) @@ -34,14 +34,14 @@ bld.SAMBA_PIDL_LIST('PIDL', # Services that we only have a server in the source3 style bld.SAMBA_PIDL_LIST('PIDL', '''initshutdown.idl ntsvcs.idl''', - options='--header --ndr-parser --client --python --samba3-ndr-server', + options='--header --ndr-parser --client --python --samba3-ndr-server --server-compat', output_dir='../gen_ndr') # The interface names here are not the same as the IDL name, so the # auto-genration of the fuzzer fails to link bld.SAMBA_PIDL_LIST('PIDL', '''dfs.idl''', - options='--header --ndr-parser --client --python --samba3-ndr-server', + options='--header --ndr-parser --client --python --samba3-ndr-server --server-compat', output_dir='../gen_ndr', generate_fuzzers=False) @@ -170,6 +170,6 @@ bld.SAMBA_PIDL_LIST('PIDL', bld.SAMBA_PIDL_LIST('PIDL', 'winbind.idl', - options='--header --ndr-parser --samba3-ndr-server --client --python', + options='--header --ndr-parser --samba3-ndr-server --server-compat --client --python', output_dir='../gen_ndr') |