summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/H5P.c2
-rw-r--r--src/H5Ppublic.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/H5P.c b/src/H5P.c
index deccc0e..79c1e71 100644
--- a/src/H5P.c
+++ b/src/H5P.c
@@ -2650,7 +2650,7 @@ H5Pget_xfer(hid_t plist_id, H5D_transfer_t *data_xfer_mode)
FUNC_LEAVE (SUCCEED);
}
-#endif /*HAVE_PARALLEL*/
+#endif /* HAVE_PARALLEL */
#endif /* WANT_H5_V1_2_COMPAT */
diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h
index 6dc32bb..edd413a 100644
--- a/src/H5Ppublic.h
+++ b/src/H5Ppublic.h
@@ -172,7 +172,7 @@ __DLL__ herr_t H5Pget_split(hid_t plist_id, size_t meta_ext_size, char *meta_ext
__DLL__ herr_t H5Pset_family(hid_t plist_id, hsize_t memb_size, hid_t memb_plist_id);
__DLL__ herr_t H5Pget_family(hid_t plist_id, hsize_t *memb_size/*out*/,
hid_t *memb_plist_id/*out*/);
-#ifdef HAVE_PARALLEL
+#if defined(HAVE_PARALLEL) || defined (H5_HAVE_PARALLEL)
__DLL__ herr_t H5Pset_mpi(hid_t plist_id, MPI_Comm comm, MPI_Info info);
__DLL__ herr_t H5Pget_mpi(hid_t plist_id, MPI_Comm *comm, MPI_Info *info);
__DLL__ herr_t H5Pset_xfer(hid_t plist_id, H5D_transfer_t data_xfer_mode);