mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-18 15:15:56 +08:00
[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:
parent
3a590c6e5c
commit
a8932fbddc
18
configure.in
18
configure.in
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user