diff --git a/WHATS_NEW b/WHATS_NEW index 15f4d8e6a..0f6412fc5 100644 --- a/WHATS_NEW +++ b/WHATS_NEW @@ -1,5 +1,6 @@ Version 2.03.11 - ================================== + Configure --with-integrity enabled. Restore lost signal blocking while VG lock is held. Improve estimation of needed extents when creating thin-pool. Use extra 1% when resizing thin-pool metadata LV with --use-policy. diff --git a/configure b/configure index 219a3ba2f..f7b681cad 100755 --- a/configure +++ b/configure @@ -9771,7 +9771,7 @@ $as_echo_n "checking whether to include integrity... " >&6; } if test "${with_integrity+set}" = set; then : withval=$with_integrity; INTEGRITY=$withval else - INTEGRITY="none" + INTEGRITY="internal" fi diff --git a/configure.ac b/configure.ac index 537dc801c..c2a72abf2 100644 --- a/configure.ac +++ b/configure.ac @@ -673,7 +673,7 @@ AC_MSG_CHECKING(whether to include integrity) AC_ARG_WITH(integrity, AC_HELP_STRING([--with-integrity=TYPE], [integrity support: internal/none [none]]), - INTEGRITY=$withval, INTEGRITY="none") + INTEGRITY=$withval, INTEGRITY="internal") AC_MSG_RESULT($INTEGRITY)