From 4e7e340b159adb85dbec42c54719a6d3cbc2c40f Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Tue, 29 Oct 2013 14:48:41 +0200 Subject: [PATCH] android: Fix build errors The patch fixes following issues when building: Make links to sco.h and rfcomm.h needed for Android sockets. ... btio.c:39:30: fatal error: bluetooth/rfcomm.h: No such file or directory compilation terminated. ... btio.c:40:27: fatal error: bluetooth/sco.h: No such file or directory compilation terminated. ... --- android/Android.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/android/Android.mk b/android/Android.mk index 28ec4655d..d8f9d0d05 100644 --- a/android/Android.mk +++ b/android/Android.mk @@ -52,6 +52,8 @@ lib_headers := \ l2cap.h \ sdp_lib.h \ sdp.h \ + rfcomm.h \ + sco.h \ $(shell mkdir -p $(LOCAL_PATH)/../lib/bluetooth) -- 2.47.3