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