]> sourceware.org Git - lvm2.git/commitdiff
configure: compile with vdo and writecache by default
authorZdenek Kabelac <zkabelac@redhat.com>
Wed, 9 Sep 2020 13:56:06 +0000 (15:56 +0200)
committerZdenek Kabelac <zkabelac@redhat.com>
Thu, 10 Sep 2020 21:54:10 +0000 (23:54 +0200)
Enable compilation of vdo and writecache support as internaly
supported segment types by default.

For disabling use:

--with-vdo=none
--with-writcache=none

WHATS_NEW
configure
configure.ac

index 8f33c8ae4f67ac0af38d329c65db8e3879ebdc5e..1171eb2a924d4771cc70b0d5906e3d7ddf01d8f9 100644 (file)
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -1,5 +1,6 @@
 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.
index 716ee9ca7880498f6d1db15fd52e3aeb21dc1ccf..7fdd20206b77a03576f443621561f2e450c5190f 100755 (executable)
--- a/configure
+++ b/configure
@@ -9586,7 +9586,7 @@ $as_echo_n "checking whether to include vdo... " >&6; }
 if test "${with_vdo+set}" = set; then :
   withval=$with_vdo; VDO=$withval
 else
-  VDO="none"
+  VDO="internal"
 fi
 
 
@@ -9746,7 +9746,7 @@ $as_echo_n "checking whether to include writecache... " >&6; }
 if test "${with_writecache+set}" = set; then :
   withval=$with_writecache; WRITECACHE=$withval
 else
-  WRITECACHE="none"
+  WRITECACHE="internal"
 fi
 
 
index 9a0e41a81a45d3feaac2be2f3b4c0e2599b5adf6..3e9ed25f5a18094eae9dee9df04e36aa798820b2 100644 (file)
@@ -607,7 +607,7 @@ AC_MSG_CHECKING(whether to include vdo)
 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)
 
@@ -655,7 +655,7 @@ AC_MSG_CHECKING(whether to include writecache)
 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)
 
This page took 2.006064 seconds and 5 git commands to generate.