]> git.0d.be Git - empathy.git/blob - configure.ac
Updated Persian 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], [90])
7 m4_define([empathy_nano_version], [1])
8
9 dnl Display the nano_version only if it's not '0'
10 m4_define([empathy_base_version],
11           [empathy_major_version.empathy_minor_version.empathy_micro_version])
12 m4_define([empathy_full_version],
13           [m4_if(empathy_nano_version, 0, [empathy_base_version],
14               [empathy_base_version].[empathy_nano_version])])
15
16 m4_define(empathy_maybe_datestamp,
17           m4_esyscmd([if test x]empathy_released[ != x1; then date +.%Y%m%d | tr -d '\n\r'; fi]))
18
19 m4_define(empathy_version, empathy_full_version[]empathy_maybe_datestamp)
20
21
22 AC_INIT([Empathy],
23         [empathy_version],
24         [http://bugzilla.gnome.org/browse.cgi?product=empathy],
25         [empathy],
26         [https://live.gnome.org/Empathy])
27
28 AC_PREREQ([2.64])
29 AC_COPYRIGHT([
30   Copyright (C) 2003-2007 Imendio AB
31   Copyright (C) 2007-2010 Collabora Ltd.
32 ])
33
34 # Minimal version required
35
36 # Hardp deps
37 FOLKS_REQUIRED=0.6.0
38 GLIB_REQUIRED=2.28.0
39 GNUTLS_REQUIRED=2.8.5
40 GTK_REQUIRED=3.0.2
41 GSTREAMER_REQUIRED=0.10.32
42 KEYRING_REQUIRED=2.26.0
43 GCR_REQUIRED=2.91.4
44 LIBCANBERRA_GTK_REQUIRED=0.25
45 LIBNOTIFY_REQUIRED=0.7.0
46 TELEPATHY_FARSIGHT_REQUIRED=0.0.14
47 TELEPATHY_GLIB_REQUIRED=0.15.5
48 TELEPATHY_LOGGER=0.2.10
49 WEBKIT_REQUIRED=1.3.13
50
51 # Optional deps
52 CLUTTER_GTK_REQUIRED=0.90.3
53 ENCHANT_REQUIRED=1.2.0
54 GEOCLUE_REQUIRED=0.11
55 ISO_CODES_REQUIRED=0.35
56 LIBCHAMPLAIN_GTK_REQUIRED=0.7.1
57 LIBCHAMPLAIN_REQUIRED=0.9
58 NAUTILUS_SENDTO_REQUIRED=2.90.0
59 NETWORK_MANAGER_REQUIRED=0.7.0
60 GNOME_CONTROL_CENTER_REQUIRED=2.31.4
61
62 # Use --enable-maintainer-mode to disable deprecated symbols,
63 # disable single include and enable GSEAL. If this is not a released empathy,
64 # maintainer mode is forced
65 # FIXME: don't disable deprecated symbols until bgo #636654 has been fixed
66 #ifelse(empathy_released, 1, [], [enable_maintainer_mode="yes"])
67 #GNOME_MAINTAINER_MODE_DEFINES
68
69 # telepathy-yell
70 prev_top_build_prefix=$ac_top_build_prefix
71 prev_ac_configure_args=$ac_configure_args
72 ac_configure_args="$ac_configure_args --disable-shared-library"
73 AX_CONFIG_DIR([telepathy-yell])
74 ac_top_build_prefix=$prev_top_build_prefix
75 ac_configure_args=$prev_ac_configure_args
76 export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:"$ac_top_build_prefix"telepathy-yell/telepathy-yell
77
78 AC_CONFIG_MACRO_DIR([m4])
79 AC_CONFIG_HEADERS([config.h])
80 AC_CONFIG_SRCDIR([configure.ac])
81 AC_CONFIG_AUX_DIR(.)
82
83 AM_INIT_AUTOMAKE([1.11 no-define -Wno-portability tar-ustar no-dist-gzip dist-xz])
84
85 # Support silent build rules. Disable
86 # by either passing --disable-silent-rules to configure or passing V=1
87 # to make
88 AM_SILENT_RULES([yes])
89
90 # Check for programs
91 AC_PROG_CC
92 AC_HEADER_STDC
93 AM_PROG_MKDIR_P
94 AM_PATH_GLIB_2_0
95 AC_PATH_XTRA
96
97 # Initialize libtool
98 LT_PREREQ([2.2])
99 LT_INIT
100
101 GNOME_DOC_INIT([0.17.3])
102 AC_PATH_PROG(DBUS_BINDING_TOOL, dbus-binding-tool)
103 GLIB_GSETTINGS
104 GLIB_GENMARSHAL=`$PKG_CONFIG glib-2.0 --variable=glib_genmarshal`
105 AC_SUBST(GLIB_GENMARSHAL)
106
107 AC_CHECK_PROGS([XSLTPROC], [xsltproc])
108 if test -z "$XSLTPROC"; then
109   AC_MSG_ERROR([xsltproc (from libxslt) is required])
110 fi
111 AM_PATH_PYTHON([2.3])
112
113 EMPATHY_ARG_VALGRIND
114
115
116 # -----------------------------------------------------------
117 # Error flags
118 # -----------------------------------------------------------
119 AS_COMPILER_FLAG(-Wall, ERROR_CFLAGS="-Wall", ERROR_CFLAGS="")
120 AS_COMPILER_FLAG(-Werror, werror=yes, werror=no)
121
122 AC_ARG_ENABLE(Werror,
123   AS_HELP_STRING([--disable-Werror],
124                  [compile without -Werror (normally enabled in development builds)]),
125     werror=$enableval, :)
126
127 AS_COMPILER_FLAG(-Wextra, wextra=yes, wextra=no)
128 AS_COMPILER_FLAG(-Wno-missing-field-initializers,
129         wno_missing_field_initializers=yes,
130         wno_missing_field_initializers=no)
131 AS_COMPILER_FLAG(-Wno-unused-parameter,
132         wno_unused_parameter=yes,
133         wno_unused_parameter=no)
134
135 ifelse(empathy_released, 1, [],
136     [
137         if test x$werror = xyes; then
138             ERROR_CFLAGS="$ERROR_CFLAGS -Werror"
139         fi
140         if test x$wextra = xyes -a \
141             x$wno_missing_field_initializers = xyes -a \
142             x$wno_unused_parameter = xyes; then
143             ERROR_CFLAGS="$ERROR_CFLAGS -Wextra -Wno-missing-field-initializers -Wno-unused-parameter"
144         fi
145     ])
146
147 AS_COMPILER_FLAG(-Wdeclaration-after-statement, ERROR_CFLAGS="$ERROR_CFLAGS -Wdeclaration-after-statement")
148 AS_COMPILER_FLAG(-Wshadow, ERROR_CFLAGS="$ERROR_CFLAGS -Wshadow")
149 AS_COMPILER_FLAG(-Wmissing-prototypes, ERROR_CFLAGS="$ERROR_CFLAGS -Wmissing-prototypes")
150 AS_COMPILER_FLAG(-Wmissing-declarations, ERROR_CFLAGS="$ERROR_CFLAGS -Wmissing-declarations")
151 AS_COMPILER_FLAG(-Wstrict-prototypes, ERROR_CFLAGS="$ERROR_CFLAGS -Wstrict-prototypes")
152
153 AC_SUBST(ERROR_CFLAGS)
154
155 AC_ARG_ENABLE(gprof,
156             AS_HELP_STRING([--enable-gprof=@<:@no/yes@:>@],
157             [build with support for gprof]),,
158             [enable_gprof=no])
159 if test "x$enable_gprof" != "xno" ; then
160     CFLAGS="$CFLAGS -pg"
161     LDFLAGS="$LDFLAGS -pg"
162 fi
163
164 AC_SUBST(LDFLAGS)
165
166 # -----------------------------------------------------------
167 # Pkg-Config dependency checks
168 # -----------------------------------------------------------
169
170 AC_CHECK_LIBM
171 AC_SUBST(LIBM)
172
173 PKG_CHECK_MODULES(EMPATHY,
174 [
175    dbus-glib-1
176    folks >= $FOLKS_REQUIRED
177    folks-telepathy >= $FOLKS_REQUIRED
178    glib-2.0 >= $GLIB_REQUIRED
179    gio-2.0 >= $GLIB_REQUIRED
180    gio-unix-2.0 >= $GLIB_REQUIRED
181    gnome-keyring-1 >= $KEYRING_REQUIRED
182    gnutls >= $GNUTLS_REQUIRED
183    gmodule-export-2.0
184    gobject-2.0
185    gsettings-desktop-schemas
186    gstreamer-0.10 >= $GSTREAMER_REQUIRED
187    gstreamer-interfaces-0.10
188    libxml-2.0
189    telepathy-glib >= $TELEPATHY_GLIB_REQUIRED
190    telepathy-logger-0.2 >= $TELEPATHY_LOGGER
191    x11
192    gtk+-3.0 >= $GTK_REQUIRED
193    libcanberra-gtk3 >= $LIBCANBERRA_GTK_REQUIRED
194    libnotify >= $LIBNOTIFY_REQUIRED
195    gcr-3 >= $GCR_REQUIRED
196    libpulse
197    libpulse-mainloop-glib
198    webkitgtk-3.0 >= $WEBKIT_REQUIRED
199 ])
200
201 PKG_CHECK_MODULES(YELL, [telepathy-yell])
202
203 PKG_CHECK_MODULES(EMPATHY_AV,
204 [
205    farsight2-0.10
206    telepathy-farsight >= $TELEPATHY_FARSIGHT_REQUIRED
207 ])
208
209 # -----------------------------------------------------------
210 # Call interface
211 # -----------------------------------------------------------
212 AC_ARG_ENABLE(call,
213             AS_HELP_STRING([--enable-call=@<:@no/yes/auto@:>@],
214             [build with Call interface support]),,
215             [enable_call=auto])
216 if test "x$enable_call" != "xno" ; then
217    PKG_CHECK_MODULES(EMPATHY_CALL,
218    [
219       farsight2-0.10
220       telepathy-farstream
221       clutter-1.0
222       clutter-gtk-1.0
223       clutter-gst-1.0
224    ], have_call="yes", have_call="no" )
225
226    if test "x$have_call" = "xyes"; then
227       AC_DEFINE(HAVE_CALL, 1, [Define if you have Call channel support])
228    fi
229 else
230   have_call=no
231 fi
232
233 if test "x$enable_call" = "xyes" -a "x$have_call" != "xyes"; then
234    AC_MSG_ERROR([Could not find Call handler dependencies:
235
236 $EMPATHY_CALL_PKG_ERRORS])
237 fi
238 AM_CONDITIONAL(HAVE_CALL, test "x$have_call" = "xyes")
239
240
241 # -----------------------------------------------------------
242 # Call support in tp-logger
243 # -----------------------------------------------------------
244 AC_ARG_ENABLE(call-logs,
245             AS_HELP_STRING([--enable-call-logs=@<:@no/yes/auto@:>@],
246             [build with call logs support]),,
247             [enable_call_logs=auto])
248 if test "x$enable_call_logs" != "xno" ; then
249    SAVE_CFLAGS=$CFLAGS
250    SAVE_CPPFLAGS=$CPPFLAGS
251    SAVE_LDFLAGS=$LDFLAGS
252    CFLAGS="$CFLAGS $EMPATHY_CFLAGS"
253    CPPFLAGS="$CPPFLAGS $EMPATHY_CFLAGS"
254    LDFLAGS="$LDFLAGS $EMPATHY_LDFLAGS"
255
256    AC_CHECK_HEADER(telepathy-logger/call-event.h,
257       have_call_logs="yes", have_call_logs="no")
258
259    CFLAGS=$SAVE_CFLAGS
260    CPPFLAGS=$SAVE_CPPFLAGS
261    LDFLAGS=$SAVE_LDFLAGS
262
263    if test "x$have_call_logs" = "xyes"; then
264       AC_DEFINE(HAVE_CALL_LOGS, 1, [Define if you have call log support])
265    fi
266 else
267   have_call_logs=no
268 fi
269
270 if test "x$enable_call_logs" = "xyes" -a "x$have_call_logs" != "xyes"; then
271    AC_MSG_ERROR([Call logs support requested but telepathy-logger wasn't
272                  built with --enable-call])
273 fi
274
275 # -----------------------------------------------------------
276 # evolution-data-server (about-me)
277 # -----------------------------------------------------------
278 AC_ARG_WITH(eds,
279             AS_HELP_STRING([--with-eds],
280                            [build with evolution-data-server support]),,
281             [with_eds=yes])
282 if test x"$with_eds" = x"yes" ; then
283    PKG_CHECK_MODULES(EDS, [libebook-1.2])
284    AC_DEFINE(HAVE_EDS, 1, [Define if we have libebook])
285 fi
286
287 # -----------------------------------------------------------
288 # Enable debug
289 # -----------------------------------------------------------
290
291 AC_ARG_ENABLE(debug,
292   AS_HELP_STRING([--disable-debug],
293                  [compile without debug code]),
294     enable_debug=$enableval, enable_debug=yes )
295
296 if test x$enable_debug = xyes; then
297   AC_DEFINE(ENABLE_DEBUG, [], [Enable debug code])
298 fi
299
300 # -----------------------------------------------------------
301 # Language Support
302 # -----------------------------------------------------------
303 IT_PROG_INTLTOOL([0.40.0])
304
305 AM_GNU_GETTEXT_VERSION([0.17])
306 AM_GNU_GETTEXT([external])
307
308 GETTEXT_PACKAGE=empathy
309 AC_SUBST(GETTEXT_PACKAGE)
310 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[Gettext package name])
311
312 # -----------------------------------------------------------
313 # Connectivity integration
314 # -----------------------------------------------------------
315 AC_ARG_WITH(connectivity,
316               AS_HELP_STRING([--with-connectivity=@<:@nm/connman/auto/no@:>@],
317                              [build with connectivity support]), ,
318                              with_connectivity=auto)
319
320 if test "x$with_connectivity" = "xno"; then
321    have_nm=no
322    have_connman=no
323
324 elif test "x$with_connectivity" = "xconnman"; then
325    have_nm=no
326
327    PKG_CHECK_MODULES(CONNMAN,
328    [
329       dbus-glib-1
330    ], have_connman="yes", have_connman="no")
331
332    if test "x$have_connman" = "xyes"; then
333       AC_DEFINE(HAVE_CONNMAN, 1, [Define if you have connman dependencies])
334    fi
335
336 else
337    have_connman=no
338
339    PKG_CHECK_MODULES(NETWORK_MANAGER,
340    [
341       libnm-glib >= $NETWORK_MANAGER_REQUIRED
342    ], have_nm="yes", have_nm="no")
343
344    if test "x$have_nm" = "xyes"; then
345       AC_DEFINE(HAVE_NM, 1, [Define if you have libnm-glib])
346    fi
347 fi
348
349 if test "x$with_connectivity" = "xconnman" -a "x$have_connman" != "xyes"; then
350    AC_MSG_ERROR([Couldn't find connman dependencies:
351
352 $CONNMAN_PKG_ERRORS])
353 fi
354
355 if test "x$with_connectivity" = "xnm" -a "x$have_nm" != "xyes"; then
356    AC_MSG_ERROR([Couldn't find Network Manager dependencies:
357
358 $NETWORK_MANAGER_PKG_ERRORS])
359 fi
360
361 AM_CONDITIONAL(HAVE_NM, test "x$have_nm" = "xyes")
362 AM_CONDITIONAL(HAVE_CONNMAN, test "x$have_connman" = "xyes")
363
364 # -----------------------------------------------------------
365 # gudev
366 # -----------------------------------------------------------
367 AC_ARG_ENABLE(gudev,
368               AS_HELP_STRING([--enable-gudev=@<:@no/yes/auto@:>@],
369                              [build with gudev support]), ,
370                              enable_gudev=auto)
371
372 if test "x$enable_gudev" != "xno"; then
373
374    PKG_CHECK_MODULES(UDEV, [gudev-1.0],
375         have_gudev="yes", have_gudev="no")
376
377    if test "x$have_gudev" = "xyes"; then
378       AC_DEFINE(HAVE_UDEV, 1, [Define if you have gudev])
379    fi
380 else
381    have_gudev=no
382 fi
383
384 if test "x$enable_gudev" = "xyes" -a "x$have_gudev" != "xyes"; then
385    AC_MSG_ERROR([Could not find gudev dependencies:
386
387 $UDEV_PKG_ERRORS])
388 fi
389 AM_CONDITIONAL(HAVE_UDEV, test "x$have_gudev" = "xyes")
390
391 # -----------------------------------------------------------
392 # spellchecking checks: enchant and iso-codes
393 # -----------------------------------------------------------
394 AC_ARG_ENABLE(spell,
395               AS_HELP_STRING([--enable-spell=@<:@no/yes/auto@:>@],
396                              [Enable spell checking]), ,
397                              enable_spell=auto)
398
399 if test "x$enable_spell" != "xno"; then
400    PKG_CHECK_MODULES(ENCHANT,
401    [
402       enchant >= $ENCHANT_REQUIRED,
403       iso-codes >= $ISO_CODES_REQUIRED
404    ], have_enchant="yes", have_enchant="no")
405
406    if test "x$have_enchant" = "xyes"; then
407       AC_MSG_CHECKING([whether iso-codes has iso-639 and iso-3166 domains])
408       if $PKG_CONFIG --variable=domains iso-codes | grep 639 > /dev/null && \
409          $PKG_CONFIG --variable=domains iso-codes | grep 3166 > /dev/null ; then
410             AC_DEFINE_UNQUOTED(ISO_CODES_PREFIX, ["`$PKG_CONFIG --variable=prefix iso-codes`"], [ISO codes prefix])
411             AC_DEFINE(HAVE_ENCHANT, [], [Define if you have libenchant])
412             result=yes
413       else
414             result=no
415             have_enchant="no"
416       fi
417       AC_MSG_RESULT([$result])
418    fi
419 else
420    have_enchant=no
421 fi
422
423 if test "x$enable_spell" = "xyes" -a "x$have_enchant" != "xyes"; then
424    AC_MSG_ERROR([Could not find spell-checking dependencies:
425
426 $ENCHANT_PKG_ERRORS])
427 fi
428
429 AM_CONDITIONAL(HAVE_ENCHANT, test "x$have_enchant" = "xyes")
430
431 # -----------------------------------------------------------
432 # Map view checks: libchamplain
433 # -----------------------------------------------------------
434 AC_ARG_ENABLE(map,
435               AS_HELP_STRING([--enable-map=@<:@no/yes/auto@:>@],
436                              [Enable map view]), ,
437                              enable_map=auto)
438
439 if test "x$enable_map" != "xno"; then
440
441    PKG_CHECK_MODULES(LIBCHAMPLAIN,
442     [
443        clutter-gtk-1.0
444        champlain-gtk-0.10
445        champlain-0.10
446     ], have_libchamplain="yes", have_libchamplain="no")
447
448    if test "x$have_libchamplain" = "xyes"; then
449       AC_DEFINE(HAVE_LIBCHAMPLAIN, 1, [Define if you have libchamplain])
450    fi
451 else
452    have_libchamplain=no
453 fi
454
455 if test "x$enable_map" = "xyes" -a "x$have_libchamplain" != "xyes"; then
456    AC_MSG_ERROR([Could not find map view dependencies:
457
458 $LIBCHAMPLAIN_PKG_ERRORS])
459 fi
460
461 AM_CONDITIONAL(HAVE_LIBCHAMPLAIN, test "x$have_libchamplain" = "xyes")
462
463 # -----------------------------------------------------------
464 # location checks: geoclue
465 # -----------------------------------------------------------
466 AC_ARG_ENABLE(location,
467               AS_HELP_STRING([--enable-location=@<:@no/yes/auto@:>@],
468                              [Enable location awareness]), ,
469                              enable_location=auto)
470
471 if test "x$enable_location" != "xno"; then
472    PKG_CHECK_MODULES(GEOCLUE,
473    [
474       geoclue >= $GEOCLUE_REQUIRED
475    ], have_geoclue="yes", have_geoclue="no")
476
477    if test "x$have_geoclue" = "xyes"; then
478       AC_DEFINE(HAVE_GEOCLUE, 1, [Define if you have geoclue])
479    fi
480 else
481    have_geoclue="no"
482 fi
483
484 if test "x$enable_location" = "xyes" -a "x$have_geoclue" != "xyes"; then
485    AC_MSG_ERROR([Could not find location dependencies:
486
487 $GEOCLUE_PKG_ERRORS])
488 fi
489
490 AM_CONDITIONAL(HAVE_GEOCLUE, test "x$have_geoclue" = "xyes")
491 AC_SUBST(GEOCLUE_CFLAGS)
492 AC_SUBST(GEOCLUE_LIBS)
493
494 # -----------------------------------------------------------
495 # location checks: geocode-glib
496 # -----------------------------------------------------------
497 AC_ARG_ENABLE(geocode,
498               AS_HELP_STRING([--enable-geocode=@<:@no/yes/auto@:>@],
499                              [Enable geocode support]), ,
500                              enable_geocode=auto)
501
502 if test "x$enable_geocode" != "xno"; then
503    PKG_CHECK_MODULES(GEOCODE,
504    [
505       geocode-glib
506    ], have_geocode="yes", have_geocode="no")
507
508    if test "x$have_geocode" = "xyes"; then
509       AC_DEFINE(HAVE_GEOCODE, 1, [Define if you have geocode])
510    fi
511 else
512    have_geocode="no"
513 fi
514
515 if test "x$enable_geocode" = "xyes" -a "x$have_geocode" != "xyes"; then
516    AC_MSG_ERROR([Could not find geocode dependencies:
517
518 $GEOCODE_PKG_ERRORS])
519 fi
520
521 AM_CONDITIONAL(HAVE_GEOCODE, test "x$have_geocode" = "xyes")
522 AC_SUBST(GEOCODE_CFLAGS)
523 AC_SUBST(GEOCODE_LIBS)
524
525 # -----------------------------------------------------------
526 # meego widgets support
527 # -----------------------------------------------------------
528 AC_ARG_ENABLE(meego,
529               AS_HELP_STRING([--enable-meego=@<:@no/yes@:>@],
530                              [Enable meego widgets]), ,
531                              enable_meego=no)
532
533 if test "x$enable_meego" != "xno"; then
534     PKG_CHECK_MODULES(MEEGO,
535     [
536        mx-gtk-1.0
537        gio-unix-2.0
538     ], have_meego="yes", have_meego="no")
539
540     if test "x$have_meego" = "xyes"; then
541        AC_DEFINE(HAVE_MEEGO, 1, [Define if you have meego])
542     fi
543 else
544    have_meego="no"
545 fi
546
547 if test "x$enable_meego" = "xyes" -a "x$have_meego" != "xyes"; then
548    AC_MSG_ERROR([Could not find meego dependencies:
549
550 $MEEGO_PKG_ERRORS])
551 fi
552
553 AM_CONDITIONAL(HAVE_MEEGO, test "x$have_meego" = "xyes")
554 AC_SUBST(MEEGO_CFLAGS)
555 AC_SUBST(MEEGO_LIBS)
556
557 # -----------------------------------------------------------
558 # nautilus-sendto
559 # -----------------------------------------------------------
560 AC_ARG_ENABLE(nautilus-sendto,
561               AS_HELP_STRING([--enable-nautilus-sendto=@<:@no/yes/auto@:>@],
562                              [build nautilus-sendto plugin]), ,
563                              enable_nautilus_sendto=auto)
564
565 if test "x$enable_nautilus_sendto" != "xno"; then
566    PKG_CHECK_MODULES(NST,
567     [
568        nautilus-sendto >= $NAUTILUS_SENDTO_REQUIRED
569     ], have_nst="yes", have_nst="no")
570 else
571    have_nst=no
572 fi
573
574 if test "x$enable_nautilus_sendto" = "xyes" -a "x$have_nst" != "xyes"; then
575    AC_MSG_ERROR([Could not find nautilus-sendto dependencies:
576
577 $NST_PKG_ERRORS])
578 fi
579
580 AM_CONDITIONAL(HAVE_NST, test "x$have_nst" = "xyes")
581
582 # -----------------------------------------------------------
583 # goa-mc-plugin
584 # -----------------------------------------------------------
585 AC_ARG_ENABLE(goa,
586               AS_HELP_STRING([--enable-goa=@<:@no/yes/auto@:>@],
587                              [build GOA MC plugin]), ,
588                              enable_goa=auto)
589
590 if test "x$enable_goa" != "xno"; then
591    PKG_CHECK_MODULES(GOA,
592     [
593        mission-control-plugins
594        goa-1.0
595     ], have_goa="yes", have_goa="no")
596
597    AC_MSG_CHECKING([Mission Control plugins dir])
598    MISSION_CONTROL_PLUGINS_DIR=`pkg-config --variable=plugindir mission-control-plugins`
599
600    AC_SUBST(MISSION_CONTROL_PLUGINS_DIR)
601 else
602    have_goa=no
603 fi
604
605 if test "x$enable_goa" = "xyes" -a "x$have_goa" != "xyes"; then
606    AC_MSG_ERROR([Could not find GOA dependencies.])
607 fi
608
609 AM_CONDITIONAL(HAVE_GOA, test "x$have_goa" = "xyes")
610
611 # -----------------------------------------------------------
612 # new, single-window control center
613 # -----------------------------------------------------------
614 AC_ARG_ENABLE(control_center_embedding,
615               AS_HELP_STRING([--enable-control-center-embedding=@<:@no/yes/auto@:>@],
616                              [Enable support for single-window control center]),
617                              , enable_control_center_embedding=auto)
618
619 if test "x$enable_control_center_embedding" != "xno"; then
620
621    PKG_CHECK_MODULES(CONTROL_CENTER_EMBEDDING, [libgnome-control-center >= GNOME_CONTROL_CENTER_REQUIRED],
622         have_control_center_embedding="yes", have_control_center_embedding="no")
623
624    if test "x$have_control_center_embedding" = "xyes"; then
625       AC_DEFINE(HAVE_CONTROL_CENTER_EMBEDDING, 1, [Define if you have the single-window control center])
626
627       AC_MSG_CHECKING([gnome-control-center extension dir])
628       CONTROL_CENTER_EXTENSIONDIR=`$PKG_CONFIG --variable=extensiondir libgnome-control-center`
629       if test "x$CONTROL_CENTER_EXTENSIONDIR" = "x"; then
630           AC_MSG_ERROR([Could not determine extensiondir])
631       else
632           AC_MSG_RESULT([$CONTROL_CENTER_EXTENSIONDIR])
633       fi
634       AC_SUBST(CONTROL_CENTER_EXTENSIONDIR)
635    fi
636 else
637    have_control_center_embedding="no"
638 fi
639
640 if test "x$enable_control_center_embedding" = "xyes" -a "x$have_control_center_embedding" != "xyes"; then
641    AC_MSG_ERROR([Could not find single-window control center dependencies:
642
643 $CONTROL_CENTER_EMBEDDING_PKG_ERRORS])
644 fi
645
646 AM_CONDITIONAL(HAVE_CONTROL_CENTER_EMBEDDING, test "x$have_control_center_embedding" = "xyes")
647 AC_SUBST(CONTROL_CENTER_EMBEDDING_CFLAGS)
648 AC_SUBST(CONTROL_CENTER_EMBEDDING_LIBS)
649
650 # Optional dependency for avatar selection
651 AC_ARG_WITH([cheese],
652             AS_HELP_STRING([--with-cheese],
653                            [enable cheese webcam support]),,
654             with_cheese=auto)
655
656 if test x"$with_cheese" != x"no" ; then
657    PKG_CHECK_MODULES(CHEESE, gstreamer-0.10 cheese-gtk >= 2.91.91.1, [have_cheese=yes], [have_cheese=no])
658    if test x${have_cheese} = xyes; then
659      AC_DEFINE(HAVE_CHEESE, 1, [Define to 1 to enable cheese webcam support])
660    fi
661    if test x${with_cheese} = xyes && test x${have_cheese} = xno; then
662      AC_MSG_ERROR([Cheese configured but not found:
663
664 $CHEESE_PKG_ERRORS])
665    fi
666 else
667    have_cheese=no
668 fi
669 AM_CONDITIONAL(BUILD_CHEESE, test x${have_cheese} = xyes)
670
671
672 # -----------------------------------------------------------
673 # Coding style checks
674 # -----------------------------------------------------------
675 AC_ARG_ENABLE(coding-style-checks,
676   AS_HELP_STRING([--disable-coding-style-checks],
677                  [do not check coding style using grep]),
678     [ENABLE_CODING_STYLE_CHECKS=$enableval],
679     [ENABLE_CODING_STYLE_CHECKS=yes])
680
681 AC_SUBST([ENABLE_CODING_STYLE_CHECKS])
682 # -----------------------------------------------------------
683
684 AC_CONFIG_FILES([
685    Makefile
686    data/Makefile
687    data/empathy.desktop.in
688    data/empathy-accounts.desktop.in
689    data/icons/Makefile
690    extensions/Makefile
691    po/Makefile.in
692    libempathy/Makefile
693    libempathy-gtk/Makefile
694    src/Makefile
695    nautilus-sendto-plugin/Makefile
696    goa-mc-plugin/Makefile
697    help/Makefile
698    tests/Makefile
699    tests/interactive/Makefile
700    tests/xml/Makefile
701    tools/Makefile
702 ])
703 AC_OUTPUT
704
705 echo "
706 Configure summary:
707
708         Compiler....................:  ${CC}
709         Compiler Flags..............:  ${CFLAGS} ${ERROR_CFLAGS}
710         Linker Flags................:  ${LDFLAGS}
711         Prefix......................:  ${prefix}
712         Coding style checks.........:  ${ENABLE_CODING_STYLE_CHECKS}
713
714     Features:
715         Spell checking (enchant)....:  ${have_enchant}
716         Display maps (libchamplain).:  ${have_libchamplain}
717         Location awareness (Geoclue):  ${have_geoclue}
718         Geocode support (Geocode)...:  ${have_geocode}
719         Meego widgets...............:  ${have_meego}
720         Control center embedding....:  ${have_control_center_embedding}
721         Cheese webcam support ......:  ${have_cheese}
722         Camera monitoring...........:  ${have_gudev}
723
724     Connectivity:
725         NetworkManager integration..:  ${have_nm}
726         ConnMan integration.........:  ${have_connman}
727
728     Extras:
729         Nautilus-sendto plugin......:  ${have_nst}
730         GOA MC plugin...............:  ${have_goa}
731         Salut E-D-S support.........:  ${with_eds}
732         Exp. Call channel handler...:  ${have_call}
733         Exp. Call log support.......:  ${have_call_logs}
734 "