summaryrefslogtreecommitdiffstats
path: root/src/H5Z.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-11-11 20:33:42 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-11-11 20:33:42 (GMT)
commit02a2fc238c27eada6e4df8af14d363402d6bb44e (patch)
tree2d19f1b86de0ec2d2c01feed24c14de454bd5d8c /src/H5Z.c
parentb7cd698fcd799c132275f674eb52a29d334cb54b (diff)
downloadhdf5-02a2fc238c27eada6e4df8af14d363402d6bb44e.zip
hdf5-02a2fc238c27eada6e4df8af14d363402d6bb44e.tar.gz
hdf5-02a2fc238c27eada6e4df8af14d363402d6bb44e.tar.bz2
[svn-r6071] Purpose:
Code cleanup Description: Start using the H5_HAVE_FILTER_GZIP macro to enable the gzip filter. Platforms tested: Tested h5committest {arabica (fortran), eirene (fortran, C++) modi4 (parallel, fortran)}? Tested FreeBSD 4.7 (sleipnir) also
Diffstat (limited to 'src/H5Z.c')
-rw-r--r--src/H5Z.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5Z.c b/src/H5Z.c
index 9fd8e50..4016481 100644
--- a/src/H5Z.c
+++ b/src/H5Z.c
@@ -44,7 +44,9 @@ H5Z_init_interface (void)
{
FUNC_ENTER_NOINIT(H5Z_init_interface);
+#ifdef H5_HAVE_FILTER_GZIP
H5Z_register (H5Z_FILTER_DEFLATE, "deflate", H5Z_filter_deflate);
+#endif /* H5_HAVE_FILTER_GZIP */
FUNC_LEAVE (SUCCEED);
}