Merge pull request #3881
a22e9a3
build: fix explicit --disable-qt-dbus (Cory Fields)
This commit is contained in:
commit
1699e3a868
1 changed files with 6 additions and 6 deletions
|
@ -124,12 +124,12 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
|
||||||
if test x$have_qt_test = xno; then
|
if test x$have_qt_test = xno; then
|
||||||
bitcoin_enable_qt_test=no
|
bitcoin_enable_qt_test=no
|
||||||
fi
|
fi
|
||||||
bitcoin_enable_qt_dbus=yes
|
bitcoin_enable_qt_dbus=no
|
||||||
if test x$have_qt_dbus = xno; then
|
if test x$use_dbus != xno && test x$have_qt_dbus = xyes; then
|
||||||
bitcoin_enable_qt_dbus=no
|
bitcoin_enable_qt_dbus=yes
|
||||||
if test x$use_dbus = xyes; then
|
fi
|
||||||
AC_MSG_ERROR("libQtDBus not found. Install libQtDBus or remove --with-qtdbus.")
|
if test x$use_dbus = xyes && test x$have_qt_dbus = xno; then
|
||||||
fi
|
AC_MSG_ERROR("libQtDBus not found. Install libQtDBus or remove --with-qtdbus.")
|
||||||
fi
|
fi
|
||||||
if test x$LUPDATE == x; then
|
if test x$LUPDATE == x; then
|
||||||
AC_MSG_WARN("lupdate is required to update qt translations")
|
AC_MSG_WARN("lupdate is required to update qt translations")
|
||||||
|
|
Loading…
Reference in a new issue