summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2005-05-20 17:32:49 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2005-05-20 17:32:49 (GMT)
commit984f44479c880e268b224ea6217ee51d475d7bf7 (patch)
treebfc438c6852303af52e094f7a5e4bb3bb822b06d /configure.in
parent4121c1c3410c27ee1a5cf9f238a6c33708d38a38 (diff)
downloadhdf5-984f44479c880e268b224ea6217ee51d475d7bf7.zip
hdf5-984f44479c880e268b224ea6217ee51d475d7bf7.tar.gz
hdf5-984f44479c880e268b224ea6217ee51d475d7bf7.tar.bz2
[svn-r10773] Purpose:
Output tweak Description: In configure.in, users must link to zlib library, but configure then informs them that "deflate" filter is enabled. Changed output slightly to indicate that these are the same filter. Platforms tested: mir (very minor change)
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 474180d..292e484 100644
--- a/configure.in
+++ b/configure.in
@@ -1068,14 +1068,14 @@ 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_FILTER_DEFLATE], [1], [Define if support for deflate filter is enabled])
+ AC_DEFINE([HAVE_FILTER_DEFLATE], [1], [Define if support for deflate (zlib) filter is enabled])
USE_FILTER_DEFLATE="yes"
dnl Add "deflate" to external filter list
if test "X$EXTERNAL_FILTERS" != "X"; then
EXTERNAL_FILTERS="${EXTERNAL_FILTERS},"
fi
- EXTERNAL_FILTERS="${EXTERNAL_FILTERS}deflate"
+ EXTERNAL_FILTERS="${EXTERNAL_FILTERS}deflate(zlib)"
fi