summaryrefslogtreecommitdiff
path: root/source3/configure.in
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2010-03-08 22:32:41 +0100
committerMichael Adam <obnox@samba.org>2010-03-09 00:51:18 +0100
commit9113e14b291c10c824d2d8ea5cb28ffc0adcb63b (patch)
treecde7e17b189c73de0609f6f2da9e1f6e459559aa /source3/configure.in
parentb845025daf2da85eb1af6cbfa7878cf59a32f2a6 (diff)
downloadsamba-9113e14b291c10c824d2d8ea5cb28ffc0adcb63b.tar.gz
samba-9113e14b291c10c824d2d8ea5cb28ffc0adcb63b.tar.bz2
samba-9113e14b291c10c824d2d8ea5cb28ffc0adcb63b.zip
s3:build: Fix automatic building of vfs_tsmsm if gpfs and dmapi are present.
Michael
Diffstat (limited to 'source3/configure.in')
-rw-r--r--source3/configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in
index 436f708c79..f0dabbf444 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -2700,7 +2700,7 @@ fi
# Add TSM SM VFS module only if there are both GPFS and DMAPI support
# Theoretically it should work with AIX JFS2 too but this needs testing
-if test x"$samba_cv_HAVE_GPFS" = x"yes" && test x"$samba_dmapi_libs" != x"" ; then
+if test x"$ac_cv_header_gpfs_gpl_h" = x"yes" && test x"$samba_dmapi_libs" != x"" ; then
default_shared_modules="$default_shared_modules vfs_tsmsm"
fi