Skip to content

Commit

Permalink
wscript: Build the KDC code if we have the AD DC build enabled
Browse files Browse the repository at this point in the history
Signed-off-by: Günther Deschner <[email protected]>
Reviewed-by: Sumit Bose <[email protected]>
Reviewed-by: Andreas Schneider <[email protected]>
Reviewed-by: Andrew Bartlett <[email protected]>
  • Loading branch information
cryptomilk authored and abartlet committed Mar 17, 2016
1 parent 4865867 commit 7feb650
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions wscript
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ def configure(conf):

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:
conf.PROCESS_SEPARATE_RULE('system_mitkrb5')
if not (Options.options.without_ad_dc or Options.options.with_system_mitkrb5):
Expand Down
1 change: 1 addition & 0 deletions wscript_build
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ else:
bld.RECURSE('libcli/smbreadline')
if bld.AD_DC_BUILD_IS_ENABLED():
bld.RECURSE('source4/setup')
bld.RECURSE('source4/kdc')
if bld.env.with_ctdb:
bld.RECURSE('ctdb')
bld.RECURSE('source4/scripting')
Expand Down
1 change: 0 additions & 1 deletion wscript_build_embedded_heimdal
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import Logs

Logs.info("\tSelected embedded Heimdal build")
bld.RECURSE('source4/kdc')
bld.RECURSE('source4/heimdal_build')
1 change: 0 additions & 1 deletion wscript_build_system_heimdal
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import Logs

Logs.info("\tSelected system Heimdal build")
bld.RECURSE('source4/kdc')
bld.RECURSE('source4/heimdal_build')

0 comments on commit 7feb650

Please sign in to comment.