diff options
-rw-r--r-- | MANIFEST | 2 | ||||
-rwxr-xr-x | configure | 7 | ||||
-rw-r--r-- | configure.in | 6 |
3 files changed, 5 insertions, 10 deletions
@@ -925,6 +925,7 @@ ./test/bittests.c ./test/cmpd_dset.c ./test/dsets.c +./test/deflate.h5 ./test/dtypes.c ./test/enum.c ./test/extend.c @@ -950,6 +951,7 @@ ./test/ntypes.c ./test/ohdr.c ./test/space_overflow.c _DO_NOT_DISTRIBUTE_ +./test/gen_deflate.c _DO_NOT_DISTRIBUTE_ ./test/gen_old_array.c _DO_NOT_DISTRIBUTE_ ./test/gen_new_array.c _DO_NOT_DISTRIBUTE_ ./test/gen_new_fill.c _DO_NOT_DISTRIBUTE_ @@ -23231,12 +23231,7 @@ esac if test "x$HAVE_ZLIB" = "xyes" -a "x$HAVE_ZLIB_H" = "xyes" -a "x$HAVE_COMPRESS2" = "xyes"; then cat >>confdefs.h <<\_ACEOF -#define HAVE_COMPRESSION 1 -_ACEOF - - -cat >>confdefs.h <<\_ACEOF -#define HAVE_FILTER_GZIP 1 +#define HAVE_FILTER_DEFLATE 1 _ACEOF fi diff --git a/configure.in b/configure.in index b6daa27..d49a6c9 100644 --- a/configure.in +++ b/configure.in @@ -776,10 +776,8 @@ case $withval in esac if test "x$HAVE_ZLIB" = "xyes" -a "x$HAVE_ZLIB_H" = "xyes" -a "x$HAVE_COMPRESS2" = "xyes"; then - AC_DEFINE(HAVE_COMPRESSION, 1, - [Define if we have zlib compression support]) - AC_DEFINE(HAVE_FILTER_GZIP, 1, - [Define if support for gzip filter is enabled]) + AC_DEFINE(HAVE_FILTER_DEFLATE, 1, + [Define if support for deflate filter is enabled]) fi dnl ---------------------------------------------------------------------- |