summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure19
-rw-r--r--configure.in17
2 files changed, 22 insertions, 14 deletions
diff --git a/configure b/configure
index 7a1ebdf..e6dd849 100755
--- a/configure
+++ b/configure
@@ -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"
diff --git a/configure.in b/configure.in
index 7d487e7..4c6a43c 100644
--- a/configure.in
+++ b/configure.in
@@ -1863,9 +1863,9 @@ dnl
if test "X$FPHDF5" = "Xyes"; then
AC_DEFINE(HAVE_FPHDF5, 1,
[Define if we want flexible parallel HDF5 support])
- echo "yes"
+ AC_MSG_RESULT(yes)
else
- echo "no"
+ AC_MSG_RESULT(no)
fi
fi
@@ -2312,8 +2312,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"
@@ -2324,6 +2327,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" ;;
@@ -2355,8 +2361,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"