1 AC_INIT([at-spi2-core], [2.23.4], [accessibility-atspi@lists.linux-foundation.org])
3 AC_CONFIG_AUX_DIR(config)
4 AC_CONFIG_MACRO_DIR([m4])
6 AT_SPI_CORE_MAJOR_VERSION=0
7 AT_SPI_CORE_MINOR_VERSION=1
8 AT_SPI_CORE_MICRO_VERSION=3
9 AT_SPI_CORE_VERSION="$AT_SPI_CORE_MAJOR_VERSION.$AT_SPI_CORE_MINOR_VERSION"
10 AC_SUBST(AT_SPI_CORE_VERSION)
12 LT_RELEASE=$AT_SPI_CORE_VERSION
16 LT_VERSION_INFO='-version-info ${LT_CURRENT}:${LT_REVISION}:${LT_AGE}'
17 AC_SUBST(LT_VERSION_INFO)
23 AM_INIT_AUTOMAKE([1.9 -Wall foreign no-dist-gzip dist-xz])
25 # Support silent build rules. Disable
26 # by either passing --disable-silent-rules to configure or passing V=1
28 AM_SILENT_RULES([yes])
32 LT_INIT([disable-static])
35 AC_CONFIG_HEADERS([config.h])
37 dnl translation of at-spi strings
38 IT_PROG_INTLTOOL([0.40.0])
41 GETTEXT_PACKAGE="${PACKAGE}"
42 AC_SUBST(GETTEXT_PACKAGE)
44 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.0])
48 PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.36.0])
52 PKG_CHECK_MODULES(GOBJ, [gobject-2.0 >= 2.0.0])
56 PKG_CHECK_MODULES(GIO, [gio-2.0 >= 2.28])
60 # --------------------------------------------------------------------
61 # Find DL functionality
63 AC_CHECK_LIB(c, dlopen, DL_LIBS="",
64 AC_CHECK_LIB(dl, dlopen, DL_LIBS="-ldl",
65 AC_MSG_ERROR([Could not find a library with the dlopen function])
74 [AS_HELP_STRING([--disable-x11],
75 [disable the X11 backend])],,
78 if test x$enable_x11 = xno; then
79 AM_CONDITIONAL(USE_X11, false)
80 elif test x$no_x = xyes ; then
81 AC_MSG_ERROR([X development libraries not found])
83 AM_CONDITIONAL(USE_X11, true)
84 X_LIBS="$X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
86 AC_DEFINE(HAVE_X11, 1, [Define to use X11])
92 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
93 AC_CHECK_LIB(Xtst, XTestFakeKeyEvent, XTST_LIBS=-lXtst,[
94 AC_MSG_ERROR([Couldn't find the Xtst library. Check config.log])],
97 LIBS="$LIBS $save_LIBS"
99 dnl Check for XkbQueryExtension
102 AC_CHECK_LIB(X11, XkbQueryExtension, have_xkb="maybe", have_xkb="no", $X_LIBS)
103 if test "x$have_xkb" = "xmaybe"; then
104 AC_CHECK_HEADER([X11/XKBlib.h], have_xkb=yes)
106 if test "x$have_xkb" = "xyes"; then
107 AC_DEFINE([HAVE_XKB], [], [Xkb is present])
109 LIBS="$LIBS $save_LIBS"
114 AC_CHECK_LIB(Xi, XOpenDevice, have_xinput="maybe", have_xinput="no", $X_LIBS)
115 if test "x$have_xinput" = "xmaybe"; then
118 AC_CHECK_HEADER([X11/extensions/XInput.h], [have_xinput="yes"])
121 if test "x$have_xinput" != "xyes"; then
122 AC_MSG_ERROR([Couldn't find the XInput library. Check config.log for details])
125 AC_SUBST(XINPUT_LIBS)
126 LIBS="$LIBS $save_LIBS"
132 [AS_HELP_STRING([--enable-xevie],
133 [Build with XEViE support [default=no]])],
134 enable_xevie="$enableval", enable_xevie=no)
136 if test -z "$backend_set"; then
137 enable_x11_backend=yes
140 if test x$enable_xevie = xyes ; then
142 AC_CHECK_LIB(Xext, XevieStart, have_xevie="yes", have_xevie="no", $X_LIBS)
144 if test "x$have_xevie" = "xyes"; then
146 AC_DEFINE([HAVE_XEVIE], [], [Xevie is present])
148 AC_CHECK_LIB(Xevie, XevieQueryVersion, have_xevie="maybe",,$X_LIBS)
149 if test "x$have_xevie" = "xmaybe"; then
150 AC_CHECK_HEADER(X11/extensions/Xevie.h, have_xevie=yes, [],
151 [[#include <X11/Xlib.h>
153 if test "x$have_xevie" = "xyes"; then
154 XEVIE_LIBS="-lXext -lXevie"
155 AC_DEFINE([HAVE_XEVIE], [], [Xevie is present])
161 LIBS="$LIBS $save_LIBS"
163 AC_ARG_WITH([dbus_daemondir],
164 [AS_HELP_STRING([--with-dbus-daemondir=<directory>],
165 [Directory where the DBUS daemon is installed])],
166 [DBUS_DAEMON="$with_dbus_daemondir/dbus-daemon"],
167 [AC_PATH_PROG([DBUS_DAEMON], [dbus-daemon], [XXXDBUSDAEMONNOTFOUND],
168 [$PATH$PATH_SEPARATOR/sbin$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR]dnl
169 [/libexec$PATH_SEPARATOR/usr/libexec$PATH_SEPARATOR/usr/local/bin]dnl
170 [$PATH_SEPARATOR/usr/pkg/bin])]
172 if test "$DBUS_DAEMON" = "XXXDBUSDAEMONNOTFOUND"; then
173 DBUS_DAEMON = "$bindir/dbus-daemon"
174 AC_MSG_WARN([at-spi2 relies on dbus, and the dbus-daemon was not found])
175 AC_MSG_WARN([we assume that it will be installed in "$bindir"])
177 AC_SUBST(DBUS_DAEMON)
179 AC_ARG_WITH(dbus-services,
180 [AS_HELP_STRING([--with-dbus-services=<directory>],
181 [where D-BUS services directory is])])
182 if ! test -z "$with_dbus_services" ; then
183 DBUS_SERVICES_DIR="$with_dbus_services"
185 DBUS_SERVICES_DIR="$datadir/dbus-1/services"
187 AC_SUBST(DBUS_SERVICES_DIR)
189 AC_PATH_PROG(GLIB_MKENUMS, glib-mkenums)
191 GOBJECT_INTROSPECTION_CHECK([0.9.6])
193 AC_SUBST(LIBTOOL_EXPORT_OPTIONS)
195 dnl find sizes & alignments
196 orig_CPPFLAGS=$CPPFLAGS
197 CPPFLAGS="$CPPFLAGS $DBUS_CFLAGS"
198 AC_CHECK_ALIGNOF(char)
199 AC_CHECK_ALIGNOF(dbus_bool_t, [#include <dbus/dbus.h>])
200 AC_CHECK_ALIGNOF(dbus_int16_t, [#include <dbus/dbus.h>])
201 AC_CHECK_ALIGNOF(dbus_int32_t, [#include <dbus/dbus.h>])
202 AC_CHECK_ALIGNOF(dbus_int64_t, [#include <dbus/dbus.h>])
203 AC_CHECK_ALIGNOF(double, [#include <dbus/dbus.h>])
204 AC_CHECK_ALIGNOF(dbind_pointer, [AC_INCLUDES_DEFAULT
205 typedef void *dbind_pointer;])
206 AC_CHECK_ALIGNOF(dbind_struct, [AC_INCLUDES_DEFAULT
207 typedef struct {char s1;} dbind_struct;])
209 GTK_DOC_CHECK([1.09])
211 if test "x$GCC" = xyes; then
212 CFLAGS="$CFLAGS -Werror-implicit-function-declaration"
214 CPPFLAGS=$orig_CPPFLAGS
215 AC_CONFIG_FILES([Makefile po/Makefile.in
222 doc/libatspi/Makefile
223 doc/libatspi/version.xml
226 atspi-2-uninstalled.pc