From 8087ceb42d72f2a07f70e8ab5462775a08303546 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 8 Mar 2010 22:32:41 +0100 Subject: [PATCH] s3:build: Fix automatic building of vfs_tsmsm if gpfs and dmapi are present. Michael (cherry picked from commit 9113e14b291c10c824d2d8ea5cb28ffc0adcb63b) Fix bug #7231 (vfs_tsmsm not built automatically). --- source3/configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/configure.in b/source3/configure.in index 0529a694596..f744761d00a 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2624,7 +2624,7 @@ SMB_CHECK_DMAPI([], AC_MSG_NOTICE(DMAPI support not present) ) # 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 -- 2.34.1