diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-03-19 23:52:46 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-03-19 23:52:46 (GMT) |
commit | b9d9111ecc1501c8ea75996bae1949326de4db0d (patch) | |
tree | 0aa8966c42becd6c3aa7e040b5fbd218a5023a9b /src/H5FPprivate.h | |
parent | 276ba30370e1638744a11aefb9881a375fece4bb (diff) | |
download | hdf5-b9d9111ecc1501c8ea75996bae1949326de4db0d.zip hdf5-b9d9111ecc1501c8ea75996bae1949326de4db0d.tar.gz hdf5-b9d9111ecc1501c8ea75996bae1949326de4db0d.tar.bz2 |
[svn-r6507] Purpose:
bug Fix
Description:
MPI stuff was getting into the non-parallel headers.
Solution:
#ifdefed the headers out if H5_HAVE_FPHDF5 isn't defined...
Platforms tested:
Sol, Modi4
Misc. update:
Diffstat (limited to 'src/H5FPprivate.h')
-rw-r--r-- | src/H5FPprivate.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5FPprivate.h b/src/H5FPprivate.h index c033182..0b08d45 100644 --- a/src/H5FPprivate.h +++ b/src/H5FPprivate.h @@ -15,6 +15,8 @@ #ifndef H5FPPRIVATE_H__ #define H5FPPRIVATE_H__ 0 +#ifdef H5_HAVE_FPHDF5 + #include "H5ACpublic.h" /* Metadata Cache */ #include "H5FPpublic.h" /* Flexible Parallel HDF5 */ #include "H5Oprivate.h" /* Object Headers */ @@ -296,4 +298,6 @@ extern herr_t H5FP_read_metadata(char **mdata, int len, int from); } #endif /* __cplusplus */ +#endif /* H5_HAVE_FPHDF5 */ + #endif /* H5FPPRIVATE_H__ */ |