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 /configure | |
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 'configure')
-rwxr-xr-x | configure | 59 |
1 files changed, 55 insertions, 4 deletions
@@ -1019,6 +1019,9 @@ Optional Features: is disabled. --enable-parallel=TYPE Search for MPI-IO and MPI support files --enable-fphdf5 Enable the Flexible Parallel HDF5 interface + --enable-filters=all Turn on all internal I/O filters. One may also + specify a comma-separated list of filters or the + word no. The default is all internal I/O filters. Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] @@ -4103,7 +4106,7 @@ test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes case $host in *-*-irix6*) # Find out which ABI we are using. - echo '#line 4106 "configure"' > conftest.$ac_ext + echo '#line 4109 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -4644,7 +4647,7 @@ chmod -w . save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -o out/conftest2.$ac_objext" compiler_c_o=no -if { (eval echo configure:4647: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then +if { (eval echo configure:4650: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings if test -s out/conftest.err; then @@ -6455,7 +6458,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 6458 "configure" +#line 6461 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -6553,7 +6556,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 6556 "configure" +#line 6559 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -23231,6 +23234,11 @@ cat >>confdefs.h <<\_ACEOF #define HAVE_COMPRESSION 1 _ACEOF + +cat >>confdefs.h <<\_ACEOF +#define HAVE_FILTER_GZIP 1 +_ACEOF + fi PABLO="" @@ -30156,6 +30164,45 @@ _ACEOF fi fi +echo "$as_me:$LINENO: checking for I/O filters" >&5 +echo $ECHO_N "checking for I/O filters... $ECHO_C" >&6 +# Check whether --enable-filters or --disable-filters was given. +if test "${enable_filters+set}" = set; then + enableval="$enable_filters" + FILTERS=$enableval +fi; + + +all_filters="shuffle" +case "X-$FILTERS" in + X-|X-all) + FILTERS=$all_filters + echo "$as_me:$LINENO: result: all ($FILTERS)" >&5 +echo "${ECHO_T}all ($FILTERS)" >&6 + ;; + X-no|X-none) + echo "$as_me:$LINENO: result: none" >&5 +echo "${ECHO_T}none" >&6 + FILTERS="none" + ;; + *) + echo "$as_me:$LINENO: result: $FILTERS" >&5 +echo "${ECHO_T}$FILTERS" >&6 + ;; +esac + +if test -n "$FILTERS"; then + for filter in `echo $FILTERS | tr 'a-z,' 'A-Z '`; do + if test $filter = "SHUFFLE"; then + +cat >>confdefs.h <<\_ACEOF +#define HAVE_FILTER_SHUFFLE 1 +_ACEOF + + fi + done +fi + H5_VERSION="`cut -d' ' -f3 $srcdir/README.txt | head -1`" @@ -30950,6 +30997,7 @@ s,@PARALLEL@,$PARALLEL,;t t s,@RUNSERIAL@,$RUNSERIAL,;t t s,@RUNPARALLEL@,$RUNPARALLEL,;t t s,@TESTPARALLEL@,$TESTPARALLEL,;t t +s,@FILTERS@,$FILTERS,;t t s,@H5_VERSION@,$H5_VERSION,;t t s,@CONFIG_DATE@,$CONFIG_DATE,;t t s,@CONFIG_USER@,$CONFIG_USER,;t t @@ -31743,6 +31791,9 @@ PRINT "Features:" PRINT_N " dmalloc" IF_YES_NO "$HAVE_DMALLOC" +PRINT_N " internal I/O filters" +PRINT "$FILTERS" + PRINT_N " GASS" IF_YES_NO "$GASS" |