From: Mike Gorse Date: Mon, 21 Mar 2011 23:37:23 +0000 (-0700) Subject: Release v1.91.92 and fix a build error X-Git-Tag: AT_SPI2_ATK_2_12_0~244 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git;a=commitdiff_plain;h=72c5c12f7a9ce5c195fc5e0349258333ea9283d3 Release v1.91.92 and fix a build error --- 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)