diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-10-22 20:24:44 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-10-22 20:24:44 (GMT) |
commit | b9e1706b8d7ea3a901feeaa1f29f7c5350071f83 (patch) | |
tree | f1e47f2a666dfb2307889c66b045c4029872de17 | |
parent | c54bafe24328a73e63f9d0e106e88288af6d4525 (diff) | |
download | hdf5-b9e1706b8d7ea3a901feeaa1f29f7c5350071f83.zip hdf5-b9e1706b8d7ea3a901feeaa1f29f7c5350071f83.tar.gz hdf5-b9e1706b8d7ea3a901feeaa1f29f7c5350071f83.tar.bz2 |
[svn-r7695] Purpose:
Update
Description:
Made stream-vfd driver on by default.
Platforms tested:
Linux (small configuration change)
Misc. update:
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.in | 5 |
2 files changed, 6 insertions, 3 deletions
@@ -1010,7 +1010,7 @@ Optional Features: --enable-threadsafe Enable thread safe capability --enable-hdf5v1_4 Compile the HDF5 v1.4 compatibility interface [default=no] - --enable-stream-vfd Build the Stream Virtual File Driver [default=no] + --enable-stream-vfd Build the Stream Virtual File Driver [default=yes] --enable-gpfs Enable GPFS hints for the MPI/POSIX file driver. [default=no] --enable-debug=all Turn on debugging in all packages. One may also @@ -28270,6 +28270,8 @@ echo $ECHO_N "checking for Stream Virtual File Driver support... $ECHO_C" >&6 if test "${enable_stream_vfd+set}" = set; then enableval="$enable_stream_vfd" STREAM_VFD=$enableval +else + STREAM_VFD=yes fi; if test "$STREAM_VFD" = "yes"; then diff --git a/configure.in b/configure.in index f6701c0..609fb2b 100644 --- a/configure.in +++ b/configure.in @@ -1356,8 +1356,9 @@ AC_MSG_CHECKING([for Stream Virtual File Driver support]) AC_ARG_ENABLE([stream-vfd], [AC_HELP_STRING([--enable-stream-vfd], [Build the Stream Virtual File Driver - [default=no]])], - [STREAM_VFD=$enableval]) + [default=yes]])], + [STREAM_VFD=$enableval], + [STREAM_VFD=yes]) if test "$STREAM_VFD" = "yes"; then AC_MSG_RESULT([yes]) |