diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1999-12-17 14:37:22 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1999-12-17 14:37:22 (GMT) |
commit | 2c7bbf697f56815d82c298e1103870daebe298c3 (patch) | |
tree | 1df07bb74e8d7f53bdb1c931a35b40eec27bcf67 /src/H5FDgass.h | |
parent | 36c94d90182b5740742aff9d15edc430520e2c71 (diff) | |
download | hdf5-2c7bbf697f56815d82c298e1103870daebe298c3.zip hdf5-2c7bbf697f56815d82c298e1103870daebe298c3.tar.gz hdf5-2c7bbf697f56815d82c298e1103870daebe298c3.tar.bz2 |
[svn-r1881] Changed all the HAVE_PARALLEL and HAVE_GASS macros to the new
form of H5_HAVE_PARALLEL and H5_HAVE_GASS.
Diffstat (limited to 'src/H5FDgass.h')
-rw-r--r-- | src/H5FDgass.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5FDgass.h b/src/H5FDgass.h index f303c3a..f1ce6f1 100644 --- a/src/H5FDgass.h +++ b/src/H5FDgass.h @@ -15,13 +15,13 @@ #include <string.h> -#ifdef HAVE_GASS +#ifdef H5_HAVE_GASS #define H5FD_GASS (H5FD_gass_init()) #else #define H5FD_GASS (-1) #endif -#ifdef HAVE_GASS +#ifdef H5_HAVE_GASS /* Define the GASS info object. (Will be added to later as more GASS functionality is sought to be exposed. */ typedef struct GASS_Info { @@ -37,7 +37,7 @@ typedef struct GASS_Info { #endif /* Function prototypes */ -#ifdef HAVE_GASS +#ifdef H5_HAVE_GASS hid_t H5FD_gass_init(void); herr_t H5Pset_fapl_gass(hid_t fapl_id, GASS_Info info); herr_t H5Pget_fapl_gass(hid_t fapl_id, GASS_Info *info/*out*/); |