diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | configure.in | 9 |
3 files changed, 15 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2003-08-20 Bolian Yin <bolian.yin@sun.com> + + * configure.in: Add a11y checking, and a11y Makefiles + * Makefile.am: add a11y subdirectory + 2003-08-13 Mike Kestner <mkestner@ximian.com> * configure.in: don't make 1.5 the default version (ie LN_S) diff --git a/Makefile.am b/Makefile.am index 035b4d3d06..ff74d11527 100644 --- a/Makefile.am +++ b/Makefile.am @@ -34,6 +34,7 @@ SUBDIRS = \ camel \ filter \ addressbook \ + a11y \ calendar \ my-evolution \ art \ diff --git a/configure.in b/configure.in index ade86f073d..95cc282765 100644 --- a/configure.in +++ b/configure.in @@ -251,6 +251,13 @@ fi dnl ************************************************** +dnl * Accessibility support +dnl ************************************************** +PKG_CHECK_MODULES(A11Y, atk) +AC_SUBST(A11Y_CFLAGS) +AC_SUBST(A11Y_LIBS) + +dnl ************************************************** dnl * IPv6 support dnl ************************************************** AC_ARG_ENABLE(ipv6, [ --enable-ipv6=[no/yes] Enable support for resolving IPv6 addresses.],,enable_ipv6=no) @@ -1310,6 +1317,8 @@ AC_SUBST(EVOLUTION_DIR) AC_OUTPUT([ po/Makefile.in Makefile +a11y/Makefile +a11y/calendar/Makefile addressbook/Makefile addressbook/gui/Makefile addressbook/gui/component/Makefile |