summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Teigland <teigland@redhat.com>2015-06-17 10:46:41 -0500
committerDavid Teigland <teigland@redhat.com>2015-06-17 13:31:45 -0500
commit523b9502475d28606c1e080e4074edec98a382d0 (patch)
tree58dc07f94bbed3795ed80242f31bfc20795d9329
parentcbea83a903f53f3057aeb9cbff2355e7189b0919 (diff)
downloadlvm2-523b9502475d28606c1e080e4074edec98a382d0.tar.gz
configure: warnings about lvmlockd
lvmlockd requires lvmetad and lvmpolld
-rw-r--r--configure.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index adf60fb94..a937f2143 100644
--- a/configure.in
+++ b/configure.in
@@ -2018,3 +2018,9 @@ AS_IF([test -n "$CACHE_CONFIGURE_WARN"],
AS_IF([test "$ODIRECT" != yes],
[AC_MSG_WARN([O_DIRECT disabled: low-memory pvmove may lock up])])
+
+AS_IF([test "$BUILD_LVMLOCKD" == yes && test "$BUILD_LVMPOLLD" == no],
+ [AC_MSG_WARN([lvmlockd requires lvmpolld])])
+
+AS_IF([test "$BUILD_LVMLOCKD" == yes && test "$BUILD_LVMETAD" == no],
+ [AC_MSG_WARN([lvmlockd requires lvmetad])])