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