summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@digia.com>2012-11-01 17:50:56 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-08 16:59:50 +0100
commit4c1c8207b9ace89d727e3bd98ae77c4282672172 (patch)
treeaa98cd773d0ac8aff92d3712715e4e71d68424b3 /configure
parent15b5ed3294dc03e51f84a9d0163283f35e570944 (diff)
Accessibility Linux: Do not depend on external libatspi2
This has (and still does) caused lots of grief since it means accessibility was often unintendedly not built. Instead copy the lib-at-spi-2 header file needed for the type enum and build it by default again. Change-Id: I1ba26f20edff1aeb444c96a37928f36230ac7576 Reviewed-by: J-P Nurmi <jpnurmi@digia.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 06c61ef2a5..474f43f2f1 100755
--- a/configure
+++ b/configure
@@ -4982,14 +4982,14 @@ if [ "$CFG_ACCESSIBILITY" != "no" ]; then
if [ "$CFG_XCB" = "no" ]; then
CFG_ACCESSIBILITY=yes
else
- # linux/xcb accessibility needs dbus and atspi-2
- if [ "$CFG_DBUS" != "no" ] && [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists "atspi-2" 2>/dev/null; then
+ # linux/xcb accessibility needs dbus
+ if [ "$CFG_DBUS" != "no" ] && [ -n "$PKG_CONFIG" ]; then
CFG_ACCESSIBILITY=yes
else
if [ "$CFG_ACCESSIBILITY" = "auto" ]; then
CFG_ACCESSIBILITY=no
else
- echo "Accessibility support needs pkg-config and libatspi2."
+ echo "Accessibility support needs DBus."
exit 101
fi
fi