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-23 17:08:54 -0500
commite4c3f795e313bae4f8b8674f67b6fb543858fecc (patch)
treeb098da7c8e7ea82dc360406a770f82247d511045
parent2c18f29fc39749bb4e5fef1369fc8b80aa4c8112 (diff)
downloadlvm2-e4c3f795e313bae4f8b8674f67b6fb543858fecc.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])])