diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-11-11 20:32:02 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-11-11 20:32:02 (GMT) |
commit | b7cd698fcd799c132275f674eb52a29d334cb54b (patch) | |
tree | fde5a60fa4ecfabe48a98362caf35924bc85841c /src/H5config.h.in | |
parent | 58d79169834c8440e2bdac4e457edca976f8e922 (diff) | |
download | hdf5-b7cd698fcd799c132275f674eb52a29d334cb54b.zip hdf5-b7cd698fcd799c132275f674eb52a29d334cb54b.tar.gz hdf5-b7cd698fcd799c132275f674eb52a29d334cb54b.tar.bz2 |
[svn-r6070] Purpose:
New feature.
Description:
Add in '--enable-filters=filter1,filter2' flag to configure script. This
can also be used as '--enable-filters=all' or just '--enable-filters' to
enable all the internal I/O filters in the library.
This flag can also be set to '--disable-filters' to disable all the internal
I/O filters. Individual filters can not be disabled due to the limitations
of autoconf.
Additionally, added "H5_HAVE_FILTER_<foo>" macros to H5pubconf.h header
file, so the presence of each filter can be detected.
This is in preparation for Kent's shuffling filter to be imported shortly.
Platforms tested:
Tested h5committest {arabica (fortran), eirene (fortran, C++)
modi4 (parallel, fortran)}
Tested FreeBSD 4.7 (sleipnir) also
Diffstat (limited to 'src/H5config.h.in')
-rw-r--r-- | src/H5config.h.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/H5config.h.in b/src/H5config.h.in index f3738eb..7a45f6c 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -24,6 +24,12 @@ /* Define to 1 if you have the <features.h> header file. */ #undef HAVE_FEATURES_H +/* Define if support for gzip filter is enabled */ +#undef HAVE_FILTER_GZIP + +/* Define if support for shuffle filter is enabled */ +#undef HAVE_FILTER_SHUFFLE + /* Define to 1 if you have the `fork' function. */ #undef HAVE_FORK |