summaryrefslogtreecommitdiffstats
path: root/src/H5config.h.in
diff options
context:
space:
mode:
authorMuQun Yang <ymuqun@hdfgroup.org>2003-04-01 15:27:45 (GMT)
committerMuQun Yang <ymuqun@hdfgroup.org>2003-04-01 15:27:45 (GMT)
commit646ac3850720155ced3851cf0c5ecf52a72857c4 (patch)
tree91c19d3000ebd4567152e51283e8fd20d425ba15 /src/H5config.h.in
parent175e5a1bbe5c13891c728b364184477c6e49356f (diff)
downloadhdf5-646ac3850720155ced3851cf0c5ecf52a72857c4.zip
hdf5-646ac3850720155ced3851cf0c5ecf52a72857c4.tar.gz
hdf5-646ac3850720155ced3851cf0c5ecf52a72857c4.tar.bz2
[svn-r6550] Purpose:
To support szip compression in HDF5 Description: szip compression support is required by NASA ESDIS. The compression algorithm is a good compression algorithm for scientific data. In HDF5, we add another filter function to make szip as a default compression package as we did for gzip(or zlib). H5config.in needs to be regenerated by autoheader for SZIP flags. Solution: A new file called H5Zszip.c will be added in the Makefile.in Flags like: HAVE_FILTER_SZIP should be auto-generated by autoheader. Platforms tested: Since there are changes of configure.in and configure,I didn't use h5committest. I tested with four platforms. 1) Linux 2.4 (eirene) 2) Solaris 2.7(arabica) 3) windows 2000(VS 6.0) 4) SGI IRIX6.5-64(modi4) For test 1)-3), only basic C tests were done For modi4 test, I tested 64-bit C,parallel and fortran. All tests passed, except a warning message from szip library when checksum is used in some order, which doesn't cause any real problems. Misc. update:
Diffstat (limited to 'src/H5config.h.in')
-rw-r--r--src/H5config.h.in15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/H5config.h.in b/src/H5config.h.in
index 9397a22..eb59a6d 100644
--- a/src/H5config.h.in
+++ b/src/H5config.h.in
@@ -21,15 +21,18 @@
/* Define to 1 if you have the <features.h> header file. */
#undef HAVE_FEATURES_H
-/* Define if support for Fletcher32 checksum is enabled */
-#undef HAVE_FILTER_FLETCHER32
-
/* Define if support for deflate filter is enabled */
#undef HAVE_FILTER_DEFLATE
+/* Define if support for Fletcher32 checksum is enabled */
+#undef HAVE_FILTER_FLETCHER32
+
/* Define if support for shuffle filter is enabled */
#undef HAVE_FILTER_SHUFFLE
+/* Define if support for szip filter is enabled */
+#undef HAVE_FILTER_SZIP
+
/* Define to 1 if you have the `fork' function. */
#undef HAVE_FORK
@@ -161,6 +164,9 @@
/* Define to 1 if you have the `ssl' library (-lssl). */
#undef HAVE_LIBSSL
+/* Define to 1 if you have the `sz' library (-lsz). */
+#undef HAVE_LIBSZ
+
/* Define to 1 if you have the `z' library (-lz). */
#undef HAVE_LIBZ
@@ -281,6 +287,9 @@
/* Define to 1 if you have the <sys/types.h> header file. */
#undef HAVE_SYS_TYPES_H
+/* Define to 1 if you have the <szlib.h> header file. */
+#undef HAVE_SZLIB_H
+
/* Define if we have thread safe support */
#undef HAVE_THREADSAFE