]> git.0d.be Git - empathy.git/blob - configure.ac
Rename empathy_account_get_connection_for to empathy_account_get_connection_for_path
[empathy.git] / configure.ac
1 AC_INIT(Empathy, 2.27.90, http://bugzilla.gnome.org/browse.cgi?product=empathy)
2 AC_PREREQ(2.59)
3 AC_COPYRIGHT([
4   Copyright (C) 2003-2007 Imendio AB
5   Copyright (C) 2007-2008 Collabora Ltd.
6 ])
7
8 # LT Version numbers, remember to change them just *before* a release.
9 #   (Interfaces removed:    CURRENT++, AGE=0, REVISION=0)
10 #   (Interfaces added:      CURRENT++, AGE++, REVISION=0)
11 #   (No interfaces changed:                   REVISION++)
12 LIBEMPATHY_CURRENT=28
13 LIBEMPATHY_AGE=1
14 LIBEMPATHY_REVISION=0
15
16 LIBEMPATHY_GTK_CURRENT=26
17 LIBEMPATHY_GTK_AGE=1
18 LIBEMPATHY_GTK_REVISION=0
19
20 AC_SUBST(LIBEMPATHY_CURRENT)
21 AC_SUBST(LIBEMPATHY_AGE)
22 AC_SUBST(LIBEMPATHY_REVISION)
23 AC_SUBST(LIBEMPATHY_GTK_CURRENT)
24 AC_SUBST(LIBEMPATHY_GTK_AGE)
25 AC_SUBST(LIBEMPATHY_GTK_REVISION)
26
27 # Minimal version required
28 GLIB_REQUIRED=2.16.0
29 GTK_REQUIRED=2.16.0
30 GCONF_REQUIRED=1.2.0
31 LIBPANELAPPLET_REQUIRED=2.10.0
32 TELEPATHY_GLIB_REQUIRED=0.7.31
33 ENCHANT_REQUIRED=1.2.0
34 ISO_CODES_REQUIRED=0.35
35 LIBNOTIFY_REQUIRED=0.4.4
36 LIBCANBERRA_GTK_REQUIRED=0.4
37 LIBCHAMPLAIN_REQUIRED=0.3.3
38 LIBCHAMPLAIN_GTK_REQUIRED=0.3.3
39 CLUTTER_GTK_REQUIRED=0.8.2
40 GEOCLUE_REQUIRED=0.11
41 WEBKIT_REQUIRED=1.1.7
42 NETWORK_MANAGER_REQUIRED=0.7.0
43
44 # Use --enable-maintainer-mode to disabled deprecated symbols
45 GNOME_MAINTAINER_MODE_DEFINES
46
47 # Uncomment that to build with single include disabled
48 #AC_DEFINE(G_DISABLE_SINGLE_INCLUDES, [], [Disable single includes for GLib])
49 #AC_DEFINE(GDK_PIXBUF_DISABLE_SINGLE_INCLUDES, [], [Disable single includes for GDK pixbuf])
50 #AC_DEFINE(GTK_DISABLE_SINGLE_INCLUDES, [], [Disable single includes for GTK])
51
52 AC_CONFIG_MACRO_DIR([m4])
53 AC_CONFIG_HEADERS([config.h])
54 AC_CONFIG_SRCDIR([configure.ac])
55 AC_CONFIG_AUX_DIR(.)
56
57 GNOME_COMMON_INIT
58
59 AM_INIT_AUTOMAKE(1.9 dist-bzip2 no-define -Wno-portability)
60 AC_ISC_POSIX
61 AC_PROG_CC
62 AC_HEADER_STDC
63 AM_PROG_LIBTOOL
64 AM_PROG_MKDIR_P
65 AM_PATH_GLIB_2_0
66 AC_PATH_XTRA
67 IT_PROG_INTLTOOL([0.35.0])
68 GTK_DOC_CHECK([1.3])
69 GNOME_DOC_INIT
70 IDT_COMPILE_WARNINGS
71 AC_PATH_PROG(DBUS_BINDING_TOOL, dbus-binding-tool)
72 AC_PATH_PROG(GCONFTOOL, gconftool-2)
73 AM_GCONF_SOURCE_2
74 GLIB_GENMARSHAL=`$PKG_CONFIG glib-2.0 --variable=glib_genmarshal`
75 AC_SUBST(GLIB_GENMARSHAL)
76
77 AC_CHECK_PROGS([XSLTPROC], [xsltproc])
78 if test -z "$XSLTPROC"; then
79   AC_MSG_ERROR([xsltproc (from libxslt) is required])
80 fi
81 AM_PATH_PYTHON([2.3])
82
83 EMPATHY_ARG_VALGRIND
84
85 # -----------------------------------------------------------
86 # Pkg-Config dependency checks
87 # -----------------------------------------------------------
88
89 PKG_CHECK_MODULES(LIBEMPATHY,
90 [
91    glib-2.0 >= $GLIB_REQUIRED
92    gobject-2.0
93    gio-2.0 >= $GLIB_REQUIRED
94    gio-unix-2.0 >= $GLIB_REQUIRED
95    libxml-2.0
96    telepathy-glib >= $TELEPATHY_GLIB_REQUIRED
97    telepathy-farsight
98    farsight2-0.10
99    gstreamer-0.10
100 ])
101
102 PKG_CHECK_MODULES(LIBEMPATHYGTK,
103 [
104    glib-2.0 >= $GLIB_REQUIRED
105    gobject-2.0
106    gio-2.0 >= $GLIB_REQUIRED
107    gconf-2.0 >= $GCONF_REQUIRED
108    x11
109    gtk+-2.0 >= $GTK_REQUIRED
110    libcanberra-gtk >= $LIBCANBERRA_GTK_REQUIRED
111    telepathy-glib >= $TELEPATHY_GLIB_REQUIRED
112    farsight2-0.10
113    gstreamer-0.10
114    gstreamer-interfaces-0.10
115 ])
116
117 PKG_CHECK_MODULES(EMPATHY,
118 [
119    glib-2.0 >= $GLIB_REQUIRED
120    gobject-2.0
121    gio-2.0 >= $GLIB_REQUIRED
122    gdk-x11-2.0
123    gtk+-2.0 >= $GTK_REQUIRED
124    libebook-1.2
125    dbus-glib-1
126    telepathy-glib >= $TELEPATHY_GLIB_REQUIRED
127    telepathy-farsight
128    gstreamer-0.10
129    unique-1.0
130 ])
131
132 PKG_CHECK_MODULES(LIBNOTIFY, libnotify >= $LIBNOTIFY_REQUIRED)
133
134 # -----------------------------------------------------------
135 # Enable debug
136 # -----------------------------------------------------------
137
138 AC_ARG_ENABLE(debug,
139   AC_HELP_STRING([--disable-debug],[compile without debug code]),
140     enable_debug=$enableval, enable_debug=yes )
141
142 if test x$enable_debug = xyes; then
143   AC_DEFINE(ENABLE_DEBUG, [], [Enable debug code])
144 fi
145
146 # -----------------------------------------------------------
147 # Language Support
148 # -----------------------------------------------------------
149
150 GETTEXT_PACKAGE=empathy
151 AC_SUBST(GETTEXT_PACKAGE)
152 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[Gettext package name])
153
154 AM_GLIB_GNU_GETTEXT
155
156 # -----------------------------------------------------------
157 # NM integration
158 # -----------------------------------------------------------
159 AC_ARG_ENABLE(network-manager,
160               AS_HELP_STRING([--enable-network-manager=@<:@no/yes/auto@:>@],
161                              [build with network-manager support]), ,
162                              enable_network_manager=auto)
163
164 if test "x$enable_network_manager" != "xno"; then
165    PKG_CHECK_MODULES(NETWORK_MANAGER,
166    [
167       libnm_glib >= $NETWORK_MANAGER_REQUIRED
168    ], have_nm="yes", have_nm="no")
169
170    if test "x$have_nm" = "xyes"; then
171       AC_DEFINE(HAVE_NM, 1, [Define if you have libnm-glib])
172    fi
173 else
174    have_nm=no
175 fi
176
177 if test "x$enable_network_manager" = "xyes" -a "x$have_nm" != "xyes"; then
178    AC_MSG_ERROR([Couldn't find libnm-glib dependencies.])
179 fi
180 AM_CONDITIONAL(HAVE_NM, test "x$have_NM" = "xyes")
181
182 # -----------------------------------------------------------
183 # Webkit
184 # -----------------------------------------------------------
185 AC_ARG_ENABLE(webkit,
186               AS_HELP_STRING([--enable-webkit=@<:@no/yes/auto@:>@],
187                              [build with webkit support]), ,
188                              enable_webkit=auto)
189
190 if test "x$enable_webkit" != "xno"; then
191    PKG_CHECK_MODULES(WEBKIT,
192    [
193       webkit-1.0 >= $WEBKIT_REQUIRED
194    ], have_webkit="yes", have_webkit="no")
195
196    if test "x$have_webkit" = "xyes"; then
197       AC_DEFINE(HAVE_WEBKIT, 1, [Define if you have libwebkitgtk])
198    fi
199 else
200    have_webkit=no
201 fi
202
203 if test "x$enable_webkit" = "xyes" -a "x$have_webkit" != "xyes"; then
204    AC_MSG_ERROR([Couldn't find webkit dependencies.])
205 fi
206 AM_CONDITIONAL(HAVE_WEBKIT, test "x$have_webkit" = "xyes")
207
208 # -----------------------------------------------------------
209 # spellchecking checks: enchant and iso-codes
210 # -----------------------------------------------------------
211 AC_ARG_ENABLE(spell,
212               AS_HELP_STRING([--enable-spell=@<:@no/yes/auto@:>@],
213                              [Enable spell checking]), ,
214                              enable_spell=auto)
215
216 if test "x$enable_spell" != "xno"; then
217    PKG_CHECK_MODULES(ENCHANT,
218    [
219       enchant >= $ENCHANT_REQUIRED,
220       iso-codes >= $ISO_CODES_REQUIRED
221    ], have_enchant="yes", have_enchant="no")
222
223    if test "x$have_enchant" = "xyes"; then
224       AC_MSG_CHECKING([whether iso-codes has iso-639 and iso-3166 domains])
225       if $PKG_CONFIG --variable=domains iso-codes | grep 639 > /dev/null && \
226          $PKG_CONFIG --variable=domains iso-codes | grep 3166 > /dev/null ; then
227             AC_DEFINE_UNQUOTED(ISO_CODES_PREFIX, ["`$PKG_CONFIG --variable=prefix iso-codes`"], [ISO codes prefix])
228             AC_DEFINE(HAVE_ENCHANT, [], [Define if you have libenchant])
229             result=yes
230       else
231             result=no
232             have_enchant="no"
233       fi
234       AC_MSG_RESULT([$result])
235    fi
236 else
237    have_enchant=no
238 fi
239
240 if test "x$enable_spell" = "xyes" -a "x$have_enchant" != "xyes"; then
241    AC_MSG_ERROR([Couldn't find spell dependencies.])
242 fi
243
244 AM_CONDITIONAL(HAVE_ENCHANT, test "x$have_enchant" = "xyes")
245
246 # -----------------------------------------------------------
247 # Map view checks: libchamplain
248 # -----------------------------------------------------------
249 AC_ARG_ENABLE(map,
250               AS_HELP_STRING([--enable-map=@<:@no/yes/auto@:>@],
251                              [Enable map view]), ,
252                              enable_map=auto)
253
254 if test "x$enable_map" != "xno"; then
255    PKG_CHECK_MODULES(LIBCHAMPLAIN,
256    [
257       champlain-0.3 >= $LIBCHAMPLAIN_REQUIRED,
258       champlain-gtk-0.3 >= $LIBCHAMPLAIN_GTK_REQUIRED
259       clutter-gtk-0.8 >= $CLUTTER_GTK_REQUIRED
260    ], have_libchamplain="yes", have_libchamplain="no")
261
262    if test "x$have_libchamplain" = "xyes"; then
263       AC_DEFINE(HAVE_LIBCHAMPLAIN, 1, [Define if you have libchamplain])
264    fi
265 else
266    have_libchamplain=no
267 fi
268
269 if test "x$enable_map" = "xyes" -a "x$have_libchamplain" != "xyes"; then
270    AC_MSG_ERROR([Couldn't find map view dependencies.])
271 fi
272
273 AM_CONDITIONAL(HAVE_LIBCHAMPLAIN, test "x$have_libchamplain" = "xyes")
274
275 # -----------------------------------------------------------
276 # location checks: geoclue
277 # -----------------------------------------------------------
278 AC_ARG_ENABLE(location,
279               AS_HELP_STRING([--enable-location=@<:@no/yes/auto@:>@],
280                              [Enable location awareness]), ,
281                              enable_location=auto)
282
283 if test "x$enable_location" != "xno"; then
284    PKG_CHECK_MODULES(GEOCLUE,
285    [
286       geoclue >= $GEOCLUE_REQUIRED
287    ], have_geoclue="yes", have_geoclue="no")
288
289    if test "x$have_geoclue" = "xyes"; then
290       AC_DEFINE(HAVE_GEOCLUE, 1, [Define if you have geoclue])
291    fi
292 else
293    have_geoclue="no"
294 fi
295
296 if test "x$enable_location" = "xyes" -a "x$have_geoclue" != "xyes"; then
297    AC_MSG_ERROR([Couldn't find location dependencies.])
298 fi
299
300 AM_CONDITIONAL(HAVE_GEOCLUE, test "x$have_geoclue" = "xyes")
301 AC_SUBST(GEOCLUE_CFLAGS)
302 AC_SUBST(GEOCLUE_LIBS)
303
304 # -----------------------------------------------------------
305 # Megaphone
306 # -----------------------------------------------------------
307 AC_ARG_ENABLE(megaphone,
308               AS_HELP_STRING([--enable-megaphone=@<:@no/yes/auto@:>@],
309                              [build megaphone applet]), ,
310                              enable_megaphone=auto)
311
312 if test "x$enable_megaphone" != "xno"; then
313    PKG_CHECK_MODULES(MEGAPHONE, 
314    [
315       libpanelapplet-2.0 >= $LIBPANELAPPLET_REQUIRED
316       glib-2.0 >= $GLIB_REQUIRED
317       gtk+-2.0 >= $GTK_REQUIRED
318       gconf-2.0 >= $GCONF_REQUIRED
319       telepathy-glib >= $TELEPATHY_GLIB_REQUIRED
320    ], have_megaphone="yes", have_megaphone="no")
321 else
322    have_megaphone=no
323 fi
324
325 if test "x$enable_megaphone" = "xyes" -a "x$have_megaphone" != "xyes"; then
326    AC_MSG_ERROR([Couldn't find megaphone dependencies.])
327 fi
328
329 AM_CONDITIONAL(HAVE_MEGAPHONE, test "x$have_megaphone" = "xyes")
330
331 # -----------------------------------------------------------
332 # Nothere
333 # -----------------------------------------------------------
334 AC_ARG_ENABLE(nothere,
335               AS_HELP_STRING([--enable-nothere=@<:@no/yes/auto@:>@],
336                              [build nothere applet]), ,
337                              enable_nothere=auto)
338
339 if test "x$enable_nothere" != "xno"; then
340    PKG_CHECK_MODULES(NOTHERE, 
341    [
342       libpanelapplet-2.0 >= $LIBPANELAPPLET_REQUIRED
343       glib-2.0 >= $GLIB_REQUIRED
344       gtk+-2.0 >= $GTK_REQUIRED
345       gconf-2.0 >= $GCONF_REQUIRED
346       telepathy-glib >= $TELEPATHY_GLIB_REQUIRED
347    ], have_nothere="yes", have_nothere="no")
348 else
349    have_nothere=no
350 fi
351
352 if test "x$enable_nothere" = "xyes" -a "x$have_nothere" != "xyes"; then
353    AC_MSG_ERROR([Couldn't find nothere dependencies.])
354 fi
355
356 AM_CONDITIONAL(HAVE_NOTHERE, test "x$have_nothere" = "xyes")
357
358 # -----------------------------------------------------------
359 # Tests
360 # -----------------------------------------------------------
361 AC_ARG_ENABLE(tests,
362               AS_HELP_STRING([--enable-tests=@<:@no/yes/auto@:>@],
363                              [build tests]), ,
364                              enable_tests=auto)
365
366 if test "x$enable_tests" != "xno"; then
367    PKG_CHECK_MODULES(CHECK,
368    [
369       check >= 0.9.4
370    ], have_check="yes", have_check="no")
371 else
372    have_check=no
373 fi
374
375 if test "x$enable_tests" = "xyes" -a "x$have_check" != "xyes"; then
376    AC_MSG_ERROR([Couldn't find check dependencies.])
377 fi
378
379 AM_CONDITIONAL(HAVE_TESTS, test "x$have_check" = "xyes")
380
381 # -----------------------------------------------------------
382 # Python Bindings
383 # -----------------------------------------------------------
384 AC_ARG_ENABLE(python,
385               AS_HELP_STRING([--enable-python=@<:@no/yes/auto@:>@],
386                              [build python bindings to libempathy and libempathy-gtk]), ,
387                              enable_python=auto)
388
389 if test "x$enable_python" != "xno"; then
390    PKG_CHECK_MODULES(PYTHON_BINDING,
391    [
392       pygtk-2.0,
393       glib-2.0 >= $GLIB_REQUIRED
394       gobject-2.0
395       gconf-2.0 >= $GCONF_REQUIRED
396       libxml-2.0
397       gtk+-2.0 >= $GTK_REQUIRED
398       gstreamer-0.10
399       gstreamer-interfaces-0.10
400       telepathy-farsight
401    ], have_python="yes", have_python="no")
402    if test "x$have_python" = "xyes" ; then
403       AM_CHECK_PYTHON_HEADERS(,have_python="no")
404       AC_CHECK_PROGS([PYGOBJECTCODEGEN], [pygobject-codegen-2.0 pygtk-codegen-2.0])
405    fi
406 else
407    have_python=no
408 fi
409
410 if test "x$enable_python" = "xyes" -a "x$have_python" != "xyes"; then
411    AC_MSG_ERROR([Couldn't find python.])
412 fi
413
414 AM_CONDITIONAL(HAVE_PYTHON, test "x$have_python" = "xyes")
415
416 # -----------------------------------------------------------
417 # Coding style checks
418 # -----------------------------------------------------------
419 AC_ARG_ENABLE(coding-style-checks,
420   AC_HELP_STRING([--disable-coding-style-checks],
421                  [don't check coding style using grep]),
422     [ENABLE_CODING_STYLE_CHECKS=$enableval], [ENABLE_CODING_STYLE_CHECKS=yes])
423
424 AC_SUBST([ENABLE_CODING_STYLE_CHECKS])
425 # -----------------------------------------------------------
426
427 SHAVE_INIT(.)
428
429 AC_OUTPUT([
430    Makefile
431    data/Makefile
432    data/empathy.desktop.in
433    data/icons/Makefile
434    extensions/Makefile
435    po/Makefile.in
436    libempathy/Makefile
437    libempathy/libempathy.pc
438    libempathy-gtk/Makefile
439    libempathy-gtk/libempathy-gtk.pc
440    src/Makefile
441    megaphone/Makefile
442    megaphone/src/Makefile
443    megaphone/data/Makefile
444    nothere/Makefile
445    nothere/src/Makefile
446    nothere/data/Makefile
447    docs/Makefile
448    docs/libempathy/Makefile
449    docs/libempathy/version.xml
450    docs/libempathy-gtk/Makefile
451    docs/libempathy-gtk/version.xml
452    help/Makefile
453    python/Makefile
454    python/pyempathy/Makefile
455    python/pyempathygtk/Makefile
456    tests/Makefile
457    tests/xml/Makefile
458    tools/Makefile
459    shave
460    shave-libtool
461 ])
462
463 echo "
464 Configure summary:
465
466         Compiler....................:  ${CC}
467         Compiler Flags..............:  ${CFLAGS}
468         Prefix......................:  ${prefix}
469         Shaved build................:  ${enable_shave}
470         Tests.......................:  ${have_check}
471         Coding style checks.........:  ${ENABLE_CODING_STYLE_CHECKS}
472
473     Features:
474         Spell checking (enchant)....:  ${have_enchant}
475         Display maps (libchamplain).:  ${have_libchamplain}
476         Location awareness (Geoclue):  ${have_geoclue}
477         Adium themes (Webkit).......:  ${have_webkit}
478         NetworkManager integration..:  ${have_nm}
479
480     Extras:
481         Documentation...............:  ${enable_gtk_doc}
482         Python bindings.............:  ${have_python}
483         Megaphone applet............:  ${have_megaphone}
484         Nothere applet..............:  ${have_nothere}
485 "