summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS13
-rw-r--r--configure.ac2
-rw-r--r--droute/Makefile.am2
3 files changed, 16 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index cacfffd..851fe5a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,16 @@
+What's new in at-spi2-atk 1.91.92:
+
+* Handle text-insert and text-removed signals from ATK (BGO#638377).
+
+* Use the new dbus errors when compiled against a version of libdbus that
+ defines them.
+
+* Use libatspi to get the accessibility bus and handle main loop integration.
+ This fixes a crash with some builds of Firefox (FDO#35115).
+ Note that this adds a dependency on libatspi.
+
+* Fix accessibility of applications running as root on Linux.
+
What's new in at-spi2-atk 1.91.91:
* Fix some missing prototypes.
diff --git a/configure.ac b/configure.ac
index cf47a18..850f3e1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([at-spi2-atk], [1.91.91], [accessibility-atspi@lists.linux-foundation.org])
+AC_INIT([at-spi2-atk], [1.91.92], [accessibility-atspi@lists.linux-foundation.org])
AC_CONFIG_AUX_DIR(config)
AT_SPI_ATK_MAJOR_VERSION=0
diff --git a/droute/Makefile.am b/droute/Makefile.am
index 38e6b09..854dee4 100644
--- a/droute/Makefile.am
+++ b/droute/Makefile.am
@@ -21,9 +21,11 @@ check_PROGRAMS = droute-test
droute_test_SOURCES = droute-test.c
droute_test_CFLAGS = $(DBUS_CFLAGS) \
-I$(top_builddir)\
+ $(GLIB_CFLAGS) \
-I$(top_srcdir)
droute_test_LDFLAGS = $(top_builddir)/dbind/libdbind.la\
libdroute.la\
$(DBUS_LIBS) \
+ $(GLIB_LIBS) \
$(ATSPI_LIBS)