2008-07-28 Mark Doffman <mark.doffman@codethink.co.uk>
[platform/core/uifw/at-spi2-atk.git] / configure.ac
index 15a9fec..f50d584 100644 (file)
@@ -1,5 +1,6 @@
 
 AC_INIT([at-spi], [1.9.0], [accessibility-atspi@lists.linux-foundation.org])
+AC_CONFIG_AUX_DIR(config)
 
 AT_SPI_MAJOR_VERSION=1
 AT_SPI_MINOR_VERSION=23
@@ -27,12 +28,25 @@ AC_SUBST(LT_AGE)
 
 AM_INIT_AUTOMAKE([-Wall foreign])
 
+dnl translation of any at-spi strings: used only for .server
+dnl IT_PROG_INTLTOOL([0.35.0])
+
 AC_PROG_CC
 AM_PATH_PYTHON(2.4)
 AM_DISABLE_STATIC
 AM_PROG_LIBTOOL
 PKG_PROG_PKG_CONFIG
 
+GETTEXT_PACKAGE="${PACKAGE}"
+AC_SUBST(GETTEXT_PACKAGE)
+dnl internationalization support; uncomment if translatable strings are reintroduced
+AM_GLIB_GNU_GETTEXT
+
+# AM_GLIB_GNU_GETTEXT above subst. $DATADIRNAME
+# this is the directory where the *.{mo,gmo} files are installed
+localedir='${prefix}/${DATADIRNAME}/locale'
+AC_SUBST(localedir)
+
 AC_CONFIG_HEADERS([config.h])
 
 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.0])
@@ -162,6 +176,11 @@ LIBTOOL_EXPORT_OPTIONS='-export-symbols-regex "^[[^cspi]].*"'
 AC_SUBST(LIBTOOL_EXPORT_OPTIONS)
 
 AC_CONFIG_FILES([Makefile
+                libspi-1.0.pc
+                libspi-1.0-uninstalled.pc
+                libloginhelper-1.0.pc
+                cspi-1.0.pc
+                cspi-1.0-uninstalled.pc
                 xml/Makefile
                 tests/Makefile
                 tools/Makefile
@@ -169,11 +188,15 @@ AC_CONFIG_FILES([Makefile
                 spi-common/Makefile
                 registryd/Makefile
                 atk-adaptor/Makefile
+                login-helper/Makefile
                 tests/dummyatk/Makefile
-                tests/clients/Makefile
+                tests/cspi/Makefile
+                tests/pyatspi/Makefile
+                tests/pyatspi/pasytest/Makefile
                 tests/apps/Makefile
                 dbind/Makefile
                 cspi/Makefile
+                pyatspi/Makefile
                 dbind-config.h])
 
 AC_OUTPUT