diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-04-14 20:06:57 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-05-09 06:18:20 +0200 |
commit | 76969abba0453b232274520182c0c2cdfab93428 (patch) | |
tree | d9efd4d404698e940e1b5501721c8f9570dc01cd /source3/modules/wscript_build | |
parent | 5d517f41664920faa5863cbf36b5953ad4700ebd (diff) | |
download | samba-76969abba0453b232274520182c0c2cdfab93428.tar.gz samba-76969abba0453b232274520182c0c2cdfab93428.tar.bz2 samba-76969abba0453b232274520182c0c2cdfab93428.zip |
vfs: Add new VFS module vfs_nfs4acl_xattr to use nfs4acl.idl
This uses the xattr format used by the patches at http://users.suse.com/~agruen/nfs4acl/
Andrew Bartlett
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/modules/wscript_build')
-rw-r--r-- | source3/modules/wscript_build | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/modules/wscript_build b/source3/modules/wscript_build index df4f59a41f..65e96b2d54 100644 --- a/source3/modules/wscript_build +++ b/source3/modules/wscript_build @@ -21,6 +21,7 @@ VFS_AIXACL_SRC = '''vfs_aixacl.c''' VFS_AIXACL2_SRC = '''vfs_aixacl2.c''' VFS_SOLARISACL_SRC = '''vfs_solarisacl.c''' VFS_ZFSACL_SRC = '''vfs_zfsacl.c''' +VFS_NFS4ACL_XATTR_SRC = 'vfs_nfs4acl_xattr.c' VFS_HPUXACL_SRC = '''vfs_hpuxacl.c''' VFS_TRU64ACL_SRC = '''vfs_tru64acl.c''' VFS_CATIA_SRC = 'vfs_catia.c' @@ -247,6 +248,14 @@ bld.SAMBA3_MODULE('vfs_zfsacl', internal_module=bld.SAMBA3_IS_STATIC_MODULE('vfs_zfsacl'), enabled=bld.SAMBA3_IS_ENABLED_MODULE('vfs_zfsacl')) +bld.SAMBA3_MODULE('vfs_nfs4acl_xattr', + subsystem='vfs', + source=VFS_NFS4ACL_XATTR_SRC, + deps='NFS4_ACLS sunacl', + init_function='', + internal_module=bld.SAMBA3_IS_STATIC_MODULE('vfs_nfs4acl_xattr'), + enabled=bld.SAMBA3_IS_ENABLED_MODULE('vfs_nfs4acl_xattr')) + bld.SAMBA3_MODULE('vfs_hpuxacl', subsystem='vfs', source=VFS_HPUXACL_SRC, |