X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=configure.ac;h=8320c40b160f599cfc957622e374b23b8d4013bb;hb=23b0b74622ee824e48793967555cdb2a50af039d;hp=8b51084823936af1fd5a6055d9565b11df34697f;hpb=f346af9d38b2a69945543e38e1109ddb8131c886;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git diff --git a/configure.ac b/configure.ac index 8b51084..8320c40 100644 --- a/configure.ac +++ b/configure.ac @@ -1,19 +1,70 @@ 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 +AT_SPI_MICRO_VERSION=3 +AT_SPI_INTERFACE_AGE=0 +AT_SPI_BINARY_AGE=0 +AT_SPI_VERSION="$AT_SPI_MAJOR_VERSION.$AT_SPI_MINOR_VERSION.$AT_SPI_MICRO_VERSION" +AC_SUBST(AT_SPI_MAJOR_VERSION) +AC_SUBST(AT_SPI_MINOR_VERSION) +AC_SUBST(AT_SPI_MICRO_VERSION) +AC_SUBST(AT_SPI_INTERFACE_AGE) +AC_SUBST(AT_SPI_BINARY_AGE) + +# libtool versioning +LT_RELEASE=$AT_SPI_MAJOR_VERSION.$AT_SPI_MINOR_VERSION +LT_CURRENT=10 +LT_REVISION=11 +LT_AGE=10 +LT_VERSION_INFO='-version-info ${LT_CURRENT}:${LT_REVISION}:${LT_AGE}' +AC_SUBST(LT_VERSION_INFO) +AC_SUBST(LT_RELEASE) +AC_SUBST(LT_CURRENT) +AC_SUBST(LT_REVISION) +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]) +AC_SUBST(DBUS_LIBS) +AC_SUBST(DBUS_CFLAGS) + +PKG_CHECK_MODULES(GLIB, [glib-2.0]) +AC_SUBST(GLIB_LIBS) +AC_SUBST(GLIB_CFLAGS) + PKG_CHECK_MODULES(DBUS_GLIB, [dbus-glib-1 >= 0.7.0]) AC_SUBST(DBUS_GLIB_LIBS) AC_SUBST(DBUS_GLIB_CFLAGS) +PKG_CHECK_MODULES(LIB_XML, [libxml-2.0 >= 2.0.0]) +AC_SUBST(LIB_XML_LIBS) +AC_SUBST(LIB_XML_CFLAGS) + PKG_CHECK_MODULES(GOBJ, [gobject-2.0 >= 2.0.0]) AC_SUBST(GOBJ_LIBS) AC_SUBST(GOBJ_CFLAGS) @@ -106,16 +157,47 @@ if test -z "$GTK_MODULE_DIR"; then GTK_MODULE_DIR=gtk-2.0/modules fi +dnl find sizes & alignments +orig_CPPFLAGS=$CPPFLAGS +CPPFLAGS="$CPPFLAGS $DBUS_CFLAGS" +DBIND_CHECK_ALIGNOF(char) +DBIND_CHECK_ALIGNOF(dbus_bool_t) +DBIND_CHECK_ALIGNOF(dbus_int16_t) +DBIND_CHECK_ALIGNOF(dbus_int32_t) +DBIND_CHECK_ALIGNOF(dbus_int64_t) +DBIND_CHECK_ALIGNOF(double) +DBIND_CHECK_ALIGNOF(dbind_pointer) +DBIND_CHECK_ALIGNOF(dbind_struct) +CPPFLAGS=$orig_CPPFLAGS + +#libtool option to strip symbols starting with cspi +# +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 - idl/Makefile tests/Makefile tools/Makefile droute/Makefile spi-common/Makefile registryd/Makefile atk-adaptor/Makefile + login-helper/Makefile tests/dummyatk/Makefile - tests/testapps/Makefile]) + tests/data/Makefile + tests/pyatspi/Makefile + tests/pyatspi/pasytest/Makefile + tests/apps/Makefile + tests/cspi/Makefile + dbind/Makefile + cspi/Makefile + pyatspi/Makefile + dbind-config.h]) AC_OUTPUT