diff options
author | Björn Baumbach <bb@sernet.de> | 2018-04-17 15:47:58 +0200 |
---|---|---|
committer | Björn Baumbach <bbaumbach@samba.org> | 2018-04-18 15:25:42 +0200 |
commit | cc1eed99bda3773dc13e927f1df1c4fd72e4b848 (patch) | |
tree | 4df102dc87b7abacfdf04930a57d31af8f11ce5a /wscript | |
parent | fc473cd28261478cc9c3232b43fc725f0468f8a9 (diff) | |
download | samba-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-- | wscript | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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') |