diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-02-10 20:55:52 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-02-10 20:55:52 (GMT) |
commit | cfd12267245eb154eba91ab5435acd694b694dd4 (patch) | |
tree | 85c8be80dc3061f463af8a99aed6f2d12f53f5d5 /configure | |
parent | b55e5cb9441a658f9e7bc06e4656a6045d0666e8 (diff) | |
download | hdf5-cfd12267245eb154eba91ab5435acd694b694dd4.zip hdf5-cfd12267245eb154eba91ab5435acd694b694dd4.tar.gz hdf5-cfd12267245eb154eba91ab5435acd694b694dd4.tar.bz2 |
[svn-r6389] Purpose:
Update
Description:
Added Flexible Parallel HDF5 support to the ending message that
configure spits out.
Reordered a few other of the messages so that they're in alphabetical
order.
Platforms tested:
Linux
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 19 |
1 files changed, 12 insertions, 7 deletions
@@ -30316,9 +30316,11 @@ cat >>confdefs.h <<\_ACEOF #define HAVE_FPHDF5 1 _ACEOF - echo "yes" + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 else - echo "no" + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 fi fi @@ -32060,8 +32062,11 @@ PRINT "Features:" PRINT_N " dmalloc" IF_YES_NO "$HAVE_DMALLOC" -PRINT_N " internal I/O filters" -PRINT "$FILTERS" +PRINT_N " Flexible Parallel HDF" +IF_YES_NO "$FPHDF5" + +PRINT_N " Function Stack Tracing" +IF_ENABLED_DISABLED "$FUNCSTACK" PRINT_N " GASS" IF_YES_NO "$GASS" @@ -32072,6 +32077,9 @@ IF_YES_NO "$GPFS" PRINT_N " HDF5 v1.4 Compatibility" IF_YES_NO "$HDF5_V1_4_COMPAT" +PRINT_N " Internal I/O filters" +PRINT "$FILTERS" + PRINT_N " hsize_t" case "$HSIZET" in no|small) PRINT "Small" ;; @@ -32103,8 +32111,5 @@ IF_ENABLED_DISABLED "$STREAM_VFD" PRINT_N " Threadsafety" IF_ENABLED_DISABLED "$THREADSAFE" -PRINT_N " Function Stack Tracing" -IF_ENABLED_DISABLED "$FUNCSTACK" - PRINT_N " Zlib-compression" IF_YES_NO "$HAVE_ZLIB" |