From 3b192bed645fdea0f6338333d2b67c30f96aac37 Mon Sep 17 00:00:00 2001 From: Jakub Tyszkowski Date: Thu, 13 Nov 2014 12:11:14 +0100 Subject: [PATCH] android/build: Fix bluetoothd build This fixes the following error: external/bluetooth/bluez/src/shared/gatt-db.c:787: error: undefined reference to 'timeout_remove' external/bluetooth/bluez/src/shared/gatt-db.c:879: error: undefined reference to 'timeout_remove' external/bluetooth/bluez/src/shared/gatt-db.c:825: error: undefined reference to 'timeout_add' external/bluetooth/bluez/src/shared/gatt-db.c:917: error: undefined reference to 'timeout_add' collect2: error: ld returned 1 exit status --- android/Android.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/android/Android.mk b/android/Android.mk index 973597649..554e8fa8d 100644 --- a/android/Android.mk +++ b/android/Android.mk @@ -64,6 +64,7 @@ LOCAL_SRC_FILES := \ bluez/src/shared/hfp.c \ bluez/src/shared/gatt-db.c \ bluez/src/shared/io-glib.c \ + bluez/src/shared/timeout-glib.c \ bluez/src/shared/crypto.c \ bluez/src/shared/uhid.c \ bluez/src/sdpd-database.c \ -- 2.47.3