1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: do not fail when D-Bus is not available on configure time
According to comments in https://codereview.qt-project.org/125499, this check
will be dropped before the final Qt 5.6 release.
.
According to comments in https://codereview.qt-project.org/174643, upstream
have changed their mind since then.
Author: Dmitry Shachnev <mitya57@debian.org>
Last-Update: 2016-11-15
--- a/tests/auto/auto.pro
+++ b/tests/auto/auto.pro
@@ -34,10 +34,6 @@
# Disable the QtDBus tests if we can't connect to the session bus
!cross_compile:qtHaveModule(dbus) {
!system("dbus-send --session --type=signal / local.AutotestCheck.Hello >/dev/null 2>&1") {
- contains(QT_CONFIG, dbus-linked): \
- error("QtDBus is enabled but session bus is not available. Please check the installation.")
- else: \
- warning("QtDBus is enabled with runtime support, but session bus is not available. Skipping QtDBus tests.")
SUBDIRS -= dbus
}
}
|