summaryrefslogtreecommitdiff
path: root/source3/wscript
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2012-01-04 12:54:16 -0800
committerJeremy Allison <jra@samba.org>2012-01-05 01:43:51 +0100
commit3a18a42d13b87a5a6c41d8a70e961313fd6d0a86 (patch)
treee57fc097ed9edb42e4e2eacd43fa03d0186e50ef /source3/wscript
parentd2d4dfdfedc59cf2b4f4d667ae5c97bdd5df4b44 (diff)
downloadsamba-3a18a42d13b87a5a6c41d8a70e961313fd6d0a86.tar.gz
samba-3a18a42d13b87a5a6c41d8a70e961313fd6d0a86.tar.bz2
samba-3a18a42d13b87a5a6c41d8a70e961313fd6d0a86.zip
Add S3 vfs_aio_pthread module to replace broken glibc aio code.
Compiles but not yet tested. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Thu Jan 5 01:43:51 CET 2012 on sn-devel-104
Diffstat (limited to 'source3/wscript')
-rw-r--r--source3/wscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/wscript b/source3/wscript
index cc925a617a..846917c13b 100644
--- a/source3/wscript
+++ b/source3/wscript
@@ -1683,6 +1683,9 @@ main() {
if conf.CONFIG_SET('HAVE_AIO') and (conf.CONFIG_SET('HAVE_MSGHDR_MSG_CONTROL') or conf.CONFIG_SET('HAVE_MSGHDR_MSG_ACCTRIGHTS')):
default_shared_modules.extend(TO_LIST('vfs_aio_fork'))
+ if conf.CONFIG_SET('HAVE_AIO') and Options.options.with_pthreadpool:
+ default_shared_modules.extend(TO_LIST('vfs_aio_pthread'))
+
if conf.CONFIG_SET('HAVE_LDAP'):
default_static_modules.extend(TO_LIST('pdb_ldap idmap_ldap'))