From 9de08ab78f1d5db3efb2bb4392a763e64d913c99 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Thu, 8 Sep 2011 12:20:47 +0000 Subject: [PATCH] define PARALLEL_IO if H5_HAVE_PARALLEL is defined --- src/include/h5core/h5_core.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/include/h5core/h5_core.h b/src/include/h5core/h5_core.h index 5cce786..cae7dc5 100644 --- a/src/include/h5core/h5_core.h +++ b/src/include/h5core/h5_core.h @@ -142,6 +142,12 @@ done: \ } #endif +#include +#if defined(H5_HAVE_PARALLEL) +#define PARALLEL_IO 1 +#endif + + #if defined(PARALLEL_IO) #include #endif