We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ab2582 commit cf06811Copy full SHA for cf06811
build-aux/m4/bitcoin_qt.m4
@@ -72,10 +72,19 @@ AC_DEFUN([BITCOIN_QT_INIT],[
72
73
AC_ARG_WITH([qtdbus],
74
[AS_HELP_STRING([--with-qtdbus],
75
- [enable DBus support (default is yes if qt is enabled and QtDBus is found)])],
+ [enable DBus support (default is yes if qt is enabled and QtDBus is found, except on Android)])],
76
[use_dbus=$withval],
77
[use_dbus=auto])
78
79
+ dnl Android doesn't support D-Bus and certainly doesn't use it for notifications
80
+ case $host in
81
+ *android*)
82
+ if test "x$use_dbus" != xyes; then
83
+ use_dbus=no
84
+ fi
85
+ ;;
86
+ esac
87
+
88
AC_SUBST(QT_TRANSLATION_DIR,$qt_translation_path)
89
])
90
0 commit comments