aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSyam Sidhardhan <s.syam@samsung.com>2012-08-22 22:05:51 +0530
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2012-08-23 17:00:12 +0300
commitb970f6773bc6bdfa2545c7288fe5c22f29ae3f24 (patch)
treee0ac885418d142accbb22de44099b33ec71e39aa
parent24b6a4a77758aedbd24f5bb12f5be8256c4f11da (diff)
downloadobexd-b970f6773bc6bdfa2545c7288fe5c22f29ae3f24.tar.gz
build: BlueZ version 4.100 or later is required
If we use the BlueZ version less than 4.100, then the following compilation error happens. Error: ====== btio/btio.c: In function ‘l2cap_connect’: btio/btio.c:301:6: error: ‘struct sockaddr_l2’ has no member named ‘l2_bdaddr_type’ btio/btio.c: In function ‘parse_set_opts’: btio/btio.c:707:19: error: ‘BDADDR_BREDR’ undeclared (first use in this function) btio/btio.c:707:19: note: each undeclared identifier is reported only once for each function it appears in make[1]: *** [btio/btio.o] Error 1 make: *** [all] Error 2
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 69d71b2..c8e61ac 100644
--- a/configure.ac
+++ b/configure.ac
@@ -79,8 +79,8 @@ PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.4, dummy=yes,
AC_SUBST(DBUS_CFLAGS)
AC_SUBST(DBUS_LIBS)
-PKG_CHECK_MODULES(BLUEZ, bluez >= 4.99, dummy=yes,
- AC_MSG_ERROR(BlueZ >= 4.99 is required))
+PKG_CHECK_MODULES(BLUEZ, bluez >= 4.100, dummy=yes,
+ AC_MSG_ERROR(BlueZ >= 4.100 is required))
AC_SUBST(BLUEZ_CFLAGS)
AC_SUBST(BLUEZ_LIBS)