From d2746ead2972b7bad69772aeb11e8d9ea8c28609 Mon Sep 17 00:00:00 2001
From: Edric Milaret <edric.ladent-milaret@savoirfairelinux.com>
Date: Thu, 28 May 2015 11:59:38 -0400
Subject: [PATCH] build: fix error in configure.ac

without-dbus condition was broken due to
mingw test

Regression caused by change 1852, commited in
78a32ceed062851cf56a93f1d50cbb2b8c0eb2be

Refs #70869

Change-Id: I8522c9a47f39a07f1830f0542566f1057cf967cc
---
 configure.ac | 2 --
 1 file changed, 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index 11ae08a9d0..54f16a4fcb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -344,7 +344,6 @@ AS_IF([test "x$enable_coverage" = "xyes"], [
 
 # DBUSCPP
 dnl Check for dbuscpp, the C++ bindings for D-Bus
-if test "${SYS}" != "mingw32"; then
 AC_ARG_WITH([dbus],
     [AS_HELP_STRING([--without-dbus], [disable support for dbus])],
     [],
@@ -366,7 +365,6 @@ AS_IF([test "x$with_dbus" = "xyes"], [
        AS_IF([test "x$CLANG" = "xyes"], [
              AC_MSG_ERROR([dbus does not compile when clang is used, rerun with --without-dbus])
        ]);
-fi
        AM_CONDITIONAL(RING_DBUS, true)],
        AM_CONDITIONAL(RING_DBUS, false));
 
-- 
GitLab