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