summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2015-10-12 16:26:57 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2015-10-12 16:26:57 (GMT)
commit9863f8481f5f1837270fa0c08a3bc28dd3e34b61 (patch)
treeccd2db2ac13218c2ec35474432b61b7814ade5f9 /src
parentfa675882186356cdb9ccedd745eb040931369917 (diff)
downloadhdf5-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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5C.c b/src/H5C.c
index ee4affa..8803c14 100644
--- a/src/H5C.c
+++ b/src/H5C.c
@@ -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 */