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