]> sourceware.org Git - lvm2.git/commitdiff
configure: Add warning for D-Bus w/o notifications
authorMarian Csontos <mcsontos@redhat.com>
Wed, 20 Sep 2017 08:25:29 +0000 (10:25 +0200)
committerMarian Csontos <mcsontos@redhat.com>
Wed, 20 Sep 2017 11:07:06 +0000 (13:07 +0200)
Building D-Bus support without notifications is not recommended.

configure
configure.in

index 78c738d3036b267091777e3a30f7bc6afb9dd144..9f2f74414e3f2bdc2989216a90de72a21299a0a7 100755 (executable)
--- a/configure
+++ b/configure
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $BUILD_LVMDBUSD" >&5
 $as_echo "$BUILD_LVMDBUSD" >&6; }
+if test "$NOTIFYDBUS_SUPPORT" = yes && test "BUILD_LVMDBUSD" = yes; then :
+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Building D-Bus support without D-Bus notifications." >&5
+$as_echo "$as_me: WARNING: Building D-Bus support without D-Bus notifications." >&2;}
+fi
 
 ################################################################################
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build Python wrapper for liblvm2app.so" >&5
index e2f448e598c73942bdd9b8a8accea3458cae589b..00e70aabc729612a6e0a58e839dfffee035c240f 100644 (file)
@@ -1486,6 +1486,8 @@ AC_ARG_ENABLE(dbus-service,
              AC_HELP_STRING([--enable-dbus-service], [install D-Bus support]),
              BUILD_LVMDBUSD=$enableval, BUILD_LVMDBUSD=no)
 AC_MSG_RESULT($BUILD_LVMDBUSD)
+AS_IF([test "$NOTIFYDBUS_SUPPORT" = yes && test "BUILD_LVMDBUSD" = yes],
+      [AC_MSG_WARN([Building D-Bus support without D-Bus notifications.])])
 
 ################################################################################
 dnl -- Enable Python liblvm2app bindings
This page took 0.044717 seconds and 5 git commands to generate.