summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2011-02-07 12:38:48 +0100
committerGünther Deschner <gd@samba.org>2011-02-07 13:21:50 +0100
commit13d8290d0d4f574cadd0c5daabe4e527ce78db30 (patch)
tree3d8ada1e7f45e1926b70715b049f988f5af57503
parent7637e1df8eca417a78d9949b3b776b51ae250d74 (diff)
downloadsamba-13d8290d0d4f574cadd0c5daabe4e527ce78db30.tar.gz
samba-13d8290d0d4f574cadd0c5daabe4e527ce78db30.tar.bz2
samba-13d8290d0d4f574cadd0c5daabe4e527ce78db30.zip
s3-waf: fix wrong check for vfs_aio_fork dependencies.
Guenther
-rw-r--r--source3/wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/wscript b/source3/wscript
index 0dd71fb828..6c8c38f0ae 100644
--- a/source3/wscript
+++ b/source3/wscript
@@ -496,7 +496,7 @@ msg.msg_acctrightslen = sizeof(fd);
if conf.CONFIG_SET('HAVE_STATFS_F_FSID'):
default_shared_modules.extend(TO_LIST('vfs_fileid'))
- if conf.CONFIG_SET('HAVE_AIO') and conf.CONFIG_SET('HAVE_MSGHDR_MSG_CONTROL') and conf.CONFIG_SET('HAVE_MSGHDR_MSG_ACCTRIGHTS'):
+ 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'))
explicit_shared_modules = TO_LIST(Options.options.shared_modules, delimiter=',')