1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/lib/audit_logging/wscript_build
Volker Lendecke 42e4691cf5 audit_logging: Simplify json_add_stringn() with json_stringn()
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>

Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Mon Aug 14 20:51:11 UTC 2023 on atb-devel-224
2023-08-14 20:51:11 +00:00

61 lines
1.5 KiB
Python

#!/usr/bin/env python
bld.SAMBA_SUBSYSTEM(
'audit_logging',
deps='''MESSAGING_SEND
jansson
samba-debug
LIBTSOCKET
authn_policy''',
source='audit_logging.c'
)
if bld.AD_DC_BUILD_IS_ENABLED():
bld.SAMBA_BINARY(
'audit_logging_test',
source='tests/audit_logging_test.c',
deps='''
audit_logging
jansson
cmocka
talloc
samba-util
LIBTSOCKET
authn_policy
''',
for_selftest=True
)
if bld.AD_DC_BUILD_IS_ENABLED():
bld.SAMBA_BINARY(
'audit_logging_error_test',
source='tests/audit_logging_error_test.c',
deps='''
audit_logging
jansson
cmocka
talloc
samba-util
LIBTSOCKET
authn_policy
''',
for_selftest=True,
ldflags='''
-Wl,--wrap,json_object_set_new
-Wl,--wrap,json_object_update
-Wl,--wrap,json_array_append_new
-Wl,--wrap,json_array_extend
-Wl,--wrap,json_object
-Wl,--wrap,json_string
-Wl,--wrap,json_stringn
-Wl,--wrap,json_integer
-Wl,--wrap,json_array
-Wl,--wrap,json_dumps
-Wl,--wrap,gettimeofday
-Wl,--wrap,localtime
-Wl,--wrap,talloc_named_const
-Wl,--wrap,talloc_strdup
-Wl,--wrap,tsocket_address_string
'''
)