OSDN Git Service

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