diff options
author | Jeremy Allison <jra@samba.org> | 2012-04-10 15:45:55 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2012-04-11 02:29:04 +0200 |
commit | fe707f6549292ccb681ccd0c596cbd17525522f3 (patch) | |
tree | 5667fd10fd30c77965870a172e90427015ac57b4 /source3/modules/wscript_build | |
parent | 224379ba70a6939bd6a92012f023caeb7e43d6b7 (diff) | |
download | samba-fe707f6549292ccb681ccd0c596cbd17525522f3.tar.gz samba-fe707f6549292ccb681ccd0c596cbd17525522f3.tar.bz2 samba-fe707f6549292ccb681ccd0c596cbd17525522f3.zip |
Add a new module, aio_linux which implements Linux kernel aio support. Docs to follow.
Autobuild-User: Jeremy Allison <jra@samba.org>
Autobuild-Date: Wed Apr 11 02:29:04 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3/modules/wscript_build')
-rw-r--r-- | source3/modules/wscript_build | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/modules/wscript_build b/source3/modules/wscript_build index 32c32fa224..090ca1b7d9 100644 --- a/source3/modules/wscript_build +++ b/source3/modules/wscript_build @@ -37,6 +37,7 @@ VFS_TSMSM_SRC = 'vfs_tsmsm.c' VFS_FILEID_SRC = 'vfs_fileid.c' VFS_AIO_FORK_SRC = 'vfs_aio_fork.c' VFS_AIO_PTHREAD_SRC = 'vfs_aio_pthread.c' +VFS_AIO_LINUX_SRC = 'vfs_aio_linux.c' VFS_PREOPEN_SRC = 'vfs_preopen.c' VFS_SYNCOPS_SRC = 'vfs_syncops.c' VFS_ACL_XATTR_SRC = 'vfs_acl_xattr.c' @@ -366,6 +367,15 @@ bld.SAMBA3_MODULE('vfs_aio_pthread', enabled=bld.SAMBA3_IS_ENABLED_MODULE('vfs_aio_pthread'), allow_undefined_symbols=True) +bld.SAMBA3_MODULE('vfs_aio_linux', + subsystem='vfs', + source=VFS_AIO_LINUX_SRC, + deps='samba-util aio', + init_function='', + internal_module=bld.SAMBA3_IS_STATIC_MODULE('vfs_aio_linux'), + enabled=bld.SAMBA3_IS_ENABLED_MODULE('vfs_aio_linux'), + allow_undefined_symbols=True) + bld.SAMBA3_MODULE('vfs_preopen', subsystem='vfs', source=VFS_PREOPEN_SRC, |