summaryrefslogtreecommitdiff
path: root/source3/wscript
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2011-05-04 18:01:04 +0200
committerGünther Deschner <gd@samba.org>2011-05-04 19:03:45 +0200
commit0d1b2d2033e9cc33accea29a4c3a8fafd3d75aa2 (patch)
treef74becc9f5a0cf061b2a1b5632fdd2091672997d /source3/wscript
parent3e211510034dd3854017e1b35ef5e1964085df5d (diff)
downloadsamba-0d1b2d2033e9cc33accea29a4c3a8fafd3d75aa2.tar.gz
samba-0d1b2d2033e9cc33accea29a4c3a8fafd3d75aa2.tar.bz2
samba-0d1b2d2033e9cc33accea29a4c3a8fafd3d75aa2.zip
s3-waf: add vfs_gpfs_hsm_notify to the build.
Volker, can you please check this is correct ? Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed May 4 19:03:45 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3/wscript')
-rw-r--r--source3/wscript6
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/wscript b/source3/wscript
index 78ff40c99a..55b62d1c7e 100644
--- a/source3/wscript
+++ b/source3/wscript
@@ -1676,6 +1676,9 @@ main() {
Logs.warn("pthreadpool support cannot be enabled when pthread support was not found")
conf.undefine('WITH_PTHREADPOOL')
+ if conf.CHECK_HEADERS('gpfs_gpl.h'):
+ conf.DEFINE('HAVE_GPFS', '1')
+
default_static_modules=TO_LIST('''pdb_smbpasswd pdb_tdbsam pdb_wbc_sam
auth_sam auth_unix auth_winbind auth_wbc auth_server
auth_domain auth_builtin vfs_default
@@ -1716,6 +1719,9 @@ main() {
if conf.CONFIG_SET('DARWINOS'):
default_shared_modules.extend(TO_LIST('charset_macosxfs'))
+ if conf.CONFIG_SET('HAVE_GPFS'):
+ default_shared_modules.extend(TO_LIST('vfs_gpfs vfs_gpfs_hsm_notify'))
+
explicit_shared_modules = TO_LIST(Options.options.shared_modules, delimiter=',')
explicit_static_modules = TO_LIST(Options.options.static_modules, delimiter=',')