diff options
author | Alexander Bokovoy <ab@samba.org> | 2012-06-01 15:38:56 +0300 |
---|---|---|
committer | Alexander Bokovoy <ab@samba.org> | 2012-06-01 16:46:07 +0200 |
commit | eaf9b86d601d7564199bdc037dc5024e6a4e5908 (patch) | |
tree | 9b823e4c28ada770b55a4fa47d22c04ad9017f7a /source4/smbd/wscript_build | |
parent | 6e9aca7d4100e3c0f3a9b0ffe21fb3b4a8a5c87f (diff) | |
download | samba-eaf9b86d601d7564199bdc037dc5024e6a4e5908.tar.gz samba-eaf9b86d601d7564199bdc037dc5024e6a4e5908.tar.bz2 samba-eaf9b86d601d7564199bdc037dc5024e6a4e5908.zip |
Revert "waf-mitkrb5: enable dcerpc_server library to support OpenChange client code"
This reverts commit f8c447b1a48eaf12dcf70b92fd7525c4ad26c246.
After discussing with Julien (Openchange) and Metze, I decided to revert this code.
Instead I made a patch to Openchange which allows to build client side only.
Openchange server code requires working s4 member DC and --without-ad-dc build
does not provide working provisioning even if we enable dcerpc_server and end point mapper.
Autobuild-User: Alexander Bokovoy <ab@samba.org>
Autobuild-Date: Fri Jun 1 16:46:08 CEST 2012 on sn-devel-104
Diffstat (limited to 'source4/smbd/wscript_build')
-rw-r--r-- | source4/smbd/wscript_build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/smbd/wscript_build b/source4/smbd/wscript_build index f86cd5199b..97877fc54b 100644 --- a/source4/smbd/wscript_build +++ b/source4/smbd/wscript_build @@ -5,7 +5,7 @@ bld.SAMBA_LIBRARY('service', autoproto='service_proto.h', deps='tevent MESSAGING samba_socket RPC_NDR_IRPC NDR_NAMED_PIPE_AUTH npa_tstream gssapi samba-credentials LIBTSOCKET LIBSAMBA_TSOCKET process_model', private_library=True, - enabled=True + enabled=bld.AD_DC_BUILD_IS_ENABLED() ) @@ -20,7 +20,7 @@ bld.SAMBA_LIBRARY('process_model', autoproto='process_model_proto.h', deps='samba-util samba-hostconfig samba-modules', private_library=True, - enabled=True + enabled=bld.AD_DC_BUILD_IS_ENABLED() ) bld.SAMBA_BINARY('samba', |