Disable IPSP feature
[platform/upstream/bluez.git] / configure.ac
1 AC_PREREQ(2.60)
2 AC_INIT(bluez, 5.28)
3
4 AM_INIT_AUTOMAKE([foreign subdir-objects color-tests silent-rules
5                                         tar-pax no-dist-gzip dist-xz])
6 AC_CONFIG_HEADERS(config.h)
7 AC_USE_SYSTEM_EXTENSIONS
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_LANG_C
20
21 AC_C_RESTRICT
22
23 AC_PROG_CC
24 AM_PROG_CC_C_O
25 AC_PROG_CC_PIE
26 AC_PROG_INSTALL
27 AC_PROG_MKDIR_P
28
29 m4_define([_LT_AC_TAGCONFIG], [])
30 m4_ifdef([AC_LIBTOOL_TAGS], [AC_LIBTOOL_TAGS([])])
31
32 AC_DISABLE_STATIC
33 AC_PROG_LIBTOOL
34
35 if (test "$USE_MAINTAINER_MODE" = "yes"); then
36         AC_CHECK_PROG(enable_coverage, [lcov], [yes], [no])
37 fi
38 AM_CONDITIONAL(COVERAGE, test "${enable_coverage}" = "yes")
39
40 MISC_FLAGS
41
42 AC_ARG_ENABLE(threads, AC_HELP_STRING([--enable-threads],
43                 [enable threading support]), [enable_threads=${enableval}])
44
45 AC_CHECK_FUNC(signalfd, dummy=yes,
46                         AC_MSG_ERROR(signalfd support is required))
47
48 AC_CHECK_LIB(rt, clock_gettime, dummy=yes,
49                         AC_MSG_ERROR(realtime clock support is required))
50
51 AC_CHECK_LIB(pthread, pthread_create, dummy=yes,
52                         AC_MSG_ERROR(posix thread support is required))
53
54 AC_CHECK_LIB(dl, dlopen, dummy=yes,
55                         AC_MSG_ERROR(dynamic linking loader is required))
56
57 AC_CHECK_HEADERS(linux/types.h linux/if_alg.h)
58
59 PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.28, dummy=yes,
60                                 AC_MSG_ERROR(GLib >= 2.28 is required))
61 AC_SUBST(GLIB_CFLAGS)
62 AC_SUBST(GLIB_LIBS)
63
64 if (test "${enable_threads}" = "yes"); then
65         AC_DEFINE(NEED_THREADS, 1, [Define if threading support is required])
66         PKG_CHECK_MODULES(GTHREAD, gthread-2.0 >= 2.16, dummy=yes,
67                                 AC_MSG_ERROR(GThread >= 2.16 is required))
68         GLIB_CFLAGS="$GLIB_CFLAGS $GTHREAD_CFLAGS"
69         GLIB_LIBS="$GLIB_LIBS $GTHREAD_LIBS"
70 fi
71
72 PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.6, dummy=yes,
73                                 AC_MSG_ERROR(D-Bus >= 1.6 is required))
74 AC_SUBST(DBUS_CFLAGS)
75 AC_SUBST(DBUS_LIBS)
76
77 AC_ARG_WITH([dbusconfdir], AC_HELP_STRING([--with-dbusconfdir=DIR],
78                                 [path to D-Bus configuration directory]),
79                                         [path_dbusconfdir=${withval}])
80 if (test -z "${path_dbusconfdir}"); then
81         AC_MSG_CHECKING([D-Bus configuration directory])
82         path_dbusconfdir="`$PKG_CONFIG --variable=sysconfdir dbus-1`"
83         if (test -z "${path_dbusconfdir}"); then
84                 AC_MSG_ERROR([D-Bus configuration directory is required])
85         fi
86         AC_MSG_RESULT([${path_dbusconfdir}])
87 fi
88 AC_SUBST(DBUS_CONFDIR, [${path_dbusconfdir}])
89
90 AC_ARG_WITH([dbussystembusdir], AC_HELP_STRING([--with-dbussystembusdir=DIR],
91                                 [path to D-Bus system bus services directory]),
92                                         [path_dbussystembusdir=${withval}])
93 if (test -z "${path_dbussystembusdir}"); then
94         AC_MSG_CHECKING([D-Bus system bus services dir])
95         path_dbussystembusdir="`$PKG_CONFIG --variable=system_bus_services_dir dbus-1`"
96         if (test -z "${path_dbussystembusdir}"); then
97                 AC_MSG_ERROR([D-Bus system bus services directory is required])
98         fi
99         AC_MSG_RESULT([${path_dbussystembusdir}])
100 fi
101 AC_SUBST(DBUS_SYSTEMBUSDIR, [${path_dbussystembusdir}])
102
103 AC_ARG_WITH([dbussessionbusdir], AC_HELP_STRING([--with-dbussessionbusdir=DIR],
104                                 [path to D-Bus session bus services directory]),
105                                         [path_dbussessionbusdir=${withval}])
106 if (test -z "${path_dbussessionbusdir}"); then
107         AC_MSG_CHECKING([D-Bus session bus services dir])
108         path_dbussessionbusdir="`$PKG_CONFIG --variable=session_bus_services_dir dbus-1`"
109         if (test -z "${path_dbussessionbusdir}"); then
110                 AC_MSG_ERROR([D-Bus session bus services directory is required])
111         fi
112         AC_MSG_RESULT([${path_dbussessionbusdir}])
113 fi
114 AC_SUBST(DBUS_SESSIONBUSDIR, [${path_dbussessionbusdir}])
115
116 AC_ARG_ENABLE(library, AC_HELP_STRING([--enable-library],
117                 [install Bluetooth library]), [enable_library=${enableval}])
118 AM_CONDITIONAL(LIBRARY, test "${enable_library}" = "yes")
119
120 AC_ARG_ENABLE(test, AC_HELP_STRING([--enable-test],
121                 [enable test/example scripts]), [enable_test=${enableval}])
122 AM_CONDITIONAL(TEST, test "${enable_test}" = "yes")
123
124 AC_ARG_ENABLE(tools, AC_HELP_STRING([--disable-tools],
125                 [disable Bluetooth tools]), [enable_tools=${enableval}])
126 AM_CONDITIONAL(TOOLS, test "${enable_tools}" != "no")
127
128 AC_ARG_ENABLE(monitor, AC_HELP_STRING([--disable-monitor],
129                 [disable Bluetooth monitor]), [enable_monitor=${enableval}])
130 AM_CONDITIONAL(MONITOR, test "${enable_monitor}" != "no")
131
132 AC_ARG_ENABLE(udev, AC_HELP_STRING([--disable-udev],
133                 [disable udev device support]), [enable_udev=${enableval}])
134 if (test "${enable_tools}" != "no" && test "${enable_udev}" != "no"); then
135         PKG_CHECK_MODULES(UDEV, libudev >= 172, dummy=yes,
136                                 AC_MSG_ERROR(libudev >= 172 is required))
137         AC_SUBST(UDEV_CFLAGS)
138         AC_SUBST(UDEV_LIBS)
139         AC_CHECK_LIB(udev, udev_hwdb_new,
140                 AC_DEFINE(HAVE_UDEV_HWDB_NEW, 1,
141                         [Define to 1 if you have the udev_hwdb_new() function.]))
142 fi
143 AM_CONDITIONAL(UDEV, test "${enable_udev}" != "no")
144
145 AC_ARG_WITH([udevdir], AC_HELP_STRING([--with-udevdir=DIR],
146                         [path to udev directory]), [path_udevdir=${withval}])
147 if (test "${enable_udev}" != "no" && test -z "${path_udevdir}"); then
148         AC_MSG_CHECKING([udev directory])
149         path_udevdir="`$PKG_CONFIG --variable=udevdir udev`"
150         if (test -z "${path_udevdir}"); then
151                 AC_MSG_ERROR([udev directory is required])
152         fi
153         AC_MSG_RESULT([${path_udevdir}])
154 fi
155 AC_SUBST(UDEV_DIR, [${path_udevdir}])
156
157 AM_CONDITIONAL(HID2HCI, test "${enable_tools}" != "no" &&
158                                                 test "${enable_udev}" != "no")
159
160 AC_ARG_ENABLE(cups, AC_HELP_STRING([--disable-cups],
161                 [disable CUPS printer support]), [enable_cups=${enableval}])
162 AM_CONDITIONAL(CUPS, test "${enable_cups}" != "no")
163
164 AC_ARG_ENABLE(obex, AC_HELP_STRING([--disable-obex],
165                 [disable OBEX profile support]), [enable_obex=${enableval}])
166 AC_SUBST(ICAL_CFLAGS)
167 AC_SUBST(ICAL_LIBS)
168 AM_CONDITIONAL(OBEX, test "${enable_obex}" != "no")
169
170 AC_ARG_ENABLE(client, AC_HELP_STRING([--disable-client],
171                 [disable command line client]), [enable_client=${enableval}])
172 AM_CONDITIONAL(CLIENT, test "${enable_client}" != "no")
173
174 if (test "${enable_client}" != "no"); then
175         AC_CHECK_HEADERS(readline/readline.h, enable_readline=yes,
176                 AC_MSG_ERROR(readline header files are required))
177 fi
178 AM_CONDITIONAL(READLINE, test "${enable_readline}" = "yes")
179
180 AC_ARG_ENABLE(systemd, AC_HELP_STRING([--disable-systemd],
181                 [disable systemd integration]), [enable_systemd=${enableval}])
182 AM_CONDITIONAL(SYSTEMD, test "${enable_systemd}" != "no")
183
184 AC_ARG_WITH([systemdsystemunitdir],
185                         AC_HELP_STRING([--with-systemdsystemunitdir=DIR],
186                         [path to systemd system unit directory]),
187                                         [path_systemunitdir=${withval}])
188 if (test "${enable_systemd}" != "no" && test -z "${path_systemunitdir}"); then
189         AC_MSG_CHECKING([systemd system unit dir])
190         path_systemunitdir="`$PKG_CONFIG --variable=systemdsystemunitdir systemd`"
191         if (test -z "${path_systemunitdir}"); then
192                 AC_MSG_ERROR([systemd system unit directory is required])
193         fi
194         AC_MSG_RESULT([${path_systemunitdir}])
195 fi
196 AC_SUBST(SYSTEMD_SYSTEMUNITDIR, [${path_systemunitdir}])
197
198 AC_ARG_WITH([systemduserunitdir],
199                         AC_HELP_STRING([--with-systemduserunitdir=DIR],
200                         [path to systemd user unit directory]),
201                                         [path_userunitdir=${withval}])
202 if (test "${enable_systemd}" != "no" && test -z "${path_userunitdir}"); then
203         AC_MSG_CHECKING([systemd user unit dir])
204         path_userunitdir="`$PKG_CONFIG --variable=systemduserunitdir systemd`"
205         if (test -z "${path_userunitdir}"); then
206                 AC_MSG_ERROR([systemd user unit directory is required])
207         fi
208         AC_MSG_RESULT([${path_userunitdir}])
209 fi
210 AC_SUBST(SYSTEMD_USERUNITDIR, [${path_userunitdir}])
211
212 AC_ARG_ENABLE(datafiles, AC_HELP_STRING([--disable-datafiles],
213                         [do not install configuration and data files]),
214                                         [enable_datafiles=${enableval}])
215 AM_CONDITIONAL(DATAFILES, test "${enable_datafiles}" != "no")
216
217 AC_ARG_ENABLE(manpages, AC_HELP_STRING([--enable-manpages],
218                         [enable building of manual pages]),
219                                         [enable_manpages=${enableval}])
220 AM_CONDITIONAL(MANPAGES, test "${enable_manpages}" = "yes")
221
222 AC_ARG_ENABLE(experimental, AC_HELP_STRING([--enable-experimental],
223                         [enable experimental plugins (NFC, ...)]),
224                                         [enable_experimental=${enableval}])
225 AM_CONDITIONAL(EXPERIMENTAL, test "${enable_experimental}" = "yes")
226
227 # Start of __TIZEN_PATCH__
228 AC_ARG_ENABLE(wearable, AC_HELP_STRING([--enable-wearable],
229                         [enable wearable profile]), [enable_wearable=${enableval}])
230 AM_CONDITIONAL(WEARABLE, test "${enable_wearable}" = "yes")
231
232 AC_ARG_ENABLE(autopair, AC_HELP_STRING([--enable-autopair],
233                         [Enable Autopair Plugin]), [enable_autopair=${enableval}])
234 AM_CONDITIONAL(AUTOPAIR, test "${enable_autopair}" = "yes")
235
236 AC_ARG_ENABLE(hid, AC_HELP_STRING([--enable-hid],
237                         [Enable HID Plugin]), [enable_hid=${enableval}])
238 AM_CONDITIONAL(TIZEN_HID_PLUGIN, test "${enable_hid}" = "yes")
239
240 AM_CONDITIONAL(TIZEN_HEALTH_PLUGIN, test "${enable_health}" = "yes")
241
242 AC_ARG_ENABLE(tizenunusedplugin, AC_HELP_STRING([--enable-tizenunusedplugin],
243                 [Enable Unused Plugin]), [enable_tizenunusedplugin=${enableval}])
244 AM_CONDITIONAL(TIZEN_UNUSED_PLUGIN, test "${enable_tizenunusedplugin}" = "yes")
245
246 AC_ARG_ENABLE(sap, AC_HELP_STRING([--enable-sap],
247                         [Enable SAP Plugin]), [enable_sap=${enableval}])
248 AM_CONDITIONAL(TIZEN_SAP_PLUGIN, test "${enable_sap}" = "yes")
249
250 # End of __TIZEN_PATCH__
251
252 AC_ARG_ENABLE(sixaxis, AC_HELP_STRING([--enable-sixaxis],
253                 [enable sixaxis plugin]), [enable_sixaxis=${enableval}])
254 AM_CONDITIONAL(SIXAXIS, test "${enable_sixaxis}" = "yes" &&
255                                          test "${enable_udev}" != "no")
256
257 if (test "${prefix}" = "NONE"); then
258         dnl no prefix and no localstatedir, so default to /var
259         if (test "$localstatedir" = '${prefix}/var'); then
260                 AC_SUBST([localstatedir], ['/var'])
261         fi
262
263         prefix="${ac_default_prefix}"
264 fi
265
266 if (test "$localstatedir" = '${prefix}/var'); then
267         storagedir="${prefix}/var/lib/bluetooth"
268 else
269         storagedir="${localstatedir}/lib/bluetooth"
270 fi
271 AC_DEFINE_UNQUOTED(STORAGEDIR, "${storagedir}",
272                         [Directory for the storage files])
273
274 if (test "$sysconfdir" = '${prefix}/etc'); then
275         configdir="${prefix}/etc/bluetooth"
276 else
277         configdir="${sysconfdir}/bluetooth"
278 fi
279 AC_DEFINE_UNQUOTED(CONFIGDIR, "${configdir}",
280                         [Directory for the configuration files])
281 AC_SUBST(CONFIGDIR, "${configdir}")
282
283 AC_ARG_ENABLE(android, AC_HELP_STRING([--enable-android],
284                         [enable BlueZ for Android]),
285                                         [enable_android=${enableval}])
286 AM_CONDITIONAL(ANDROID, test "${enable_android}" = "yes")
287
288 if (test "${enable_android}" = "yes"); then
289         PKG_CHECK_MODULES(SBC, sbc >= 1.2, dummy=yes,
290                                         AC_MSG_ERROR(SBC library >= 1.2 is required))
291         AC_SUBST(SBC_CFLAGS)
292         AC_SUBST(SBC_LIBS)
293 fi
294
295 if (test "${enable_android}" = "yes"); then
296         PKG_CHECK_MODULES(SPEEXDSP, speexdsp >= 1.2, dummy=yes,
297                                         AC_MSG_ERROR(SPEEXDSP library >= 1.2 is required))
298         AC_SUBST(SPEEXDSP_CFLAGS)
299         AC_SUBST(SPEEXDSP_LIBS)
300 fi
301
302 AC_DEFINE_UNQUOTED(ANDROID_STORAGEDIR, "${storagedir}/android",
303                         [Directory for the Android daemon storage files])
304
305 AC_OUTPUT(Makefile src/bluetoothd.8 lib/bluez.pc)