[svn-r7603] Purpose:

Update

Description:
    Enable the stream-vfd driver by default. --disable-stream-vfd if you
    don't want it.

Platforms tested:
    Linux (configuration change, no need for full testing)

Misc. update:
This commit is contained in:
Bill Wendling 2003-10-10 18:49:49 -05:00
parent c72601e0d6
commit 8384db2e76
2 changed files with 4 additions and 1 deletions

2
configure vendored
View File

@ -29353,6 +29353,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

View File

@ -1480,7 +1480,8 @@ AC_ARG_ENABLE([stream-vfd],
[AC_HELP_STRING([--enable-stream-vfd],
[Build the Stream Virtual File Driver
[default=no]])],
[STREAM_VFD=$enableval])
[STREAM_VFD=$enableval],
[STREAM_VFD=yes])
if test "$STREAM_VFD" = "yes"; then
AC_MSG_RESULT([yes])