diff options
author | Colin Walters <walters@verbum.org> | 2012-06-26 09:41:33 -0400 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2012-06-26 13:50:39 -0400 |
commit | ed8203e700aa8a8de40df071ffdc2d18cab68e29 (patch) | |
tree | f38e75614f93b672b2aef20f08ff315d767c320c /gtk/a11y | |
parent | e393fdeedd09fcfab29cb15a9bab91105260468f (diff) | |
download | gtk+-ed8203e700aa8a8de40df071ffdc2d18cab68e29.tar.gz |
build: Drop --without-atk-bridge option
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
Diffstat (limited to 'gtk/a11y')
-rw-r--r-- | gtk/a11y/gail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/a11y/gail.c b/gtk/a11y/gail.c index 4f5028b040..ff8450ac04 100644 --- a/gtk/a11y/gail.c +++ b/gtk/a11y/gail.c @@ -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 |