summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRobert Kim Yates <rkyates@llnl.gov>1998-08-28 22:59:41 (GMT)
committerRobert Kim Yates <rkyates@llnl.gov>1998-08-28 22:59:41 (GMT)
commit96c2b5fec405a2dd4a63b7482a431dfc984523df (patch)
tree60f05c8dd9c90e7f2296e954bb69aa4b95b73789 /src
parent01b8b7cc529ad727f8477a7129bc6a6aae926fc6 (diff)
downloadhdf5-96c2b5fec405a2dd4a63b7482a431dfc984523df.zip
hdf5-96c2b5fec405a2dd4a63b7482a431dfc984523df.tar.gz
hdf5-96c2b5fec405a2dd4a63b7482a431dfc984523df.tar.bz2
[svn-r629] Put ifdef HAVE_PARALLEL around init of H5_mpi_opt_types_g.
Diffstat (limited to 'src')
-rw-r--r--src/H5S.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5S.c b/src/H5S.c
index a30f422..b8878cd 100644
--- a/src/H5S.c
+++ b/src/H5S.c
@@ -78,6 +78,7 @@ H5S_init_interface(void)
"unable to register one or more conversion functions");
}
+#ifdef HAVE_PARALLEL
{
/* Allow MPI buf-and-file-type optimizations? */
const char *s = getenv ("HDF5_MPI_OPT_TYPES");
@@ -85,6 +86,7 @@ H5S_init_interface(void)
H5_mpi_opt_types_g = (int)HDstrtol (s, NULL, 0);
}
}
+#endif
FUNC_LEAVE(ret_value);
}