diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-02-21 15:50:51 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-02-22 02:51:10 +0100 |
commit | 1bf4ff2ab2e5bca2c6d7e5840fe20bd3dbd20d74 (patch) | |
tree | a6fba1a806d5b722e297debce2d414277354149f /wscript | |
parent | f0a4d3a9d5c77b87104a9a53adf026ee51113e80 (diff) | |
download | samba-1bf4ff2ab2e5bca2c6d7e5840fe20bd3dbd20d74.tar.gz |
s4-waf: added --enable-s3build configure option
this enables the build of the s3 binaries in the toplevel build
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -48,6 +48,10 @@ def set_options(opt): help='enable special build farm options', action='store_true', dest='BUILD_FARM') + gr.add_option('--enable-s3build', + help='enable build of s3 binaries', + action='store_true', dest='S3BUILD') + opt.tool_options('python') # options for disabling pyc or pyo compilation # enable options related to building python extensions @@ -63,6 +67,9 @@ def configure(conf): if Options.options.developer: conf.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD') + if Options.options.S3BUILD: + conf.env.enable_s3build = True + # this enables smbtorture.static for s3 in the build farm conf.env.BUILD_FARM = Options.options.BUILD_FARM or os.environ.get('RUN_FROM_BUILD_FARM') @@ -107,7 +114,8 @@ def configure(conf): conf.RECURSE('libcli/smbreadline') conf.RECURSE('pidl') conf.RECURSE('source4/selftest') - conf.RECURSE('source3') + if conf.env.enable_s3build: + conf.RECURSE('source3') # we don't want any libraries or modules to rely on runtime # resolution of symbols |