01ecd95013f7bdc1143c65fce419fa4f9a6896af
[platform/upstream/connman.git] / configure.ac
1 AC_PREREQ(2.60)
2 AC_INIT(connman, 1.35)
3
4 AC_CONFIG_MACRO_DIR([m4])
5
6 AM_INIT_AUTOMAKE([foreign subdir-objects color-tests])
7 AC_CONFIG_HEADERS([config.h])
8
9 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
10
11 AM_MAINTAINER_MODE
12
13 AC_PREFIX_DEFAULT(/usr/local)
14
15 PKG_PROG_PKG_CONFIG
16
17 COMPILER_FLAGS
18
19 AC_SUBST(abs_top_srcdir)
20 AC_SUBST(abs_top_builddir)
21
22 AC_LANG_C
23
24 AC_PROG_CC
25 AM_PROG_CC_C_O
26 AC_PROG_CC_PIE
27 AC_PROG_INSTALL
28 AC_PROG_MKDIR_P
29
30 m4_define([_LT_AC_TAGCONFIG], [])
31 m4_ifdef([AC_LIBTOOL_TAGS], [AC_LIBTOOL_TAGS([])])
32
33 AC_DISABLE_STATIC
34 AC_PROG_LIBTOOL
35
36 gl_CONFIGMAKE_PREP
37
38 AC_ARG_ENABLE(optimization, AC_HELP_STRING([--disable-optimization],
39                         [disable code optimization through compiler]), [
40         if (test "${enableval}" = "no"); then
41                 CFLAGS="$CFLAGS -O0 -U_FORTIFY_SOURCE"
42         fi
43 ])
44
45 AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug],
46                         [enable compiling with debugging information]), [
47         if (test "${enableval}" = "yes" &&
48                                 test "${ac_cv_prog_cc_g}" = "yes"); then
49                 CFLAGS="$CFLAGS -g"
50         fi
51 ])
52
53 AC_ARG_ENABLE(pie, AC_HELP_STRING([--enable-pie],
54                         [enable position independent executables flag]), [
55         if (test "${enableval}" = "yes" &&
56                                 test "${ac_cv_prog_cc_pie}" = "yes"); then
57                 CFLAGS="$CFLAGS -fPIE"
58                 LDFLAGS="$LDFLAGS -pie"
59         fi
60 ])
61
62 AC_ARG_ENABLE(hh2serial-gps,
63         AC_HELP_STRING([--enable-hh2serial-gps], [enable hh2serial GPS support]),
64                         [enable_hh2serial_gps=${enableval}], [enable_hh2serial_gps="no"])
65 AM_CONDITIONAL(HH2SERIAL_GPS, test "${enable_hh2serial_gps}" != "no")
66 AM_CONDITIONAL(HH2SERIAL_GPS_BUILTIN, test "${enable_hh2serial_gps}" = "builtin")
67
68 AC_ARG_ENABLE(telephony,
69         AC_HELP_STRING([--enable-telephony], [enable Telephony support]),
70                         [enable_telephony=${enableval}], [enable_telephony="yes"])
71 AM_CONDITIONAL(TELEPHONY, test "${enable_telephony}" != "no")
72 AM_CONDITIONAL(TELEPHONY_BUILTIN, test "${enable_telephony}" = "builtin")
73
74 AC_ARG_ENABLE(tizen-ext,
75         AC_HELP_STRING([--enable-tizen-ext], [enable TIZEN extensions]),
76                         [if (test "${enableval}" = "yes"); then
77                                 CFLAGS="$CFLAGS -DTIZEN_EXT"
78                                 LIBS="$LIBS -lsmack"
79                         fi])
80 AM_CONDITIONAL(TIZEN_EXT, test "${enable-tizen-ext}" != "no")
81
82 AC_ARG_WITH(openconnect, AC_HELP_STRING([--with-openconnect=PROGRAM],
83         [specify location of openconnect binary]), [path_openconnect=${withval}])
84
85 AC_ARG_ENABLE(openconnect,
86         AC_HELP_STRING([--enable-openconnect], [enable openconnect support]),
87                         [enable_openconnect=${enableval}], [enable_openconnect="no"])
88 if (test "${enable_openconnect}" != "no"); then
89         if (test -z "${path_openconnect}"); then
90                 AC_PATH_PROG(OPENCONNECT, [openconnect], [], $PATH:/bin:/usr/bin)
91                 if (test -z "${OPENCONNECT}"); then
92                         AC_MSG_ERROR(openconnect binary not found)
93                 fi
94         else
95                 OPENCONNECT="${path_openconnect}"
96                 AC_SUBST(OPENCONNECT)
97         fi
98 fi
99 AM_CONDITIONAL(OPENCONNECT, test "${enable_openconnect}" != "no")
100 AM_CONDITIONAL(OPENCONNECT_BUILTIN, test "${enable_openconnect}" = "builtin")
101
102 AC_ARG_WITH(openvpn, AC_HELP_STRING([--with-openvpn=PROGRAM],
103         [specify location of openvpn binary]), [path_openvpn=${withval}])
104
105 AC_ARG_ENABLE(openvpn,
106         AC_HELP_STRING([--enable-openvpn], [enable openvpn support]),
107                         [enable_openvpn=${enableval}], [enable_openvpn="no"])
108 if (test "${enable_openvpn}" != "no"); then
109         if (test -z "${path_openvpn}"); then
110                 AC_PATH_PROG(OPENVPN, [openvpn], [/usr/bin/openvpn], $PATH:/bin:/usr/bin)
111                 if (test -z "${OPENVPN}"); then
112                         AC_MSG_ERROR(openvpn binary not found)
113                 fi
114         else
115                 OPENVPN="${path_openvpn}"
116                 AC_SUBST(OPENVPN)
117         fi
118 fi
119 AM_CONDITIONAL(OPENVPN, test "${enable_openvpn}" != "no")
120 AM_CONDITIONAL(OPENVPN_BUILTIN, test "${enable_openvpn}" = "builtin")
121
122 AC_ARG_WITH(ipsec, AC_HELP_STRING([--with-ipsec=PROGRAM],
123         [specify location of ipsec binary]), [path_ipsec=${withval}])
124
125 AC_ARG_ENABLE(ipsec,
126         AC_HELP_STRING([--enable-ipsec], [enable ipsec support]),
127                         [enable_ipsec=${enableval}], [enable_ipsec="no"])
128 if (test "${enable_ipsec}" != "no"); then
129         PKG_CHECK_MODULES(GIO, gio-2.0 >= 2.28, dummy=yes,
130                                         AC_MSG_ERROR(GIO >= 2.28 is required))
131         AC_SUBST(GIO_CFLAGS)
132         AC_SUBST(GIO_LIBS)
133         if (test -z "${path_ipsec}"); then
134                 AC_PATH_PROG(IPSEC, [charon], [/usr/bin/charon], $PATH:/usr/bin)
135                 if (test -z "${IPSEC}"); then
136                         AC_MSG_ERROR(ipsec binary not found)
137                 fi
138         else
139                 IPSEC="${path_ipsec}"
140                 AC_SUBST(IPSEC)
141         fi
142 fi
143 AM_CONDITIONAL(IPSEC, test "${enable_ipsec}" != "no")
144 AM_CONDITIONAL(IPSEC_BUILTIN, test "${enable_ipsec}" = "builtin")
145
146 AC_ARG_WITH(vpnc, AC_HELP_STRING([--with-vpnc=PROGRAM],
147         [specify location of vpnc binary]), [path_vpnc=${withval}])
148
149 AC_ARG_ENABLE(vpnc,
150         AC_HELP_STRING([--enable-vpnc], [enable vpnc support]),
151                 [enable_vpnc=${enableval}], [enable_vpnc="no"])
152 if (test "${enable_vpnc}" != "no"); then
153         if (test -z "${path_vpnc}"); then
154                 AC_PATH_PROG(VPNC, [vpnc], [], $PATH:/bin:/usr/bin)
155                 if (test -z "${VPNC}"); then
156                         AC_MSG_ERROR(vpnc binary not found)
157                 fi
158         else
159                 VPNC="${path_vpnc}"
160                 AC_SUBST(VPNC)
161         fi
162 fi
163 AM_CONDITIONAL(VPNC, test "${enable_vpnc}" != "no")
164 AM_CONDITIONAL(VPNC_BUILTIN, test "${enable_vpnc}" = "builtin")
165
166 AC_ARG_WITH(l2tp, AC_HELP_STRING([--with-l2tp=PROGRAM],
167         [specify location of l2tp binary]), [path_l2tp=${withval}])
168
169 AC_ARG_ENABLE(l2tp,
170         AC_HELP_STRING([--enable-l2tp], [enable l2tp support]),
171                         [enable_l2tp=${enableval}], [enable_l2tp="no"])
172 if (test "${enable_l2tp}" != "no"); then
173         if (test -z "${path_pppd}"); then
174                 AC_PATH_PROG(PPPD, [pppd], [/usr/bin/pppd], $PATH:/bin:/usr/bin)
175         else
176                 PPPD="${path_pppd}"
177                 AC_SUBST(PPPD)
178         fi
179         AC_CHECK_HEADERS(pppd/pppd.h, dummy=yes,
180                         AC_MSG_ERROR(ppp header files are required))
181         if (test -z "${path_l2tp}"); then
182                 AC_PATH_PROG(L2TP, [xl2tpd], [/usr/bin/xl2tpd], $PATH:/bin:/usr/bin)
183         else
184                 L2TP="${path_l2tp}"
185                 AC_SUBST(L2TP)
186         fi
187 fi
188 AM_CONDITIONAL(L2TP, test "${enable_l2tp}" != "no")
189 AM_CONDITIONAL(L2TP_BUILTIN, test "${enable_l2tp}" = "builtin")
190
191 AC_ARG_WITH(pptp, AC_HELP_STRING([--with-pptp=PROGRAM],
192         [specify location of pptp binary]), [path_pptp=${withval}])
193
194 AC_ARG_ENABLE(pptp,
195         AC_HELP_STRING([--enable-pptp], [enable pptp support]),
196                         [enable_pptp=${enableval}], [enable_pptp="no"])
197 if (test "${enable_pptp}" != "no"); then
198         if (test -z "${path_pppd}"); then
199                 AC_PATH_PROG(PPPD, [pppd], [/usr/bin/pppd], $PATH:/bin:/usr/bin)
200         else
201                 PPPD="${path_pppd}"
202                 AC_SUBST(PPPD)
203         fi
204         AC_CHECK_HEADERS(pppd/pppd.h, dummy=yes,
205                         AC_MSG_ERROR(ppp header files are required))
206         if (test -z "${path_pptp}"); then
207                 AC_PATH_PROG(PPTP, [pptp], [/usr/bin/pptp], $PATH:/bin:/usr/bin)
208         else
209                 PPTP="${path_pptp}"
210                 AC_SUBST(PPTP)
211         fi
212 fi
213 AM_CONDITIONAL(PPTP, test "${enable_pptp}" != "no")
214 AM_CONDITIONAL(PPTP_BUILTIN, test "${enable_pptp}" = "builtin")
215
216 AC_CHECK_HEADERS(resolv.h, dummy=yes,
217         AC_MSG_ERROR(resolver header files are required))
218 AC_CHECK_LIB(resolv, ns_initparse, dummy=yes, [
219         AC_CHECK_LIB(resolv, __ns_initparse, dummy=yes,
220                 AC_MSG_ERROR(resolver library support is required))
221 ])
222
223 AC_CHECK_FUNC(signalfd, dummy=yes,
224                         AC_MSG_ERROR(signalfd support is required))
225
226 AC_CHECK_LIB(dl, dlopen, dummy=yes,
227                         AC_MSG_ERROR(dynamic linking loader is required))
228
229 AC_ARG_ENABLE(iospm, AC_HELP_STRING([--enable-iospm],
230                 [enable Intel OSPM support]), [enable_iospm=${enableval}])
231 AM_CONDITIONAL(IOSPM, test "${enable_iospm}" = "yes")
232
233 AC_ARG_ENABLE(tist,
234         AC_HELP_STRING([--enable-tist], [enable TI Shared Transport support]),
235                         [enable_tist=${enableval}], [enable_tist="no"])
236 AM_CONDITIONAL(TIST, test "${enable_tist}" != "no")
237 AM_CONDITIONAL(TIST_BUILTIN, test "${enable_tist}" = "builtin")
238
239 AC_ARG_ENABLE(session-policy-local,
240         AC_HELP_STRING([--enable-session-policy-local], [enable local file Session policy configuration support]),
241                         [enable_session_policy_local=${enableval}], [enable_session_policy_local="no"])
242 AM_CONDITIONAL(SESSION_POLICY_LOCAL, test "${enable_session_policy_local}" != "no")
243 AM_CONDITIONAL(SESSION_POLICY_LOCAL_BUILTIN, test "${enable_session_policy_local}" = "builtin")
244
245 AC_ARG_WITH(stats-max-file-size, AC_HELP_STRING([--with-stats-max-file-size=SIZE],
246                         [Maximal size of a statistics round robin file]),
247                         [stats_max_file_size=${withval}])
248
249 if (test -z "${stats_max_file_size}"); then
250    # default size is 16 kByte
251    stats_max_file_size="16 * 8 * 128"
252 fi
253
254 AC_DEFINE_UNQUOTED([STATS_MAX_FILE_SIZE], (${stats_max_file_size}), [Maximal size of a statistics round robin file])
255
256 PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.28, dummy=yes,
257                                 AC_MSG_ERROR(GLib >= 2.28 is required))
258 AC_SUBST(GLIB_CFLAGS)
259 AC_SUBST(GLIB_LIBS)
260
261 PKG_CHECK_MODULES(LIBSYSTEMD, libsystemd-daemon, dummy=yes,
262                                 AC_MSG_ERROR(libsystemd-daemon library is required))
263 AC_SUBST(LIBSYSTEMD_CFLAGS)
264 AC_SUBST(LIBSYSTEMD_LIBS)
265
266 PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.4, dummy=yes,
267                                 AC_MSG_ERROR(D-Bus >= 1.4 is required))
268 AC_SUBST(DBUS_CFLAGS)
269 AC_SUBST(DBUS_LIBS)
270
271 AC_ARG_WITH(dbusconfdir, AC_HELP_STRING([--with-dbusconfdir=PATH],
272         [path to D-Bus config directory]), [path_dbusconf=${withval}],
273                 [path_dbusconf="`$PKG_CONFIG --variable=sysconfdir dbus-1`"])
274 if (test -z "${path_dbusconf}"); then
275         DBUS_CONFDIR="${sysconfdir}/dbus-1/system.d"
276 else
277         DBUS_CONFDIR="${path_dbusconf}/dbus-1/system.d"
278 fi
279 AC_SUBST(DBUS_CONFDIR)
280
281 AC_ARG_WITH(dbusdatadir, AC_HELP_STRING([--with-dbusdatadir=PATH],
282         [path to D-Bus data directory]), [path_dbusdata=${withval}],
283                 [path_dbusdata="`$PKG_CONFIG --variable=datadir dbus-1`"])
284 if (test -z "${path_dbusdata}"); then
285         DBUS_DATADIR="${datadir}/dbus-1/system-services"
286 else
287         DBUS_DATADIR="${path_dbusdata}/dbus-1/system-services"
288 fi
289 AC_SUBST(DBUS_DATADIR)
290
291 AC_ARG_WITH([systemdunitdir], AC_HELP_STRING([--with-systemdunitdir=DIR],
292         [path to systemd service directory]), [path_systemdunit=${withval}],
293                 [path_systemdunit="`$PKG_CONFIG --variable=systemdsystemunitdir systemd`"])
294 if (test -n "${path_systemdunit}"); then
295         SYSTEMD_UNITDIR="${path_systemdunit}"
296         AC_SUBST(SYSTEMD_UNITDIR)
297 fi
298 AM_CONDITIONAL(SYSTEMD, test -n "${path_systemdunit}")
299
300 AC_ARG_WITH(firewall, AC_HELP_STRING([--with-firewall=TYPE],
301                         [specify which firewall type is used iptables or nftables [default=iptables]]),
302                 [firewall_type=${withval}],
303                 [firewall_type="iptables"])
304
305 if (test "${firewall_type}" != "iptables" -a \
306                 "${firewall_type}" != "nftables"); then
307         AC_MSG_ERROR(neither nftables nor iptables support enabled)
308 fi
309
310 found_iptables="no"
311 if (test "${firewall_type}" = "iptables"); then
312         PKG_CHECK_MODULES(XTABLES, xtables >= 1.4.11, [found_iptables="yes"],
313                         AC_MSG_ERROR(Xtables library is required))
314         AC_SUBST(XTABLES_CFLAGS)
315         AC_SUBST(XTABLES_LIBS)
316 fi
317 AM_CONDITIONAL(XTABLES, test "${found_iptables}" != "no")
318
319 found_nftables="no"
320 if (test "${firewall_type}" = "nftables"); then
321         PKG_CHECK_MODULES(NFTABLES, [libnftnl >= 1.0.4 libmnl >= 1.0.0], [found_nftables="yes"],
322                 AC_MSG_ERROR([libnftnl >= 1.0.4 or libmnl >= 1.0.0 not found]))
323         AC_SUBST(NFTABLES_CFLAGS)
324         AC_SUBST(NFTABLES_LIBS)
325 fi
326 AM_CONDITIONAL(NFTABLES, test "${found_nftables}" != "no")
327
328 AC_ARG_ENABLE(test, AC_HELP_STRING([--enable-test],
329                 [enable test/example scripts]), [enable_test=${enableval}])
330 AM_CONDITIONAL(TEST, test "${enable_test}" = "yes")
331
332 AC_ARG_ENABLE(nmcompat, AC_HELP_STRING([--enable-nmcompat],
333                                 [enable Network Manager support]),
334                         [enable_nmcompat=${enableval}], [enable_nmcompat="no"])
335 AM_CONDITIONAL(NMCOMPAT, test "${enable_nmcompat}" != "no")
336
337 AC_ARG_ENABLE(polkit, AC_HELP_STRING([--enable-polkit],
338                                 [enable PolicyKit support]),
339                         [enable_polkit=${enableval}], [enable_polkit="no"])
340 if (test "${enable_polkit}" != "no"); then
341         POLKIT_DATADIR="`$PKG_CONFIG --variable=actiondir polkit`"
342         POLKIT_DATADIR=""
343         if (test -z "${POLKIT_DATADIR}"); then
344                 POLKIT_DATADIR="${datadir}/polkit-1/actions"
345         fi
346         AC_SUBST(POLKIT_DATADIR)
347 fi
348 AM_CONDITIONAL(POLKIT, test "${enable_polkit}" != "no")
349
350 AC_ARG_ENABLE(selinux, AC_HELP_STRING([--enable-selinux],
351                                 [enable selinux support]),
352                         [enable_selinux=${enableval}], [enable_selinux="no"])
353 AM_CONDITIONAL(SELINUX, test "${enable_selinux}" != "no")
354
355 AC_ARG_ENABLE(loopback, AC_HELP_STRING([--disable-loopback],
356                                 [disable loopback support]),
357                                         [enable_loopback=${enableval}])
358 AM_CONDITIONAL(LOOPBACK, test "${enable_loopback}" != "no")
359
360 AC_ARG_ENABLE(ethernet, AC_HELP_STRING([--disable-ethernet],
361                                 [disable Ethernet support]),
362                                         [enable_ethernet=${enableval}])
363 AM_CONDITIONAL(ETHERNET, test "${enable_ethernet}" != "no")
364
365 AC_ARG_ENABLE(gadget, AC_HELP_STRING([--disable-gadget],
366                                 [disable USB Gadget support]),
367                                         [enable_gadget=${enableval}])
368 AM_CONDITIONAL(GADGET, test "${enable_gadget}" != "no")
369
370 AC_ARG_ENABLE(wifi, AC_HELP_STRING([--disable-wifi],
371                                 [disable WiFi support]),
372                                         [enable_wifi=${enableval}])
373 AM_CONDITIONAL(WIFI, test "${enable_wifi}" != "no")
374
375 AC_ARG_ENABLE(iwd, AC_HELP_STRING([--enable-iwd],
376                                 [enable iwd support]),
377                                         [enable_iwd=${enableval}])
378 AM_CONDITIONAL(IWD, test "${enable_iwd}" = "yes")
379
380 AC_ARG_ENABLE(bluetooth, AC_HELP_STRING([--disable-bluetooth],
381                                 [disable Bluetooth support]),
382                                         [enable_bluetooth=${enableval}])
383 AM_CONDITIONAL(BLUETOOTH, test "${enable_bluetooth}" != "no")
384
385 AC_ARG_ENABLE(ofono, AC_HELP_STRING([--disable-ofono],
386                                 [disable oFono support]),
387                                         [enable_ofono=${enableval}])
388 AM_CONDITIONAL(OFONO, test "${enable_ofono}" != "no")
389
390 AC_ARG_ENABLE(dundee, AC_HELP_STRING([--disable-dundee],
391                                 [disable dundee support (Bluetooth DUN)]),
392                                         [enable_dundee=${enableval}])
393 AM_CONDITIONAL(DUNDEE, test "${enable_dundee}" != "no")
394
395 AC_ARG_ENABLE(pacrunner, AC_HELP_STRING([--disable-pacrunner],
396                                 [disable PACrunner support]),
397                                         [enable_pacrunner=${enableval}])
398 AM_CONDITIONAL(PACRUNNER, test "${enable_pacrunner}" != "no")
399
400 AC_ARG_ENABLE(neard, AC_HELP_STRING([--disable-neard],
401                                 [disable Neard support]),
402                                         [enable_neard=${enableval}])
403 AM_CONDITIONAL(NEARD, test "${enable_neard}" != "no")
404
405 AC_ARG_ENABLE(wispr, AC_HELP_STRING([--disable-wispr],
406                                 [disable WISPr support]),
407                                         [enable_wispr=${enableval}])
408 AM_CONDITIONAL(WISPR, test "${enable_wispr}" != "no")
409
410 AC_ARG_ENABLE(tools, AC_HELP_STRING([--disable-tools],
411                                 [disable testing tools]),
412                                         [enable_tools=${enableval}])
413 AM_CONDITIONAL(TOOLS, test "${enable_tools}" != "no")
414
415 if (test "${enable_tools}" != "no"); then
416         AC_PATH_PROGS(IPTABLES_SAVE, [iptables-save], [],
417                                                 $PATH:/bin:/usr/bin)
418         IPTABLES_SAVE=$ac_cv_path_IPTABLES_SAVE
419 else
420         IPTABLES_SAVE=""
421 fi
422 AC_SUBST(IPTABLES_SAVE)
423
424 AC_ARG_ENABLE(client, AC_HELP_STRING([--disable-client],
425                                 [disable command line client]),
426                                         [enable_client=${enableval}])
427 AM_CONDITIONAL(CLIENT, test "${enable_client}" != "no")
428
429 if (test "${enable_wispr}" != "no"); then
430         PKG_CHECK_MODULES(GNUTLS, gnutls, dummy=yes,
431                                 AC_MSG_ERROR(GnuTLS library is required))
432 else
433         GNUTLS_CFLAGS=""
434         GNUTLS_LIBS=""
435 fi
436 AC_SUBST(GNUTLS_CFLAGS)
437 AC_SUBST(GNUTLS_LIBS)
438
439 if (test "${enable_loopback}" != "no"); then
440         AC_CHECK_HEADERS(sys/inotify.h, dummy=yes,
441                         AC_MSG_ERROR(inotify header files are required))
442
443         AC_CHECK_LIB(c, inotify_init, dummy=yes,
444                         AC_MSG_ERROR(inotify library support is required))
445 fi
446
447 if (test "${enable_wifi}" != "no"); then
448         AC_PATH_PROG(WPASUPPLICANT, [wpa_supplicant], [],
449                                                 $PATH:/bin:/usr/bin)
450 fi
451
452 AC_ARG_ENABLE(datafiles, AC_HELP_STRING([--disable-datafiles],
453                         [don't install configuration and data files]),
454                                         [enable_datafiles=${enableval}])
455 AM_CONDITIONAL(DATAFILES, test "${enable_datafiles}" != "no")
456
457 if (test "${enable_client}" != "no"); then
458         AC_CHECK_HEADERS(readline/readline.h, dummy=yes,
459                 AC_MSG_ERROR(readline header files are required))
460 fi
461
462 AM_CONDITIONAL(VPN, test "${enable_openconnect}" != "no" -o \
463                         "${enable_openvpn}" != "no" -o \
464                         "${enable_ipsec}" != "no" -o \
465                         "${enable_vpnc}" != "no" -o \
466                         "${enable_l2tp}" != "no" -o \
467                         "${enable_pptp}" != "no")
468
469 AC_OUTPUT(Makefile include/version.h connman.pc src/connman.service src/connman_tv.service vpn/connman-vpn.service)