[svn-r2553] Purpose:

Added new option --with-Stream-VFD.

Description:
        The configure option --with-Stream-VFD[={yes}|{no}] is used
        to configure HDF5 to build the Stream Virtual File Driver.
        The default is not to build it.

Platforms:
        all platforms
This commit is contained in:
Thomas Radke 2000-09-15 06:14:40 -05:00
parent 3a590c6e5c
commit a8932fbddc

View File

@ -753,6 +753,24 @@ if test -n "$GRIDSTORAGE"; then
AC_DEFINE(HAVE_GRIDSTORAGE)
fi
dnl ----------------------------------------------------------------------
dnl Should the Stream Virtual File Driver be compiled in ?
dnl
AC_MSG_CHECKING(for Stream Virtual File Driver support)
AC_ARG_WITH(Stream-VFD,
[ --with-Stream-VFD Build the Stream Virtual File Driver [default=no]],
,withval=no)
case $withval in
yes)
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_STREAM)
;;
*)
AC_MSG_RESULT(not configured)
;;
esac
dnl ----------------------------------------------------------------------
dnl Is LLNL's PDB present? If so then we'll compile the PDB-to-HDF5
dnl translator.