[svn-r6110] Purpose:

Code cleanup/new feature

Description:
    Removed poorly named H5_HAVE_COMPRESSION flag in favor of
    H5_HAVE_FILTER_DEFLATE.

    Added new test files for "missing filter" testing.

Platforms tested:
    Tested h5committest {arabica (fortran), eirene (fortran, C++)
	modi4 (parallel, fortran)}
    FreeBSD 4.7 (sleipnir)
This commit is contained in:
Quincey Koziol 2002-11-20 08:02:20 -05:00
parent dd5cc739c1
commit b1ff513e6a
3 changed files with 5 additions and 10 deletions

View File

@ -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_

7
configure vendored
View File

@ -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

View File

@ -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 ----------------------------------------------------------------------