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/H5FPpublic.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/H5FPpublic.h')
-rw-r--r-- | src/H5FPpublic.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/H5FPpublic.h b/src/H5FPpublic.h index 644c363..b93bd5f 100644 --- a/src/H5FPpublic.h +++ b/src/H5FPpublic.h @@ -16,6 +16,8 @@ #include "H5public.h" +#ifdef H5_HAVE_FPHDF5 + #ifdef __cplusplus extern "C" { #endif @@ -27,4 +29,7 @@ H5_DLL herr_t H5FPfinalize(void); #ifdef __cplusplus } #endif + +#endif /* H5_HAVE_FPHDF5 */ + #endif /* H5FPPUBLIC_H__ */ |