summaryrefslogtreecommitdiffstats
path: root/perform
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-12-10 16:25:07 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-12-10 16:25:07 (GMT)
commitd19927898d6aed66d3f46ca5e72bba2469372820 (patch)
tree0feb98c987a5e5616d6a5cb76effe2122f0c8de3 /perform
parent7aee827e453f31d5fbfb2eb7133062a10cc45b90 (diff)
downloadhdf5-d19927898d6aed66d3f46ca5e72bba2469372820.zip
hdf5-d19927898d6aed66d3f46ca5e72bba2469372820.tar.gz
hdf5-d19927898d6aed66d3f46ca5e72bba2469372820.tar.bz2
[svn-r7921] Purpose:
Bug fix Description: Fix a couple of 1.4 compat bogons that crept in. Platforms tested: FreeBSD 4.9 (sleipnir) config not tested with h5committest
Diffstat (limited to 'perform')
-rw-r--r--perform/perf_meta.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/perform/perf_meta.c b/perform/perf_meta.c
index f50b07d..9609b62 100644
--- a/perform/perf_meta.c
+++ b/perform/perf_meta.c
@@ -807,7 +807,11 @@ main(int argc, char **argv)
if(facc_type == FACC_DEFAULT || facc_type == FACC_MPIO)
H5Pset_fapl_mpio(fapl, MPI_COMM_WORLD, MPI_INFO_NULL);
else if(facc_type == FACC_MPIPOSIX)
+#ifdef H5_WANT_H5_V1_4_COMPAT
+ H5Pset_fapl_mpiposix(fapl, MPI_COMM_WORLD);
+#else /* H5_WANT_H5_V1_4_COMPAT */
H5Pset_fapl_mpiposix(fapl, MPI_COMM_WORLD, FALSE);
+#endif /* H5_WANT_H5_V1_4_COMPAT */
#endif /*H5_HAVE_PARALLEL*/
}