diff options
author | Robert Kim Yates <rkyates@llnl.gov> | 1998-08-28 22:59:41 (GMT) |
---|---|---|
committer | Robert Kim Yates <rkyates@llnl.gov> | 1998-08-28 22:59:41 (GMT) |
commit | 96c2b5fec405a2dd4a63b7482a431dfc984523df (patch) | |
tree | 60f05c8dd9c90e7f2296e954bb69aa4b95b73789 | |
parent | 01b8b7cc529ad727f8477a7129bc6a6aae926fc6 (diff) | |
download | hdf5-96c2b5fec405a2dd4a63b7482a431dfc984523df.zip hdf5-96c2b5fec405a2dd4a63b7482a431dfc984523df.tar.gz hdf5-96c2b5fec405a2dd4a63b7482a431dfc984523df.tar.bz2 |
[svn-r629] Put ifdef HAVE_PARALLEL around init of H5_mpi_opt_types_g.
-rw-r--r-- | src/H5S.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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); } |