summaryrefslogtreecommitdiff
path: root/source3/modules/wscript_build
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-08-15 20:33:27 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-08-15 16:28:03 +0200
commitfd42bc1846929d163cdf25a0e66feba16bffc442 (patch)
tree8027cce773d23dd04f198315760220a5afd239c9 /source3/modules/wscript_build
parentd2d5fb1abfcb9d21fe2742d53de00c7638fad14d (diff)
downloadsamba-fd42bc1846929d163cdf25a0e66feba16bffc442.tar.gz
samba-fd42bc1846929d163cdf25a0e66feba16bffc442.tar.bz2
samba-fd42bc1846929d163cdf25a0e66feba16bffc442.zip
librpc/idl: Make smb_acl_t public so we can pull/push it as a blob
Diffstat (limited to 'source3/modules/wscript_build')
-rw-r--r--source3/modules/wscript_build9
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/modules/wscript_build b/source3/modules/wscript_build
index aaefd98727..4043292069 100644
--- a/source3/modules/wscript_build
+++ b/source3/modules/wscript_build
@@ -5,6 +5,7 @@ VFS_AUDIT_SRC = '''vfs_audit.c'''
VFS_EXTD_AUDIT_SRC = '''vfs_extd_audit.c'''
VFS_FULL_AUDIT_SRC = '''vfs_full_audit.c'''
VFS_FAKE_PERMS_SRC = '''vfs_fake_perms.c'''
+VFS_FAKE_ACLS_SRC = '''vfs_fake_acls.c'''
VFS_RECYCLE_SRC = '''vfs_recycle.c'''
VFS_NETATALK_SRC = '''vfs_netatalk.c'''
VFS_DEFAULT_QUOTA_SRC = '''vfs_default_quota.c'''
@@ -104,6 +105,14 @@ bld.SAMBA3_MODULE('vfs_fake_perms',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('vfs_fake_perms'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('vfs_fake_perms'))
+bld.SAMBA3_MODULE('vfs_fake_acls',
+ subsystem='vfs',
+ source=VFS_FAKE_ACLS_SRC,
+ deps='acl attr samba-util',
+ init_function='',
+ internal_module=bld.SAMBA3_IS_STATIC_MODULE('vfs_fake_acls'),
+ enabled=bld.SAMBA3_IS_ENABLED_MODULE('vfs_fake_acls'))
+
bld.SAMBA3_MODULE('vfs_recycle',
subsystem='vfs',
source=VFS_RECYCLE_SRC,