1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

s3-waf: add vfs_time_audit to the build.

Guenther

Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Thu Oct 28 15:14:27 UTC 2010 on sn-devel-104
This commit is contained in:
Günther Deschner 2010-10-28 15:59:36 +02:00
parent e00671ee0c
commit 090fcb0114
2 changed files with 10 additions and 1 deletions

View File

@ -48,6 +48,7 @@ VFS_DIRSORT_SRC = 'vfs_dirsort.c'
VFS_SCANNEDONLY_SRC = 'vfs_scannedonly.c'
VFS_CROSSRENAME_SRC = 'vfs_crossrename.c'
VFS_LINUX_XFS_SGID_SRC = 'vfs_linux_xfs_sgid.c'
VFS_TIME_AUDIT_SRC = 'vfs_time_audit.c'
bld.SAMBA_SUBSYSTEM('NFS4_ACLS',
@ -392,6 +393,13 @@ bld.SAMBA_MODULE('vfs_linux_xfs_sgid',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('VFS_LINUX_XFS_SGID'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('VFS_LINUX_XFS_SGID'))
bld.SAMBA_MODULE('vfs_time_audit',
subsystem='vfs',
source=VFS_TIME_AUDIT_SRC,
init_function='',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('VFS_TIME_AUDIT'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('VFS_TIME_AUDIT'))
CHARSET_WEIRD_SRC = 'weird.c'

View File

@ -333,7 +333,8 @@ return acl_get_perm_np(permset_d, perm);
charset_CP437 auth_script vfs_readahead vfs_xattr_tdb
vfs_streams_xattr vfs_streams_depot vfs_acl_xattr vfs_acl_tdb
vfs_smb_traffic_analyzer vfs_preopen vfs_catia vfs_scannedonly
vfs_crossrename vfs_linux_xfs_sgid''')
vfs_crossrename vfs_linux_xfs_sgid
vfs_time_audit''')
if Options.options.developer:
default_static_modules.extend(TO_LIST('rpc_rpcecho pdb_ads'))