aboutsummaryrefslogtreecommitdiff
path: root/src/m4
diff options
context:
space:
mode:
authorCory Fields <cory-nospam-@coryfields.com>2014-03-15 21:33:49 -0400
committerCory Fields <cory-nospam-@coryfields.com>2014-03-15 21:52:02 -0400
commita22e9a32b33e3ee2f871944e633af36129451387 (patch)
treef43ee41b6129c8b3b839458e000535f64a77b34a /src/m4
parentcb0c42e7dad3d92276cfa62c66e6f298ea33c78a (diff)
downloadbitcoin-a22e9a32b33e3ee2f871944e633af36129451387.tar.xz
build: fix explicit --disable-qt-dbus
It worked in the auto/yes cases, but an explicit disable actually forced it on.
Diffstat (limited to 'src/m4')
-rw-r--r--src/m4/bitcoin_qt.m412
1 files changed, 6 insertions, 6 deletions
diff --git a/src/m4/bitcoin_qt.m4 b/src/m4/bitcoin_qt.m4
index 068371e83a..e71ecd7172 100644
--- a/src/m4/bitcoin_qt.m4
+++ b/src/m4/bitcoin_qt.m4
@@ -124,12 +124,12 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
if test x$have_qt_test = xno; then
bitcoin_enable_qt_test=no
fi
- bitcoin_enable_qt_dbus=yes
- if test x$have_qt_dbus = xno; then
- bitcoin_enable_qt_dbus=no
- if test x$use_dbus = xyes; then
- AC_MSG_ERROR("libQtDBus not found. Install libQtDBus or remove --with-qtdbus.")
- fi
+ bitcoin_enable_qt_dbus=no
+ if test x$use_dbus != xno && test x$have_qt_dbus = xyes; then
+ bitcoin_enable_qt_dbus=yes
+ fi
+ if test x$use_dbus = xyes && test x$have_qt_dbus = xno; then
+ AC_MSG_ERROR("libQtDBus not found. Install libQtDBus or remove --with-qtdbus.")
fi
if test x$LUPDATE == x; then
AC_MSG_WARN("lupdate is required to update qt translations")