]> git.0d.be Git - empathy.git/blob - configure.ac
Ensure tp-logger was compiled with Call support
[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.8
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 # -----------------------------------------------------------
215 # Call support in tp-logger
216 # -----------------------------------------------------------
217 SAVE_CFLAGS=$CFLAGS
218 SAVE_CPPFLAGS=$CPPFLAGS
219 CFLAGS="$CFLAGS $EMPATHY_CFLAGS"
220 CPPFLAGS="$CPPFLAGS $EMPATHY_CFLAGS"
221
222 AC_CHECK_HEADER(telepathy-logger/call-event.h,,
223   AC_MSG_ERROR([tp-logger must be compiled with --enable-call]))
224
225 CFLAGS=$SAVE_CFLAGS
226 CPPFLAGS=$SAVE_CPPFLAGS
227
228 # -----------------------------------------------------------
229 # evolution-data-server (about-me)
230 # -----------------------------------------------------------
231 AC_ARG_WITH(eds,
232             AC_HELP_STRING([--with-eds], [build with evolution-data-server support]),,
233             [with_eds=yes])
234 if test x"$with_eds" = x"yes" ; then
235    PKG_CHECK_MODULES(EDS, [libebook-1.2])
236    AC_DEFINE(HAVE_EDS, 1, [Define if we have libebook])
237 fi
238
239 # -----------------------------------------------------------
240 # Enable debug
241 # -----------------------------------------------------------
242
243 AC_ARG_ENABLE(debug,
244   AC_HELP_STRING([--disable-debug],[compile without debug code]),
245     enable_debug=$enableval, enable_debug=yes )
246
247 if test x$enable_debug = xyes; then
248   AC_DEFINE(ENABLE_DEBUG, [], [Enable debug code])
249 fi
250
251 # -----------------------------------------------------------
252 # Language Support
253 # -----------------------------------------------------------
254
255 GETTEXT_PACKAGE=empathy
256 AC_SUBST(GETTEXT_PACKAGE)
257 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[Gettext package name])
258
259 AM_GLIB_GNU_GETTEXT
260
261 # -----------------------------------------------------------
262 # Connectivity integration
263 # -----------------------------------------------------------
264 AC_ARG_WITH(connectivity,
265               AS_HELP_STRING([--with-connectivity=@<:@nm/connman/auto/no@:>@],
266                              [build with connectivity support]), ,
267                              with_connectivity=auto)
268
269 if test "x$with_connectivity" = "xno"; then
270    have_nm=no
271    have_connman=no
272
273 elif test "x$with_connectivity" = "xconnman"; then
274    have_nm=no
275
276    PKG_CHECK_MODULES(CONNMAN,
277    [
278       dbus-glib-1
279    ], have_connman="yes", have_connman="no")
280
281    if test "x$have_connman" = "xyes"; then
282       AC_DEFINE(HAVE_CONNMAN, 1, [Define if you have connman dependencies])
283    fi
284
285 else
286    have_connman=no
287
288    PKG_CHECK_MODULES(NETWORK_MANAGER,
289    [
290       libnm-glib >= $NETWORK_MANAGER_REQUIRED
291    ], have_nm="yes", have_nm="no")
292
293    if test "x$have_nm" = "xyes"; then
294       AC_DEFINE(HAVE_NM, 1, [Define if you have libnm-glib])
295    fi
296 fi
297
298 if test "x$with_connectivity" = "xconnman" -a "x$have_connman" != "xyes"; then
299    AC_MSG_ERROR([Couldn't find connman dependencies.])
300 fi
301
302 if test "x$with_connectivity" = "xnm" -a "x$have_nm" != "xyes"; then
303    AC_MSG_ERROR([Couldn't find libnm-glib dependencies.])
304 fi
305
306 AM_CONDITIONAL(HAVE_NM, test "x$have_nm" = "xyes")
307 AM_CONDITIONAL(HAVE_CONNMAN, test "x$have_connman" = "xyes")
308
309 # -----------------------------------------------------------
310 # Webkit
311 # -----------------------------------------------------------
312 AC_ARG_ENABLE(webkit,
313               AS_HELP_STRING([--enable-webkit=@<:@no/yes/auto@:>@],
314                              [build with webkit support]), ,
315                              enable_webkit=auto)
316
317 if test "x$enable_webkit" != "xno"; then
318    PKG_CHECK_MODULES(WEBKIT, [webkitgtk-3.0 >= $WEBKIT_REQUIRED],
319         have_webkit="yes", have_webkit="no")
320
321    if test "x$have_webkit" = "xyes"; then
322       AC_DEFINE(HAVE_WEBKIT, 1, [Define if you have libwebkitgtk])
323    fi
324 else
325    have_webkit=no
326 fi
327
328 if test "x$enable_webkit" = "xyes" -a "x$have_webkit" != "xyes"; then
329    AC_MSG_ERROR([Could not find webkit dependencies.])
330 fi
331 AM_CONDITIONAL(HAVE_WEBKIT, test "x$have_webkit" = "xyes")
332
333 # -----------------------------------------------------------
334 # spellchecking checks: enchant and iso-codes
335 # -----------------------------------------------------------
336 AC_ARG_ENABLE(spell,
337               AS_HELP_STRING([--enable-spell=@<:@no/yes/auto@:>@],
338                              [Enable spell checking]), ,
339                              enable_spell=auto)
340
341 if test "x$enable_spell" != "xno"; then
342    PKG_CHECK_MODULES(ENCHANT,
343    [
344       enchant >= $ENCHANT_REQUIRED,
345       iso-codes >= $ISO_CODES_REQUIRED
346    ], have_enchant="yes", have_enchant="no")
347
348    if test "x$have_enchant" = "xyes"; then
349       AC_MSG_CHECKING([whether iso-codes has iso-639 and iso-3166 domains])
350       if $PKG_CONFIG --variable=domains iso-codes | grep 639 > /dev/null && \
351          $PKG_CONFIG --variable=domains iso-codes | grep 3166 > /dev/null ; then
352             AC_DEFINE_UNQUOTED(ISO_CODES_PREFIX, ["`$PKG_CONFIG --variable=prefix iso-codes`"], [ISO codes prefix])
353             AC_DEFINE(HAVE_ENCHANT, [], [Define if you have libenchant])
354             result=yes
355       else
356             result=no
357             have_enchant="no"
358       fi
359       AC_MSG_RESULT([$result])
360    fi
361 else
362    have_enchant=no
363 fi
364
365 if test "x$enable_spell" = "xyes" -a "x$have_enchant" != "xyes"; then
366    AC_MSG_ERROR([Could not find spell dependencies.])
367 fi
368
369 AM_CONDITIONAL(HAVE_ENCHANT, test "x$have_enchant" = "xyes")
370
371 # -----------------------------------------------------------
372 # Map view checks: libchamplain
373 # -----------------------------------------------------------
374 AC_ARG_ENABLE(map,
375               AS_HELP_STRING([--enable-map=@<:@no/yes/auto@:>@],
376                              [Enable map view]), ,
377                              enable_map=auto)
378
379 if test "x$enable_map" != "xno"; then
380
381    PKG_CHECK_MODULES(LIBCHAMPLAIN,
382     [
383        clutter-gtk-1.0
384        champlain-gtk-0.10
385        champlain-0.10
386     ], have_libchamplain="yes", have_libchamplain="no")
387
388    if test "x$have_libchamplain" = "xyes"; then
389       AC_DEFINE(HAVE_LIBCHAMPLAIN, 1, [Define if you have libchamplain])
390    fi
391 else
392    have_libchamplain=no
393 fi
394
395 if test "x$enable_map" = "xyes" -a "x$have_libchamplain" != "xyes"; then
396    AC_MSG_ERROR([Could not find map view dependencies.])
397 fi
398
399 AM_CONDITIONAL(HAVE_LIBCHAMPLAIN, test "x$have_libchamplain" = "xyes")
400
401 # -----------------------------------------------------------
402 # location checks: geoclue
403 # -----------------------------------------------------------
404 AC_ARG_ENABLE(location,
405               AS_HELP_STRING([--enable-location=@<:@no/yes/auto@:>@],
406                              [Enable location awareness]), ,
407                              enable_location=auto)
408
409 if test "x$enable_location" != "xno"; then
410    PKG_CHECK_MODULES(GEOCLUE,
411    [
412       geoclue >= $GEOCLUE_REQUIRED
413    ], have_geoclue="yes", have_geoclue="no")
414
415    if test "x$have_geoclue" = "xyes"; then
416       AC_DEFINE(HAVE_GEOCLUE, 1, [Define if you have geoclue])
417    fi
418 else
419    have_geoclue="no"
420 fi
421
422 if test "x$enable_location" = "xyes" -a "x$have_geoclue" != "xyes"; then
423    AC_MSG_ERROR([Could not find location dependencies.])
424 fi
425
426 AM_CONDITIONAL(HAVE_GEOCLUE, test "x$have_geoclue" = "xyes")
427 AC_SUBST(GEOCLUE_CFLAGS)
428 AC_SUBST(GEOCLUE_LIBS)
429
430 # -----------------------------------------------------------
431 # location checks: geocode-glib
432 # -----------------------------------------------------------
433 AC_ARG_ENABLE(geocode,
434               AS_HELP_STRING([--enable-geocode=@<:@no/yes/auto@:>@],
435                              [Enable geocode support]), ,
436                              enable_geocode=auto)
437
438 if test "x$enable_geocode" != "xno"; then
439    PKG_CHECK_MODULES(GEOCODE,
440    [
441       geocode-glib
442    ], have_geocode="yes", have_geocode="no")
443
444    if test "x$have_geocode" = "xyes"; then
445       AC_DEFINE(HAVE_GEOCODE, 1, [Define if you have geocode])
446    fi
447 else
448    have_geocode="no"
449 fi
450
451 if test "x$enable_geocode" = "xyes" -a "x$have_geocode" != "xyes"; then
452    AC_MSG_ERROR([Could not find geocode dependencies.])
453 fi
454
455 AM_CONDITIONAL(HAVE_GEOCODE, test "x$have_geocode" = "xyes")
456 AC_SUBST(GEOCODE_CFLAGS)
457 AC_SUBST(GEOCODE_LIBS)
458
459 # -----------------------------------------------------------
460 # meego widgets support
461 # -----------------------------------------------------------
462 AC_ARG_ENABLE(meego,
463               AS_HELP_STRING([--enable-meego=@<:@no/yes@:>@],
464                              [Enable meego widgets]), ,
465                              enable_meego=no)
466
467 if test "x$enable_meego" != "xno"; then
468     PKG_CHECK_MODULES(MEEGO,
469     [
470        mx-gtk-1.0
471        gio-unix-2.0
472     ], have_meego="yes", have_meego="no")
473
474     if test "x$have_meego" = "xyes"; then
475        AC_DEFINE(HAVE_MEEGO, 1, [Define if you have meego])
476     fi
477 else
478    have_meego="no"
479 fi
480
481 if test "x$enable_meego" = "xyes" -a "x$have_meego" != "xyes"; then
482    AC_MSG_ERROR([Could not find meego dependencies.])
483 fi
484
485 AM_CONDITIONAL(HAVE_MEEGO, test "x$have_meego" = "xyes")
486 AC_SUBST(MEEGO_CFLAGS)
487 AC_SUBST(MEEGO_LIBS)
488
489 # -----------------------------------------------------------
490 # nautilus-sendto
491 # -----------------------------------------------------------
492 AC_ARG_ENABLE(nautilus-sendto,
493               AS_HELP_STRING([--enable-nautilus-sendto=@<:@no/yes/auto@:>@],
494                              [build nautilus-sendto plugin]), ,
495                              enable_nautilus_sendto=auto)
496
497 if test "x$enable_nautilus_sendto" != "xno"; then
498    PKG_CHECK_MODULES(NST,
499     [
500        nautilus-sendto >= $NAUTILUS_SENDTO_REQUIRED
501     ], have_nst="yes", have_nst="no")
502 else
503    have_nst=no
504 fi
505
506 if test "x$enable_nautilus_sendto" = "xyes" -a "x$have_nst" != "xyes"; then
507    AC_MSG_ERROR([Could not find nautilus-sendto dependencies.])
508 fi
509
510 AM_CONDITIONAL(HAVE_NST, test "x$have_nst" = "xyes")
511
512 # -----------------------------------------------------------
513 # new, single-window control center
514 # -----------------------------------------------------------
515 AC_ARG_ENABLE(control_center_embedding,
516               AS_HELP_STRING([--enable-control-center-embedding=@<:@no/yes/auto@:>@],
517                              [Enable support for single-window control center]),
518                              , enable_control_center_embedding=auto)
519
520 if test "x$enable_control_center_embedding" != "xno"; then
521
522    PKG_CHECK_MODULES(CONTROL_CENTER_EMBEDDING, [libgnome-control-center >= GNOME_CONTROL_CENTER_REQUIRED],
523         have_control_center_embedding="yes", have_control_center_embedding="no")
524
525    if test "x$have_control_center_embedding" = "xyes"; then
526       AC_DEFINE(HAVE_CONTROL_CENTER_EMBEDDING, 1, [Define if you have the single-window control center])
527
528       AC_MSG_CHECKING([gnome-control-center extension dir])
529       CONTROL_CENTER_EXTENSIONDIR=`$PKG_CONFIG --variable=extensiondir libgnome-control-center`
530       if test "x$CONTROL_CENTER_EXTENSIONDIR" = "x"; then
531           AC_MSG_ERROR([Could not determine extensiondir])
532       else
533           AC_MSG_RESULT([$CONTROL_CENTER_EXTENSIONDIR])
534       fi
535       AC_SUBST(CONTROL_CENTER_EXTENSIONDIR)
536    fi
537 else
538    have_control_center_embedding="no"
539 fi
540
541 if test "x$enable_control_center_embedding" = "xyes" -a "x$have_control_center_embedding" != "xyes"; then
542    AC_MSG_ERROR([Could not find single-window control center dependencies.])
543 fi
544
545 AM_CONDITIONAL(HAVE_CONTROL_CENTER_EMBEDDING, test "x$have_control_center_embedding" = "xyes")
546 AC_SUBST(CONTROL_CENTER_EMBEDDING_CFLAGS)
547 AC_SUBST(CONTROL_CENTER_EMBEDDING_LIBS)
548
549 # Optional dependency for avatar selection
550 AC_ARG_WITH([cheese],
551             AS_HELP_STRING([--with-cheese], [enable cheese webcam support]),,
552             with_cheese=auto)
553
554 if test x"$with_cheese" != x"no" ; then
555    PKG_CHECK_MODULES(CHEESE, gstreamer-0.10 cheese-gtk >= 2.91.91.1, [have_cheese=yes], [have_cheese=no])
556    if test x${have_cheese} = xyes; then
557      AC_DEFINE(HAVE_CHEESE, 1, [Define to 1 to enable cheese webcam support])
558    fi
559    if test x${with_cheese} = xyes && test x${have_cheese} = xno; then
560      AC_MSG_ERROR([Cheese configured but not found])
561    fi
562 else
563    have_cheese=no
564 fi
565 AM_CONDITIONAL(BUILD_CHEESE, test x${have_cheese} = xyes)
566
567
568 # -----------------------------------------------------------
569 # Coding style checks
570 # -----------------------------------------------------------
571 AC_ARG_ENABLE(coding-style-checks,
572   AC_HELP_STRING([--disable-coding-style-checks],
573                  [do not check coding style using grep]),
574     [ENABLE_CODING_STYLE_CHECKS=$enableval], [ENABLE_CODING_STYLE_CHECKS=yes])
575
576 AC_SUBST([ENABLE_CODING_STYLE_CHECKS])
577 # -----------------------------------------------------------
578
579 AC_OUTPUT([
580    Makefile
581    data/Makefile
582    data/empathy.desktop.in
583    data/empathy-accounts.desktop.in
584    data/icons/Makefile
585    extensions/Makefile
586    po/Makefile.in
587    libempathy/Makefile
588    libempathy-gtk/Makefile
589    src/Makefile
590    nautilus-sendto-plugin/Makefile
591    help/Makefile
592    tests/Makefile
593    tests/interactive/Makefile
594    tests/xml/Makefile
595    tools/Makefile
596 ])
597
598 echo "
599 Configure summary:
600
601         Compiler....................:  ${CC}
602         Compiler Flags..............:  ${CFLAGS} ${ERROR_CFLAGS}
603         Prefix......................:  ${prefix}
604         Coding style checks.........:  ${ENABLE_CODING_STYLE_CHECKS}
605
606     Features:
607         Spell checking (enchant)....:  ${have_enchant}
608         Display maps (libchamplain).:  ${have_libchamplain}
609         Location awareness (Geoclue):  ${have_geoclue}
610         Geocode support (Geoclue):     ${have_geocode}
611         Adium themes (Webkit).......:  ${have_webkit}
612         Meego widgets...............:  ${have_meego}
613         Control center embedding....:  ${have_control_center_embedding}
614         Cheese webcam support ......:  ${have_cheese}
615
616     Connectivity:
617         NetworkManager integration..:  ${have_nm}
618         ConnMan integration.........:  ${have_connman}
619
620     Extras:
621         Nautilus-sendto plugin......:  ${have_nst}
622         Salut E-D-S support.........:  ${with_eds}
623         Exp. Call channel handler...:  ${have_farstream}
624 "