diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-03-30 13:45:23 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-03-30 13:45:23 (GMT) |
commit | 354bcd9b7ffe198e183ff656d57854604533ec14 (patch) | |
tree | ee66021faaf2bcf6776a12d42d07c131ea2baef1 /src/hdf5.h | |
parent | 680fa675fb5100f8c350ce44782e6935c70519f1 (diff) | |
download | hdf5-354bcd9b7ffe198e183ff656d57854604533ec14.zip hdf5-354bcd9b7ffe198e183ff656d57854604533ec14.tar.gz hdf5-354bcd9b7ffe198e183ff656d57854604533ec14.tar.bz2 |
[svn-r10509]
Purpose:
Bug fix
Description:
Header was expecting SRB headers to be installed.
Solution:
Only try to include SRB header if SRB is enabled.
Platforms tested:
sleipnir
Diffstat (limited to 'src/hdf5.h')
-rw-r--r-- | src/hdf5.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -48,7 +48,9 @@ #include "H5FDmpi.h" /* MPI-based file drivers */ #include "H5FDmulti.h" /* Usage-partitioned file family */ #include "H5FDsec2.h" /* POSIX unbuffered file I/O */ +#ifdef H5_HAVE_LIBSRBCLIENT #include "H5FDsrb.h" /* Remote access using SRB */ +#endif #include "H5FDstdio.h" /* Standard C buffered I/O */ #include "H5FDstream.h" /* In-memory files streamed via sockets */ |