Version 2.03.11 -
==================================
+ Configure --with-vdo and --with-writecache as internal segments.
Improving VDO man page examples.
Switch code base to use flexible array syntax.
Fix 64bit math when calculation cachevol size.
if test "${with_vdo+set}" = set; then :
withval=$with_vdo; VDO=$withval
else
- VDO="none"
+ VDO="internal"
fi
if test "${with_writecache+set}" = set; then :
withval=$with_writecache; WRITECACHE=$withval
else
- WRITECACHE="none"
+ WRITECACHE="internal"
fi
AC_ARG_WITH(vdo,
AC_HELP_STRING([--with-vdo=TYPE],
[vdo support: internal/none [internal]]),
- VDO=$withval, VDO="none")
+ VDO=$withval, VDO="internal")
AC_MSG_RESULT($VDO)
AC_ARG_WITH(writecache,
AC_HELP_STRING([--with-writecache=TYPE],
[writecache support: internal/none [none]]),
- WRITECACHE=$withval, WRITECACHE="none")
+ WRITECACHE=$withval, WRITECACHE="internal")
AC_MSG_RESULT($WRITECACHE)