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
|
AC_INIT(Empathy, 0.9, http://bugzilla.gnome.org/browse.cgi?product=empathy)
AC_PREREQ(2.59)
AC_COPYRIGHT([Copyright (C) 2003-2007 Imendio AB])
AM_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE(1.9 dist-bzip2 no-define)
AM_MAINTAINER_MODE
AC_ISC_POSIX
AC_PROG_CC
AC_HEADER_STDC
AM_PROG_LIBTOOL
AM_PATH_GLIB_2_0
AC_PATH_XTRA
AC_PATH_PROG(DBUS_BINDING_TOOL, dbus-binding-tool)
AC_PATH_PROG(GCONFTOOL, gconftool-2)
AM_GCONF_SOURCE_2
IT_PROG_INTLTOOL([0.35.0])
GTK_DOC_CHECK([1.3])
GLIB_REQUIRED=2.12.0
GTK_REQUIRED=2.10.0
GCONF_REQUIRED=1.2.0
LIBGLADE_REQUIRED=2.0.0
TELEPATHY_REQUIRED=0.0.51
MISSION_CONTROL_REQUIRED=4.27
IDT_COMPILE_WARNINGS
GLIB_GENMARSHAL=`$PKG_CONFIG glib-2.0 --variable=glib_genmarshal`
AC_SUBST(GLIB_GENMARSHAL)
pluginlibdir=`$PKG_CONFIG mission-control --variable=pluginlibdir`
AC_SUBST(pluginlibdir)
dnl -----------------------------------------------------------
dnl Language Support
dnl -----------------------------------------------------------
GETTEXT_PACKAGE=empathy
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[Gettext package name])
AM_GLIB_GNU_GETTEXT
dnl -----------------------------------------------------------
dnl Pkg-Config dependency checks
dnl -----------------------------------------------------------
PKG_CHECK_MODULES(LIBEMPATHY,
[
glib-2.0 >= $GLIB_REQUIRED
gobject-2.0
gconf-2.0 >= $GCONF_REQUIRED
libxml-2.0
libtelepathy >= $TELEPATHY_REQUIRED
libmissioncontrol >= $MISSION_CONTROL_REQUIRED
])
PKG_CHECK_MODULES(EMPATHY,
[
glib-2.0 >= $GLIB_REQUIRED
gobject-2.0
gconf-2.0 >= $GCONF_REQUIRED
libxml-2.0
gnome-vfs-2.0
libtelepathy >= $TELEPATHY_REQUIRED
libmissioncontrol >= $MISSION_CONTROL_REQUIRED
gtk+-2.0 >= $GTK_REQUIRED
libglade-2.0 >= $LIBGLADE_REQUIRED
libgnomeui-2.0
])
dnl -----------------------------------------------------------
dnl ISO codes, used for aspell support
dnl -----------------------------------------------------------
AC_MSG_CHECKING([whether iso-codes exists and has iso-639 domain])
if $PKG_CONFIG --variable=domains iso-codes | grep -q 639 ; then
AC_MSG_RESULT([yes])
iso_codes_prefix=`$PKG_CONFIG --variable=prefix iso-codes`
iso_codes_pkgconfig=iso-codes
have_iso_codes=yes
else
AC_MSG_RESULT([no])
iso_codes_prefix=
iso_codes_pkgconfig=
have_iso_codes=no
fi
AC_DEFINE_UNQUOTED([ISO_CODES_PREFIX],["$iso_codes_prefix"],[ISO codes prefix])
dnl -----------------------------------------------------------
dnl ASpell
dnl -----------------------------------------------------------
AC_ARG_ENABLE(aspell,
AS_HELP_STRING([--enable-aspell=@<:@no/yes/auto@:>@],
[compile with aspell support]), ,
enable_aspell=auto)
if test "x$enable_aspell" = "xyes" -a "x$have_iso_codes" != "xyes"; then
AC_MSG_ERROR([You must have iso-codes with the iso-639 domain to use aspell.])
fi
if test "x$enable_aspell" != "xno" -a "x$have_iso_codes" = "xyes"; then
AC_CHECK_LIB(aspell, aspell_speller_check,have_aspell=yes,have_aspell=no,)
if test "x$have_aspell" = "xyes"; then
AC_DEFINE(HAVE_ASPELL, 1, [Define if we have aspell])
EMPATHY_LIBS="$EMPATHY_LIBS -laspell"
else
have_aspell=no
fi
else
have_aspell=no
fi
if test "x$enable_aspell" = "xyes" -a "x$have_aspell" != "xyes"; then
AC_MSG_ERROR([Couldn't find aspell.])
fi
dnl -----------------------------------------------------------
AC_OUTPUT([
Makefile
data/Makefile
data/empathy.desktop.in
data/16x16/Makefile
data/22x22/Makefile
data/32x32/Makefile
data/48x48/Makefile
data/scalable/Makefile
po/Makefile.in
libempathy/Makefile
libempathy/libempathy.pc
libempathy-gtk/Makefile
libempathy-gtk/libempathy-gtk.pc
src/Makefile
doc/Makefile
doc/libempathy/Makefile
doc/libempathy-gtk/Makefile
])
|