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