]> Pileus Git - ~andy/gtk/commitdiff
build: Drop --without-atk-bridge option
authorColin Walters <walters@verbum.org>
Tue, 26 Jun 2012 13:41:33 +0000 (09:41 -0400)
committerColin Walters <walters@verbum.org>
Tue, 26 Jun 2012 17:50:39 +0000 (13:50 -0400)
Instead, always build it if and only if X11.  This reduces the set of
supported configurations.

https://bugzilla.gnome.org/show_bug.cgi?id=677491

configure.ac
gtk/a11y/gail.c

index d4c2262d24c496be0e1c698247eb8a95d1fd1613..37b6349b8be82a51ced24659e3dab4b2e2de0c2a 100644 (file)
@@ -1281,13 +1281,8 @@ AC_SUBST(GDK_DEP_CFLAGS)
 # Check for Accessibility Toolkit flags
 ########################################
 
-AC_ARG_WITH(atk-bridge,
-           AS_HELP_STRING([--without-atk-bridge], [Do not use atk-bridge-2.0]),
-           :, with_atk_bridge=$enable_x11_backend)
-
-if test x$with_atk_bridge != xno; then
+if test x$enable_x11_backend = xyes; then
    ATK_PACKAGES="atk atk-bridge-2.0"
-   AC_DEFINE([HAVE_ATK_BRIDGE], [1], [Define if we're using atk-bridge-2.0])
 else
    ATK_PACKAGES="atk"
 fi
index 4f5028b040192861fc0167d437245e2c6658fdee..ff8450ac04040c4e67b9847dde6d5016690a2826 100644 (file)
@@ -33,7 +33,7 @@
 #include "gailutil.h"
 #include "gailmisc.h"
 
-#ifdef HAVE_ATK_BRIDGE
+#ifdef GDK_WINDOWING_X11
 #include <atk-bridge.h>
 #endif
 
@@ -809,7 +809,7 @@ _gtk_accessibility_init (void)
   focus_tracker_id = atk_add_focus_tracker (gail_focus_tracker);
 
   _gail_util_install ();
-#ifdef HAVE_ATK_BRIDGE
+#ifdef GDK_WINDOWING_X11
   atk_bridge_adaptor_init (NULL, NULL);
 #endif