From: Sven Eden Date: Mon, 19 Jun 2017 17:28:05 +0000 (+0200) Subject: Prep v231.2: Remove --disable-kdbus option from configure. X-Git-Tag: v231.3~27 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;ds=sidebyside;h=82f3d47ca95b6a662c2a75e61e9e014a1e3866f7;p=elogind.git Prep v231.2: Remove --disable-kdbus option from configure. Support for kdbus can no longer be enabled or disabled. It is simply there and will be used if needed and possible. So if you have kdbus available, elogind might use it. --- diff --git a/configure.ac b/configure.ac index 1f7c3f426..c95feac27 100644 --- a/configure.ac +++ b/configure.ac @@ -623,16 +623,6 @@ if test "x$enable_polkit" != "xno"; then fi AM_CONDITIONAL(ENABLE_POLKIT, [test "x$have_polkit" = "xyes"]) -# ------------------------------------------------------------------------------ -have_kdbus=no -AC_ARG_ENABLE(kdbus, AS_HELP_STRING([--disable-kdbus], [do not connect to kdbus by default])) -if test "x$enable_kdbus" != "xno"; then - AC_DEFINE(ENABLE_KDBUS, 1, [Define if kdbus is to be connected to by default]) - have_kdbus=yes - M4_DEFINES="$M4_DEFINES -DENABLE_KDBUS" -fi -AM_CONDITIONAL(ENABLE_KDBUS, [test "$have_kdbus" = "yes"]) - # ------------------------------------------------------------------------------ AC_CHECK_HEADERS_ONCE([valgrind/memcheck.h valgrind/valgrind.h]) @@ -791,7 +781,6 @@ AC_MSG_RESULT([ ACL: ${have_acl} KillUserProcesses default: ${KILL_USER_PROCESSES} polkit: ${have_polkit} - kdbus: ${have_kdbus} Python: ${have_python} man pages: ${have_manpages} test coverage: ${have_coverage}