summaryrefslogtreecommitdiff
path: root/source3/modules/wscript_build
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-04-02 18:39:09 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-04-03 14:35:02 +1000
commitda50ff7f8481db9854843bac3c25d6fc0f0cfa9b (patch)
treec46eb1de4b76aa2e675ae592eb5b726c0c3b047f /source3/modules/wscript_build
parent7b4d511bc638b5c927dacc324628bd5db30e6dda (diff)
downloadsamba-da50ff7f8481db9854843bac3c25d6fc0f0cfa9b.tar.gz
samba-da50ff7f8481db9854843bac3c25d6fc0f0cfa9b.tar.bz2
samba-da50ff7f8481db9854843bac3c25d6fc0f0cfa9b.zip
s3-vfs: initial work on posix:eadb module
This is a module that, like vfs_xattr_tdb, stores extended attributes in a DB on disk. This uses the format needed to support the posix:eadb smb.conf option. Andrew Bartlett
Diffstat (limited to 'source3/modules/wscript_build')
-rw-r--r--source3/modules/wscript_build8
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/modules/wscript_build b/source3/modules/wscript_build
index d59e29ccd9..32c32fa224 100644
--- a/source3/modules/wscript_build
+++ b/source3/modules/wscript_build
@@ -186,6 +186,14 @@ bld.SAMBA3_MODULE('vfs_xattr_tdb',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('vfs_xattr_tdb'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('vfs_xattr_tdb'))
+bld.SAMBA3_MODULE('vfs_posix_eadb',
+ subsystem='vfs',
+ source='vfs_posix_eadb.c',
+ deps='tdb-wrap posix_eadb',
+ init_function='',
+ internal_module=bld.SAMBA3_IS_STATIC_MODULE('vfs_posix_eadb'),
+ enabled=bld.SAMBA3_IS_ENABLED_MODULE('vfs_posix_eadb'))
+
bld.SAMBA3_MODULE('vfs_posixacl',
subsystem='vfs',
source=VFS_POSIXACL_SRC,