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