summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2016-02-03 19:16:36 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2016-02-03 19:16:36 (GMT)
commit184800782f1cde808e8f7244938a8456333a39c7 (patch)
tree5df15dfd9cec08e5dd5e81deaef717535661556e /configure
parentf230bf09ca12c5e435ae1368f75e5dcabd4d5c53 (diff)
downloadhdf5-184800782f1cde808e8f7244938a8456333a39c7.zip
hdf5-184800782f1cde808e8f7244938a8456333a39c7.tar.gz
hdf5-184800782f1cde808e8f7244938a8456333a39c7.tar.bz2
[svn-r29038] Minor fix to configure.ac that fixes a broken --enable-clear-file-buffers
option. Fixes HDFFV-9676 Tested on: jam (just a smoke check to ensure that the library builds and passes tests when the feature is disabled)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 6 insertions, 6 deletions
diff --git a/configure b/configure
index 4418586b..bc7ed45 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.ac Id: configure.ac 28970 2016-01-25 21:23:12Z hdftest .
+# From configure.ac Id: configure.ac 29022 2016-01-31 20:03:27Z hdftest .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for HDF5 1.8.17-snap11.
#
@@ -26469,6 +26469,11 @@ fi
case "X-$CLEARFILEBUF" in
+ X-no)
+ CLEARFILEBUF=no
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+ ;;
*)
CLEARFILEBUF=yes
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
@@ -26477,11 +26482,6 @@ $as_echo "yes" >&6; }
$as_echo "#define CLEAR_MEMORY 1" >>confdefs.h
;;
- X-no)
- CLEARFILEBUF=no
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- ;;
esac
## ----------------------------------------------------------------------