]> git.0d.be Git - empathy.git/blob - configure.ac
prepare 2.29.91 release
[empathy.git] / configure.ac
1 dnl If not 1, append datestamp to the version number
2 m4_define(empathy_released, 1)
3
4 m4_define([empathy_major_version], [2])
5 m4_define([empathy_minor_version], [29])
6 m4_define([empathy_micro_version], [91])
7 m4_define([empathy_nano_version], [0])
8
9 dnl Display the nano_version only if it's not '0'
10 m4_define([empathy_base_version],
11           [empathy_major_version.empathy_minor_version.empathy_micro_version])
12 m4_define([empathy_full_version],
13           [m4_if(empathy_nano_version, 0, [empathy_base_version],
14               [empathy_base_version].[empathy_nano_version])])
15
16 m4_define(empathy_maybe_datestamp,
17           m4_esyscmd([if test x]empathy_released[ != x1; then date +.%Y%m%d | tr -d '\n\r'; fi]))
18
19 m4_define(empathy_version, empathy_full_version[]empathy_maybe_datestamp)
20
21
22 AC_INIT(Empathy, empathy_version, http://bugzilla.gnome.org/browse.cgi?product=empathy)
23
24
25 AC_PREREQ(2.59)
26 AC_COPYRIGHT([
27   Copyright (C) 2003-2007 Imendio AB
28   Copyright (C) 2007-2008 Collabora Ltd.
29 ])
30
31 # Minimal version required
32 GLIB_REQUIRED=2.22.0
33 GTK_REQUIRED=2.18.0
34 GCONF_REQUIRED=1.2.0
35 TELEPATHY_GLIB_REQUIRED=0.9.2
36 ENCHANT_REQUIRED=1.2.0
37 ISO_CODES_REQUIRED=0.35
38 LIBNOTIFY_REQUIRED=0.4.4
39 LIBCANBERRA_GTK_REQUIRED=0.4
40 LIBCHAMPLAIN_REQUIRED=0.4
41 LIBCHAMPLAIN_GTK_REQUIRED=0.4
42 CLUTTER_GTK_REQUIRED=0.10
43 GEOCLUE_REQUIRED=0.11
44 WEBKIT_REQUIRED=1.1.15
45 KEYRING_REQUIRED=2.22
46 NETWORK_MANAGER_REQUIRED=0.7.0
47 NAUTILUS_SENDTO_REQUIRED=2.28.1
48
49 # Use --enable-maintainer-mode to disabled deprecated symbols
50 GNOME_MAINTAINER_MODE_DEFINES
51
52 # Warning if GLib/GDK/GTK headers are included
53 AC_DEFINE(G_DISABLE_SINGLE_INCLUDES, [], [Disable single includes for GLib])
54 AC_DEFINE(GDK_PIXBUF_DISABLE_SINGLE_INCLUDES, [], [Disable single includes for GDK pixbuf])
55 AC_DEFINE(GTK_DISABLE_SINGLE_INCLUDES, [], [Disable single includes for GTK])
56
57 AC_CONFIG_MACRO_DIR([m4])
58 AC_CONFIG_HEADERS([config.h])
59 AC_CONFIG_SRCDIR([configure.ac])
60 AC_CONFIG_AUX_DIR(.)
61
62 GNOME_COMMON_INIT
63
64 AM_INIT_AUTOMAKE(1.9 dist-bzip2 no-define -Wno-portability)
65
66 # Support silent build rules, requires at least automake-1.11. Disable
67 # by either passing --disable-silent-rules to configure or passing V=1
68 # to make
69 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
70
71 AC_ISC_POSIX
72 AC_PROG_CC
73 AC_HEADER_STDC
74 AM_PROG_LIBTOOL
75 AM_PROG_MKDIR_P
76 AM_PATH_GLIB_2_0
77 AC_PATH_XTRA
78 IT_PROG_INTLTOOL([0.35.0])
79 GNOME_DOC_INIT([0.17.3])
80 IDT_COMPILE_WARNINGS
81 AC_PATH_PROG(DBUS_BINDING_TOOL, dbus-binding-tool)
82 AC_PATH_PROG(GCONFTOOL, gconftool-2)
83 AM_GCONF_SOURCE_2
84 GLIB_GENMARSHAL=`$PKG_CONFIG glib-2.0 --variable=glib_genmarshal`
85 AC_SUBST(GLIB_GENMARSHAL)
86 CONTROL_CENTER_EXTENSIONDIR=`$PKG_CONFIG --variable=extensiondir libgnome-control-center-extension`
87 AC_SUBST(CONTROL_CENTER_EXTENSIONDIR)
88
89 AC_CHECK_PROGS([XSLTPROC], [xsltproc])
90 if test -z "$XSLTPROC"; then
91   AC_MSG_ERROR([xsltproc (from libxslt) is required])
92 fi
93 AM_PATH_PYTHON([2.3])
94
95 EMPATHY_ARG_VALGRIND
96
97
98 # -----------------------------------------------------------
99 # Error flags
100 # -----------------------------------------------------------
101 AS_COMPILER_FLAG(-Wall, ERROR_CFLAGS="-Wall", ERROR_CFLAGS="")
102 AS_COMPILER_FLAG(-Werror, werror=yes, werror=no)
103
104 AC_ARG_ENABLE(Werror,
105   AC_HELP_STRING([--disable-Werror],[compile without -Werror (normally enabled in development builds)]),
106     werror=$enableval, :)
107
108 AS_COMPILER_FLAG(-Wextra, wextra=yes, wextra=no)
109 AS_COMPILER_FLAG(-Wno-missing-field-initializers,
110         wno_missing_field_initializers=yes,
111         wno_missing_field_initializers=no)
112 AS_COMPILER_FLAG(-Wno-unused-parameter,
113         wno_unused_parameter=yes,
114         wno_unused_parameter=no)
115
116 ifelse(empathy_released, 1, [],
117     [
118         if test x$werror = xyes; then
119             ERROR_CFLAGS="$ERROR_CFLAGS -Werror"
120         fi
121         if test x$wextra = xyes -a \
122             x$wno_missing_field_initializers = xyes -a \
123             x$wno_unused_parameter = xyes; then
124             ERROR_CFLAGS="$ERROR_CFLAGS -Wextra -Wno-missing-field-initializers -Wno-unused-parameter"
125         fi
126     ])
127
128 AS_COMPILER_FLAG(-Wdeclaration-after-statement, ERROR_CFLAGS="$ERROR_CFLAGS -Wdeclaration-after-statement")
129 AS_COMPILER_FLAG(-Wshadow, ERROR_CFLAGS="$ERROR_CFLAGS -Wshadow")
130 AS_COMPILER_FLAG(-Wmissing-prototypes, ERROR_CFLAGS="$ERROR_CFLAGS -Wmissing-prototypes")
131 AS_COMPILER_FLAG(-Wmissing-declarations, ERROR_CFLAGS="$ERROR_CFLAGS -Wmissing-declarations")
132 # Disabled because some GTK+ headers (like gtkitemfactory.h) are bugged :(
133 #AS_COMPILER_FLAG(-Wstrict-prototypes, ERROR_CFLAGS="$ERROR_CFLAGS -Wstrict-prototypes")
134
135 AC_SUBST(ERROR_CFLAGS)
136
137 # -----------------------------------------------------------
138 # Pkg-Config dependency checks
139 # -----------------------------------------------------------
140
141 PKG_CHECK_MODULES(LIBEMPATHY,
142 [
143    glib-2.0 >= $GLIB_REQUIRED
144    gobject-2.0
145    gio-2.0 >= $GLIB_REQUIRED
146    gio-unix-2.0 >= $GLIB_REQUIRED
147    libxml-2.0
148    telepathy-glib >= $TELEPATHY_GLIB_REQUIRED
149    telepathy-farsight
150    farsight2-0.10
151    gstreamer-0.10
152 ])
153
154 PKG_CHECK_MODULES(LIBEMPATHYGTK,
155 [
156    glib-2.0 >= $GLIB_REQUIRED
157    gobject-2.0
158    gio-2.0 >= $GLIB_REQUIRED
159    gconf-2.0 >= $GCONF_REQUIRED
160    x11
161    gtk+-2.0 >= $GTK_REQUIRED
162    libcanberra-gtk >= $LIBCANBERRA_GTK_REQUIRED
163    telepathy-glib >= $TELEPATHY_GLIB_REQUIRED
164    farsight2-0.10
165    gstreamer-0.10
166    gstreamer-interfaces-0.10
167 ])
168
169 PKG_CHECK_MODULES(EMPATHY,
170 [
171    glib-2.0 >= $GLIB_REQUIRED
172    gobject-2.0
173    gio-2.0 >= $GLIB_REQUIRED
174    gdk-x11-2.0
175    gtk+-2.0 >= $GTK_REQUIRED
176    libebook-1.2
177    dbus-glib-1
178    telepathy-glib >= $TELEPATHY_GLIB_REQUIRED
179    telepathy-farsight
180    farsight2-0.10
181    gstreamer-0.10
182    unique-1.0
183    gnome-keyring-1 >= $KEYRING_REQUIRED
184 ])
185
186 PKG_CHECK_MODULES(LIBEMPATHY_ACCOUNTS_PANEL,
187 [
188    glib-2.0 >= $GLIB_REQUIRED
189    gobject-2.0
190    gio-2.0 >= $GLIB_REQUIRED
191    gdk-x11-2.0
192    gtk+-2.0 >= $GTK_REQUIRED
193    libebook-1.2
194    dbus-glib-1
195    telepathy-glib >= $TELEPATHY_GLIB_REQUIRED
196    unique-1.0
197    gnome-keyring-1 >= $KEYRING_REQUIRED
198 ])
199
200 PKG_CHECK_MODULES(LIBNOTIFY, libnotify >= $LIBNOTIFY_REQUIRED)
201
202 # -----------------------------------------------------------
203 # Enable debug
204 # -----------------------------------------------------------
205
206 AC_ARG_ENABLE(debug,
207   AC_HELP_STRING([--disable-debug],[compile without debug code]),
208     enable_debug=$enableval, enable_debug=yes )
209
210 if test x$enable_debug = xyes; then
211   AC_DEFINE(ENABLE_DEBUG, [], [Enable debug code])
212 fi
213
214 # -----------------------------------------------------------
215 # Language Support
216 # -----------------------------------------------------------
217
218 GETTEXT_PACKAGE=empathy
219 AC_SUBST(GETTEXT_PACKAGE)
220 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[Gettext package name])
221
222 AM_GLIB_GNU_GETTEXT
223
224 # -----------------------------------------------------------
225 # Connectivity integration
226 # -----------------------------------------------------------
227 AC_ARG_WITH(connectivity,
228               AS_HELP_STRING([--with-connectivity=@<:@nm/connman/auto/no@:>@],
229                              [build with connectivity support]), ,
230                              with_connectivity=auto)
231
232 if test "x$with_connectivity" = "xno"; then
233    have_nm=no
234    have_connman=no
235
236 elif test "x$with_connectivity" = "xconnman"; then
237
238    PKG_CHECK_MODULES(CONNMAN,
239    [
240       dbus-glib-1
241    ], have_connman="yes", have_connman="no")
242
243    if test "x$have_connman" = "xyes"; then
244       AC_DEFINE(HAVE_CONNMAN, 1, [Define if you have connman dependencies])
245       have_nm=no
246    fi
247
248 else
249
250    PKG_CHECK_MODULES(NETWORK_MANAGER,
251    [
252       libnm_glib >= $NETWORK_MANAGER_REQUIRED
253    ], have_nm="yes", have_nm="no")
254
255    if test "x$have_nm" = "xyes"; then
256       AC_DEFINE(HAVE_NM, 1, [Define if you have libnm-glib])
257       have_connman=no
258    else
259       PKG_CHECK_MODULES(NETWORK_MANAGER,
260       [
261           libnm-glib >= $NETWORK_MANAGER_REQUIRED
262       ], have_nm="yes", have_nm="no")
263
264       if test "x$have_nm" = "xyes"; then
265       AC_DEFINE(HAVE_NM, 1, [Define if you have libnm-glib])
266       have_connman=no
267       fi
268    fi
269 fi
270
271 if test "x$with_connectivity" = "xconnman" -a "x$have_connman" != "xyes"; then
272    AC_MSG_ERROR([Couldn't find connman dependencies.])
273 fi
274
275 if test "x$with_connectivity" = "xnm" -a "x$have_nm" != "xyes"; then
276    AC_MSG_ERROR([Couldn't find libnm-glib dependencies.])
277 fi
278
279 AM_CONDITIONAL(HAVE_NM, test "x$have_nm" = "xyes")
280 AM_CONDITIONAL(HAVE_CONNMAN, test "x$have_connman" = "xyes")
281
282 # -----------------------------------------------------------
283 # Webkit
284 # -----------------------------------------------------------
285 AC_ARG_ENABLE(webkit,
286               AS_HELP_STRING([--enable-webkit=@<:@no/yes/auto@:>@],
287                              [build with webkit support]), ,
288                              enable_webkit=auto)
289
290 if test "x$enable_webkit" != "xno"; then
291    PKG_CHECK_MODULES(WEBKIT,
292    [
293       webkit-1.0 >= $WEBKIT_REQUIRED
294    ], have_webkit="yes", have_webkit="no")
295
296    if test "x$have_webkit" = "xyes"; then
297       AC_DEFINE(HAVE_WEBKIT, 1, [Define if you have libwebkitgtk])
298    fi
299 else
300    have_webkit=no
301 fi
302
303 if test "x$enable_webkit" = "xyes" -a "x$have_webkit" != "xyes"; then
304    AC_MSG_ERROR([Couldn't find webkit dependencies.])
305 fi
306 AM_CONDITIONAL(HAVE_WEBKIT, test "x$have_webkit" = "xyes")
307
308 # -----------------------------------------------------------
309 # spellchecking checks: enchant and iso-codes
310 # -----------------------------------------------------------
311 AC_ARG_ENABLE(spell,
312               AS_HELP_STRING([--enable-spell=@<:@no/yes/auto@:>@],
313                              [Enable spell checking]), ,
314                              enable_spell=auto)
315
316 if test "x$enable_spell" != "xno"; then
317    PKG_CHECK_MODULES(ENCHANT,
318    [
319       enchant >= $ENCHANT_REQUIRED,
320       iso-codes >= $ISO_CODES_REQUIRED
321    ], have_enchant="yes", have_enchant="no")
322
323    if test "x$have_enchant" = "xyes"; then
324       AC_MSG_CHECKING([whether iso-codes has iso-639 and iso-3166 domains])
325       if $PKG_CONFIG --variable=domains iso-codes | grep 639 > /dev/null && \
326          $PKG_CONFIG --variable=domains iso-codes | grep 3166 > /dev/null ; then
327             AC_DEFINE_UNQUOTED(ISO_CODES_PREFIX, ["`$PKG_CONFIG --variable=prefix iso-codes`"], [ISO codes prefix])
328             AC_DEFINE(HAVE_ENCHANT, [], [Define if you have libenchant])
329             result=yes
330       else
331             result=no
332             have_enchant="no"
333       fi
334       AC_MSG_RESULT([$result])
335    fi
336 else
337    have_enchant=no
338 fi
339
340 if test "x$enable_spell" = "xyes" -a "x$have_enchant" != "xyes"; then
341    AC_MSG_ERROR([Couldn't find spell dependencies.])
342 fi
343
344 AM_CONDITIONAL(HAVE_ENCHANT, test "x$have_enchant" = "xyes")
345
346 # -----------------------------------------------------------
347 # Map view checks: libchamplain
348 # -----------------------------------------------------------
349 AC_ARG_ENABLE(map,
350               AS_HELP_STRING([--enable-map=@<:@no/yes/auto@:>@],
351                              [Enable map view]), ,
352                              enable_map=auto)
353
354 if test "x$enable_map" != "xno"; then
355    PKG_CHECK_MODULES(LIBCHAMPLAIN,
356    [
357       champlain-0.4 >= $LIBCHAMPLAIN_REQUIRED,
358       champlain-gtk-0.4 >= $LIBCHAMPLAIN_GTK_REQUIRED
359       clutter-gtk-0.10 >= $CLUTTER_GTK_REQUIRED
360    ], have_libchamplain="yes", have_libchamplain="no")
361
362    if test "x$have_libchamplain" = "xyes"; then
363       AC_DEFINE(HAVE_LIBCHAMPLAIN, 1, [Define if you have libchamplain])
364    fi
365 else
366    have_libchamplain=no
367 fi
368
369 if test "x$enable_map" = "xyes" -a "x$have_libchamplain" != "xyes"; then
370    AC_MSG_ERROR([Couldn't find map view dependencies.])
371 fi
372
373 AM_CONDITIONAL(HAVE_LIBCHAMPLAIN, test "x$have_libchamplain" = "xyes")
374
375 # -----------------------------------------------------------
376 # location checks: geoclue
377 # -----------------------------------------------------------
378 AC_ARG_ENABLE(location,
379               AS_HELP_STRING([--enable-location=@<:@no/yes/auto@:>@],
380                              [Enable location awareness]), ,
381                              enable_location=auto)
382
383 if test "x$enable_location" != "xno"; then
384    PKG_CHECK_MODULES(GEOCLUE,
385    [
386       geoclue >= $GEOCLUE_REQUIRED
387    ], have_geoclue="yes", have_geoclue="no")
388
389    if test "x$have_geoclue" = "xyes"; then
390       AC_DEFINE(HAVE_GEOCLUE, 1, [Define if you have geoclue])
391    fi
392 else
393    have_geoclue="no"
394 fi
395
396 if test "x$enable_location" = "xyes" -a "x$have_geoclue" != "xyes"; then
397    AC_MSG_ERROR([Couldn't find location dependencies.])
398 fi
399
400 AM_CONDITIONAL(HAVE_GEOCLUE, test "x$have_geoclue" = "xyes")
401 AC_SUBST(GEOCLUE_CFLAGS)
402 AC_SUBST(GEOCLUE_LIBS)
403
404 # -----------------------------------------------------------
405 # meego widgets support
406 # -----------------------------------------------------------
407 AC_ARG_ENABLE(meego,
408               AS_HELP_STRING([--enable-meego=@<:no/yes@:>@],
409                              [Enable meego widgets]), ,
410                              enable_meego=no)
411
412 if test "x$enable_meego" != "xno"; then
413     PKG_CHECK_MODULES(MEEGO,
414     [
415        mx-gtk-1.0
416     ], have_meego="yes", have_meego="no")
417
418     if test "x$have_meego" = "xyes"; then
419        AC_DEFINE(HAVE_MEEGO, 1, [Define if you have meego])
420     fi
421 else
422    have_meego="no"
423 fi
424
425 if test "x$enable_meego" = "xyes" -a "x$have_meego" != "xyes"; then
426    AC_MSG_ERROR([Couldn't find meego dependencies.])
427 fi
428
429 AM_CONDITIONAL(HAVE_MEEGO, test "x$have_meego" = "xyes")
430 AC_SUBST(MEEGO_CFLAGS)
431 AC_SUBST(MEEGO_LIBS)
432
433 # -----------------------------------------------------------
434 # nautilus-sendto
435 # -----------------------------------------------------------
436 AC_ARG_ENABLE(nautilus-sendto,
437               AS_HELP_STRING([--enable-nautilus-sendto=@<:@no/yes/auto@:>@],
438                              [build nautilus-sendto plugin]), ,
439                              enable_nautilus_sendto=auto)
440
441 if test "x$enable_nautilus_sendto" != "xno"; then
442    PKG_CHECK_MODULES(NST,
443    [
444       nautilus-sendto >= $NAUTILUS_SENDTO_REQUIRED
445    ], have_nst="yes", have_nst="no")
446 else
447    have_nst=no
448 fi
449
450 if test "x$enable_nautilus_sendto" = "xyes" -a "x$have_nst" != "xyes"; then
451    AC_MSG_ERROR([Couldn't find nautilus-sendto dependencies.])
452 fi
453
454 AM_CONDITIONAL(HAVE_NST, test "x$have_nst" = "xyes")
455
456 # -----------------------------------------------------------
457 # new, single-window control center
458 # -----------------------------------------------------------
459 AC_ARG_ENABLE(control_center_embedding,
460               AS_HELP_STRING([--enable-control-center-embedding=@<:@no/yes/auto@:>@],
461                              [Enable support for single-window control center]),
462                              , enable_control_center_embedding=auto)
463
464 if test "x$enable_control_center_embedding" != "xno"; then
465    PKG_CHECK_MODULES(CONTROL_CENTER_EMBEDDING,
466    [
467       libgnome-control-center-extension
468    ], have_control_center_embedding="yes", have_control_center_embedding="no")
469
470    if test "x$have_control_center_embedding" = "xyes"; then
471       AC_DEFINE(HAVE_CONTROL_CENTER_EMBEDDING, 1, [Define if you have the single-window control center])
472    fi
473 else
474    have_control_center_embedding="no"
475 fi
476
477 if test "x$enable_control_center_embedding" = "xyes" -a "x$have_control_center_embedding" != "xyes"; then
478    AC_MSG_ERROR([Couldn't find single-window control center dependencies.])
479 fi
480
481 AM_CONDITIONAL(HAVE_CONTROL_CENTER_EMBEDDING, test "x$have_control_center_embedding" = "xyes")
482 AC_SUBST(CONTROL_CENTER_EMBEDDING_CFLAGS)
483 AC_SUBST(CONTROL_CENTER_EMBEDDING_LIBS)
484
485 # -----------------------------------------------------------
486 # Coding style checks
487 # -----------------------------------------------------------
488 AC_ARG_ENABLE(coding-style-checks,
489   AC_HELP_STRING([--disable-coding-style-checks],
490                  [don't check coding style using grep]),
491     [ENABLE_CODING_STYLE_CHECKS=$enableval], [ENABLE_CODING_STYLE_CHECKS=yes])
492
493 AC_SUBST([ENABLE_CODING_STYLE_CHECKS])
494 # -----------------------------------------------------------
495
496 AC_OUTPUT([
497    Makefile
498    data/Makefile
499    data/empathy.desktop.in
500    data/empathy-accounts.desktop.in
501    data/icons/Makefile
502    extensions/Makefile
503    po/Makefile.in
504    libempathy/Makefile
505    libempathy-gtk/Makefile
506    src/Makefile
507    nautilus-sendto-plugin/Makefile
508    help/Makefile
509    tests/Makefile
510    tests/interactive/Makefile
511    tests/xml/Makefile
512    tools/Makefile
513 ])
514
515 echo "
516 Configure summary:
517
518         Compiler....................:  ${CC}
519         Compiler Flags..............:  ${CFLAGS} ${ERROR_CFLAGS}
520         Prefix......................:  ${prefix}
521         Coding style checks.........:  ${ENABLE_CODING_STYLE_CHECKS}
522
523     Features:
524         Spell checking (enchant)....:  ${have_enchant}
525         Display maps (libchamplain).:  ${have_libchamplain}
526         Location awareness (Geoclue):  ${have_geoclue}
527         Adium themes (Webkit).......:  ${have_webkit}
528         Meego widgets ..............:  ${have_meego}
529         Control center embedding....:  ${have_control_center_embedding}
530
531     Connectivity:
532         NetworkManager integration..:  ${have_nm}
533         ConnMan integration.........:  ${have_connman}
534
535     Extras:
536         Nautilus-sendto plugin......:  ${have_nst}
537 "