From 6af5ba7c56b5af9ba9fe168c8d5889cdf2ad9433 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Thu, 8 May 2003 17:25:08 -0500 Subject: [svn-r6841] Purpose: Bug Fix Description: A variable wasn't declared in this file. Solution: Put the extern declaration of the variable in this file. It's defined in the H5S.c module. Platforms tested: Modi4 (This affects only parallel platforms) Misc. update: --- src/H5Dio.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/H5Dio.c b/src/H5Dio.c index 4ece1b4..f07666d 100644 --- a/src/H5Dio.c +++ b/src/H5Dio.c @@ -62,6 +62,11 @@ typedef struct fm_map { static int interface_initialize_g = 0; #define INTERFACE_INIT NULL +#ifdef H5_HAVE_PARALLEL +/* Global vars whose value can be set from environment variable also */ +extern hbool_t H5S_mpi_opt_types_g; +#endif /* H5_HAVE_PARALLEL */ + /* Local functions */ static herr_t H5D_read(H5D_t *dataset, const H5T_t *mem_type, const H5S_t *mem_space, const H5S_t *file_space, -- cgit v0.12