summaryrefslogtreecommitdiff
path: root/configure.ac
blob: 45925171d43274abeb491b146c40d9839e8c1fb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
AC_INIT([at-spi2-core], [0.4.0], [accessibility-atspi@lists.linux-foundation.org])
AC_PREREQ([2.59])
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_MACRO_DIR([m4])

AT_SPI_CORE_MAJOR_VERSION=0
AT_SPI_CORE_MINOR_VERSION=1
AT_SPI_CORE_MICRO_VERSION=3
AT_SPI_CORE_VERSION="$AT_SPI_CORE_MAJOR_VERSION.$AT_SPI_CORE_MINOR_VERSION"
AC_SUBST(AT_SPI_CORE_VERSION)

LT_RELEASE=$AT_SPI_CORE_VERSION
LT_CURRENT=0
LT_REVISION=1
LT_AGE=0
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([1.9 -Wall foreign])

AC_PROG_CC
LT_INIT([disable-static])
PKG_PROG_PKG_CONFIG

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)
AC_CHECK_LIB([glib-2.0], [g_ptr_array_new_with_free_func], [],
	[AC_MSG_ERROR([The version of glib-2.0 found does not define ]
		[g_ptr_array_new_with_free_func. Please upgrade glib.])],
	[$GLIB_LIBS])

PKG_CHECK_MODULES(DBUS_GLIB, [dbus-glib-1 >= 0.7.0])
AC_SUBST(DBUS_GLIB_LIBS)
AC_SUBST(DBUS_GLIB_CFLAGS)

PKG_CHECK_MODULES(GOBJ, [gobject-2.0 >= 2.0.0])
AC_SUBST(GOBJ_LIBS)
AC_SUBST(GOBJ_CFLAGS)

# --------------------------------------------------------------------
# Find DL functionality

AC_CHECK_LIB(c, dlopen, DL_LIBS="",
        AC_CHECK_LIB(dl, dlopen, DL_LIBS="-ldl",
                AC_MSG_ERROR([Could not find a library with the dlopen function])
        )
)

AC_SUBST(DL_LIBS)

AC_PATH_XTRA

if test x$no_x = xyes ; then
	AC_MSG_ERROR([X development libraries not found])
else
	X_LIBS="$X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
fi
AC_SUBST(X_LIBS)

save_LIBS="$LIBS"
LIBS=""
CPPFLAGS="$CPPFLAGS $X_CFLAGS"
AC_CHECK_LIB(Xtst, XTestFakeKeyEvent, XTST_LIBS=-lXtst,[
	AC_MSG_ERROR([Couldn't find the Xtst library. Check config.log])],
	$X_LIBS)
AC_SUBST(XTST_LIBS)
LIBS="$LIBS $save_LIBS"

save_LIBS="$LIBS"
LIBS=""
AC_CHECK_LIB(X11, XkbQueryExtension, have_xkb="maybe", have_xkb="no", $X_LIBS)
if test "x$have_xkb" = "xmaybe"; then 
	AC_CHECK_HEADER([X11/XKBlib.h], have_xkb=yes)
fi
if test "x$have_xkb" = "xyes"; then
	AC_DEFINE([HAVE_XKB], [], [Xkb is present])
fi
LIBS="$LIBS $save_LIBS"

save_LIBS="$LIBS"
LIBS=""
AC_CHECK_LIB(Xi, XOpenDevice, have_xinput="maybe", have_xinput="no", $X_LIBS)
if test "x$have_xinput" = "xmaybe"; then
	save_LIBS="$LIBS"
	LIBS="$LIBS $X_LIBS"
	AC_CHECK_HEADER([X11/extensions/XInput.h], [have_xinput="yes"])
	LIBS="$save_LIBS"
fi
if test "x$have_xinput" != "xyes"; then
	AC_MSG_ERROR([Couldn't find the XInput library. Check config.log for details])
fi
XINPUT_LIBS="-lXi"
AC_SUBST(XINPUT_LIBS)
LIBS="$LIBS $save_LIBS"

save_LIBS="$LIBS"
LIBS=""
AC_ARG_ENABLE(xevie,
	[AS_HELP_STRING([--enable-xevie],
		[Build with XEViE support [default=yes]])],
	enable_xevie="$enableval", enable_xevie=yes)

if test x$enable_xevie = xyes ; then
	have_xevie=
	AC_CHECK_LIB(Xext, XevieStart, have_xevie="yes", have_xevie="no", $X_LIBS)

	if test "x$have_xevie" = "xyes"; then
		XEVIE_LIBS="-lXext"
		AC_DEFINE([HAVE_XEVIE], [], [Xevie is present])
	else
	   AC_CHECK_LIB(Xevie, XevieQueryVersion, have_xevie="maybe",,$X_LIBS)
	   if test "x$have_xevie" = "xmaybe"; then
	      AC_CHECK_HEADER(X11/extensions/Xevie.h, have_xevie=yes, [],
	      [[#include <X11/Xlib.h>
]])
	      if test "x$have_xevie" = "xyes"; then
	      	      XEVIE_LIBS="-lXext -lXevie"	       
		      AC_DEFINE([HAVE_XEVIE], [], [Xevie is present])
	      fi
	   fi	
	fi
	AC_SUBST(XEVIE_LIBS)
fi
LIBS="$LIBS $save_LIBS"

AC_ARG_WITH([dbus_daemondir],
	[AS_HELP_STRING([--with-dbus-daemondir=<directory>],
		[Directory where the DBUS daemon is installed])],
    [DBUS_DAEMON="$with_dbus_daemondir/dbus-daemon"],
    [AC_PATH_PROG([DBUS_DAEMON], [dbus-daemon], [XXXDBUSDAEMONNOTFOUND],
		[$PATH$PATH_SEPARATOR/sbin$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR]dnl
[/libexec$PATH_SEPARATOR/usr/libexec$PATH_SEPARATOR/usr/local/bin]dnl
[$PATH_SEPARATOR/usr/pkg/bin])]
	)
if test "$DBUS_DAEMON" = "XXXDBUSDAEMONNOTFOUND"; then
	DBUS_DAEMON = "$bindir/dbus-daemon"
	AC_MSG_WARN([at-spi2 relies on dbus, and the dbus-daemon was not found])
	AC_MSG_WARN([we assume that it will be installed in "$bindir"])
fi
AC_SUBST(DBUS_DAEMON)

AC_ARG_WITH(dbus-services,
           [AS_HELP_STRING([--with-dbus-services=<directory>],
           [where D-BUS services directory is])])
if ! test -z "$with_dbus_services" ; then
           DBUS_SERVICES_DIR="$with_dbus_services"
else
           DBUS_SERVICES_DIR="$datadir/dbus-1/services"
fi
AC_SUBST(DBUS_SERVICES_DIR)

AC_SUBST(LIBTOOL_EXPORT_OPTIONS)

AC_ARG_ENABLE([relocate],
	[AS_HELP_STRING([--enable-relocate],
		[Relocate to coexist with CORBA @<:@default=yes@:>@])],
	[enable_relocate="$enableval"],
	[enable_relocate=yes])
if test x$enable_relocate = xyes ; then
	AC_DEFINE(RELOCATE, , [Relocate to coexist with CORBA])
fi
AM_CONDITIONAL(RELOCATE, test x$enable_relocate = xyes)
AC_SUBST(enable_relocate)

AC_CONFIG_FILES([Makefile
	xml/Makefile
	registryd/Makefile
	bus/at-spi-dbus-bus
	bus/Makefile])

AC_OUTPUT