diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-03-16 11:04:38 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-03-16 11:04:52 +0100 |
| commit | 1699e3a8682bcd208fcc1325eb4d02465fef4426 (patch) | |
| tree | c784701f4f19891dd92ed5d1ef9a5124b73edcab /src | |
| parent | Merge pull request #3878 (diff) | |
| parent | build: fix explicit --disable-qt-dbus (diff) | |
| download | discoin-1699e3a8682bcd208fcc1325eb4d02465fef4426.tar.xz discoin-1699e3a8682bcd208fcc1325eb4d02465fef4426.zip | |
Merge pull request #3881
a22e9a3 build: fix explicit --disable-qt-dbus (Cory Fields)
Diffstat (limited to 'src')
| -rw-r--r-- | src/m4/bitcoin_qt.m4 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/m4/bitcoin_qt.m4 b/src/m4/bitcoin_qt.m4 index 068371e83..e71ecd717 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") |