diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-05-09 11:00:18 +0200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-05-09 12:25:33 +0200 |
commit | 14f99167f600ae9a3351d4ff7d089e54ca3149ac (patch) | |
tree | 92f2208a8721312fb3a46be32d70528519d8354c /source4/librpc | |
parent | 7e8f086798c36f64581ed7444df535e85fa0b5af (diff) | |
download | samba-14f99167f600ae9a3351d4ff7d089e54ca3149ac.tar.gz samba-14f99167f600ae9a3351d4ff7d089e54ca3149ac.tar.bz2 samba-14f99167f600ae9a3351d4ff7d089e54ca3149ac.zip |
build: Remove --disable-s3build so we can rely on these subsystems
This will make it easier to write code that uses the whole codebase.
Andrew Bartlett
Autobuild-User: Andrew Bartlett <abartlet@samba.org>
Autobuild-Date: Mon May 9 12:25:33 CEST 2011 on sn-devel-104
Diffstat (limited to 'source4/librpc')
-rwxr-xr-x | source4/librpc/wscript_build | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/source4/librpc/wscript_build b/source4/librpc/wscript_build index ce015ccaa5..e9456074f6 100755 --- a/source4/librpc/wscript_build +++ b/source4/librpc/wscript_build @@ -92,11 +92,6 @@ bld.SAMBA_LIBRARY('dcerpc-samba4', bld.SAMBA_PIDL_TABLES('GEN_NDR_TABLES', 'gen_ndr/tables.c') -if bld.env.enable_s3build: - s3_ndr = "NDR_WBINT" -else: - s3_ndr = "" - bld.SAMBA_SUBSYSTEM('ndr-table', source='../../librpc/ndr/ndr_table.c gen_ndr/tables.c', public_deps='''ndr-standard NDR_AUDIOSRV NDR_DSBACKUP NDR_EFS @@ -109,7 +104,7 @@ bld.SAMBA_SUBSYSTEM('ndr-table', NDR_SASL_HELPERS NDR_NOTIFY NDR_WINBIND NDR_FRSRPC NDR_FRSAPI NDR_FRSTRANS NDR_NFS4ACL NDR_NTP_SIGND NDR_DCOM NDR_WMI NDR_NAMED_PIPE_AUTH NDR_NTLMSSP NDR_DFSBLOBS NDR_DNSP - NDR_NTPRINTING NDR_DNS NDR_BACKUPKEY NDR_PREG ''' + s3_ndr, + NDR_NTPRINTING NDR_DNS NDR_BACKUPKEY NDR_PREG NDR_WBINT''', depends_on='GEN_NDR_TABLES' ) |