summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorBjörn Baumbach <bb@sernet.de>2018-04-17 15:47:58 +0200
committerBjörn Baumbach <bbaumbach@samba.org>2018-04-18 15:25:42 +0200
commitcc1eed99bda3773dc13e927f1df1c4fd72e4b848 (patch)
tree4df102dc87b7abacfdf04930a57d31af8f11ce5a /wscript
parentfc473cd28261478cc9c3232b43fc725f0468f8a9 (diff)
downloadsamba-cc1eed99bda3773dc13e927f1df1c4fd72e4b848.tar.gz
build: add option to choose to build with or without JSON audit support
Add a new configure option: --with-json-audit Build with JSON auth audit support (default=auto). This requires the jansson devel package. Signed-off-by: Björn Baumbach <bb@sernet.de> Reviewed-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Gary Lockyer <gary@catalyst.net.nz> Autobuild-User(master): <bbaumbach@samba.org> Autobuild-Date(master): Wed Apr 18 15:25:42 CEST 2018 on sn-devel-144
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 2 insertions, 0 deletions
diff --git a/wscript b/wscript
index 0985aa94867..b45146c31b2 100644
--- a/wscript
+++ b/wscript
@@ -35,6 +35,7 @@ def system_mitkrb5_callback(option, opt, value, parser):
def set_options(opt):
opt.BUILTIN_DEFAULT('NONE')
opt.PRIVATE_EXTENSION_DEFAULT('samba4')
+ opt.RECURSE('auth')
opt.RECURSE('lib/replace')
opt.RECURSE('dynconfig')
opt.RECURSE('packaging')
@@ -205,6 +206,7 @@ def configure(conf):
# system-provided or embedded Heimdal build
if conf.CONFIG_GET('KRB5_VENDOR') in (None, 'heimdal'):
conf.RECURSE('source4/heimdal_build')
+ conf.RECURSE('auth')
conf.RECURSE('source4/lib/tls')
conf.RECURSE('source4/dsdb/samdb/ldb_modules')
conf.RECURSE('source4/ntvfs/sysdep')