Skip to content
Snippets Groups Projects
Commit d2746ead authored by Edric Milaret's avatar Edric Milaret Committed by Guillaume Roguez
Browse files

build: fix error in configure.ac

without-dbus condition was broken due to
mingw test

Regression caused by change 1852, commited in
78a32cee

Refs #70869

Change-Id: I8522c9a47f39a07f1830f0542566f1057cf967cc
parent ec965119
No related branches found
No related tags found
No related merge requests found
......@@ -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));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment