diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-10-12 16:26:57 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-10-12 16:26:57 (GMT) |
commit | 9863f8481f5f1837270fa0c08a3bc28dd3e34b61 (patch) | |
tree | ccd2db2ac13218c2ec35474432b61b7814ade5f9 /src | |
parent | fa675882186356cdb9ccedd745eb040931369917 (diff) | |
download | hdf5-9863f8481f5f1837270fa0c08a3bc28dd3e34b61.zip hdf5-9863f8481f5f1837270fa0c08a3bc28dd3e34b61.tar.gz hdf5-9863f8481f5f1837270fa0c08a3bc28dd3e34b61.tar.bz2 |
[svn-r28038] Minor fix to H5C.c that #includes H5ACpkg.h, which was accidentally
removed in r28034, breaking parallel builds.
Tested on: Ubuntu 15.04 (Linux 3.19 x86_64) gcc 4.9.2
serial w/ Fortran and C++
parallel (MPICH 3.1.4) w/ Fortran
Diffstat (limited to 'src')
-rw-r--r-- | src/H5C.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -83,7 +83,8 @@ /***********/ #include "H5private.h" /* Generic Functions */ #ifdef H5_HAVE_PARALLEL -#include "H5ACprivate.h" /* Metadata cache */ +#define H5AC_PACKAGE /*suppress error about including H5ACpkg */ +#include "H5ACpkg.h" /* Metadata cache */ #endif /* H5_HAVE_PARALLEL */ #include "H5Cpkg.h" /* Cache */ #include "H5Eprivate.h" /* Error handling */ |