mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
wscript: Build the KDC code if we have the AD DC build enabled
Signed-off-by: Günther Deschner <gd@samba.org> Reviewed-by: Sumit Bose <sbose@redhat.com> Reviewed-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
4865867f59
commit
7feb650a37
3
wscript
3
wscript
@ -136,6 +136,9 @@ def configure(conf):
|
|||||||
|
|
||||||
conf.RECURSE('lib/ldb')
|
conf.RECURSE('lib/ldb')
|
||||||
|
|
||||||
|
if not (Options.options.without_ad_dc):
|
||||||
|
conf.DEFINE('AD_DC_BUILD_IS_ENABLED', 1)
|
||||||
|
|
||||||
if Options.options.with_system_mitkrb5:
|
if Options.options.with_system_mitkrb5:
|
||||||
conf.PROCESS_SEPARATE_RULE('system_mitkrb5')
|
conf.PROCESS_SEPARATE_RULE('system_mitkrb5')
|
||||||
if not (Options.options.without_ad_dc or Options.options.with_system_mitkrb5):
|
if not (Options.options.without_ad_dc or Options.options.with_system_mitkrb5):
|
||||||
|
@ -138,6 +138,7 @@ else:
|
|||||||
bld.RECURSE('libcli/smbreadline')
|
bld.RECURSE('libcli/smbreadline')
|
||||||
if bld.AD_DC_BUILD_IS_ENABLED():
|
if bld.AD_DC_BUILD_IS_ENABLED():
|
||||||
bld.RECURSE('source4/setup')
|
bld.RECURSE('source4/setup')
|
||||||
|
bld.RECURSE('source4/kdc')
|
||||||
if bld.env.with_ctdb:
|
if bld.env.with_ctdb:
|
||||||
bld.RECURSE('ctdb')
|
bld.RECURSE('ctdb')
|
||||||
bld.RECURSE('source4/scripting')
|
bld.RECURSE('source4/scripting')
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import Logs
|
import Logs
|
||||||
|
|
||||||
Logs.info("\tSelected embedded Heimdal build")
|
Logs.info("\tSelected embedded Heimdal build")
|
||||||
bld.RECURSE('source4/kdc')
|
|
||||||
bld.RECURSE('source4/heimdal_build')
|
bld.RECURSE('source4/heimdal_build')
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import Logs
|
import Logs
|
||||||
|
|
||||||
Logs.info("\tSelected system Heimdal build")
|
Logs.info("\tSelected system Heimdal build")
|
||||||
bld.RECURSE('source4/kdc')
|
|
||||||
bld.RECURSE('source4/heimdal_build')
|
bld.RECURSE('source4/heimdal_build')
|
||||||
|
Loading…
Reference in New Issue
Block a user