diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2013-03-26 14:52:05 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2013-03-26 14:52:05 (GMT) |
commit | 41cd6b928b76ba8c3c39027f3de2085544f44464 (patch) | |
tree | c969d3d1b096a8ea63431d546832badd88162b41 /src/H5VLiod.h | |
parent | 72553ef57e289352f7552a68704e97e684d56f1e (diff) | |
download | hdf5-41cd6b928b76ba8c3c39027f3de2085544f44464.zip hdf5-41cd6b928b76ba8c3c39027f3de2085544f44464.tar.gz hdf5-41cd6b928b76ba8c3c39027f3de2085544f44464.tar.bz2 |
[svn-r23457] add --enable-eff to configure that defaults to no
add HAVE_EFF build flag to indicate whether the IOD plugin should be compiled or not
add an AM conditional to indicate whether the EFF test exampels should be compiled or not
tested on jam
Diffstat (limited to 'src/H5VLiod.h')
-rw-r--r-- | src/H5VLiod.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5VLiod.h b/src/H5VLiod.h index 56c48b3..f924a0c 100644 --- a/src/H5VLiod.h +++ b/src/H5VLiod.h @@ -29,7 +29,7 @@ #include "function_shipper_handler.h" #include "network_mpi.h" -#ifdef H5_HAVE_PARALLEL +#ifdef H5_HAVE_EFF #define H5VL_IOD (H5VL_iod_init()) #else #define H5VL_IOD (-1) @@ -39,7 +39,7 @@ extern "C" { #endif -#ifdef H5_HAVE_PARALLEL +#ifdef H5_HAVE_EFF #define H5D_XFER_INJECT_BAD_CHECKSUM_NAME "inject_bad_checksum" @@ -50,7 +50,7 @@ H5_DLL herr_t EFF_init(MPI_Comm comm, MPI_Info info); H5_DLL herr_t EFF_finalize(void); H5_DLL herr_t H5Pset_dxpl_inject_bad_checksum(hid_t dxpl_id, hbool_t flag); H5_DLL herr_t H5Pget_dxpl_inject_bad_checksum(hid_t dxpl_id, hbool_t *flag); -#endif /* H5_HAVE_PARALLEL */ +#endif /* H5_HAVE_EFF */ #ifdef __cplusplus } |