diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Zdeflate.c | 8 | ||||
-rw-r--r-- | src/H5config.h.in | 13 |
2 files changed, 12 insertions, 9 deletions
diff --git a/src/H5Zdeflate.c b/src/H5Zdeflate.c index 43ffbd5..1910115 100644 --- a/src/H5Zdeflate.c +++ b/src/H5Zdeflate.c @@ -14,7 +14,7 @@ # include "zlib.h" #else /* Make sure compression is disabled too. */ -#undef H5_HAVE_COMPRESS2 +#undef H5_HAVE_COMPRESSION #endif /* Interface initialization */ @@ -40,7 +40,7 @@ static int interface_initialize_g = 0; *------------------------------------------------------------------------- */ size_t -#if defined(H5_HAVE_COMPRESS2) +#if defined(H5_HAVE_COMPRESSION) H5Z_filter_deflate (unsigned flags, size_t cd_nelmts, const unsigned cd_values[], size_t nbytes, size_t *buf_size, void **buf) @@ -52,7 +52,7 @@ H5Z_filter_deflate (unsigned UNUSED flags, size_t cd_nelmts, { size_t ret_value = 0; void *outbuf = NULL; -#if defined(H5_HAVE_COMPRESS2) +#if defined(H5_HAVE_COMPRESSION) int aggression = 6; int status; #endif @@ -65,7 +65,7 @@ H5Z_filter_deflate (unsigned UNUSED flags, size_t cd_nelmts, "invalid deflate aggression level"); } -#if defined(H5_HAVE_COMPRESS2) +#if defined(H5_HAVE_COMPRESSION) aggression = cd_values[0]; if (flags & H5Z_FLAG_REVERSE) { /* Input; uncompress */ diff --git a/src/H5config.h.in b/src/H5config.h.in index 49c220d..324d51c 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -9,8 +9,8 @@ /* Define to 1 if you have the `BSDgettimeofday' function. */ #undef HAVE_BSDGETTIMEOFDAY -/* Define to 1 if you have the `compress2' function. */ -#undef HAVE_COMPRESS2 +/* Define if we have zlib compression support */ +#undef HAVE_COMPRESSION /* Define to 1 if you have the `difftime' function. */ #undef HAVE_DIFFTIME @@ -39,9 +39,6 @@ /* Define to 1 if you have the `GetConsoleScreenBufferInfo' function. */ #undef HAVE_GETCONSOLESCREENBUFFERINFO -/* Define to 1 if you have the `getdents64' function. */ -#undef HAVE_GETDENTS64 - /* Define to 1 if you have the `gethostname' function. */ #undef HAVE_GETHOSTNAME @@ -60,6 +57,12 @@ /* Define to 1 if you have the <globus_common.h> header file. */ #undef HAVE_GLOBUS_COMMON_H +/* Define if we have GPFS support */ +#undef HAVE_GPFS + +/* Define to 1 if you have the <gpfs.h> header file. */ +#undef HAVE_GPFS_H + /* Define to 1 if you have the <inttypes.h> header file. */ #undef HAVE_INTTYPES_H |