From b057f428da7c958ec1768e322642ffb9ccbcbcdd Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Mon, 30 Dec 2013 23:43:41 +0100 Subject: [PATCH] android/build: Fix building HAL library on Linux PLATFORM_SDK_VERSION was not passed while building HAL library on Linux host resulting in 4.3+ features not being build. --- android/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/android/Makefile.am b/android/Makefile.am index 36210b9ca..7d9b58083 100644 --- a/android/Makefile.am +++ b/android/Makefile.am @@ -59,7 +59,8 @@ android_libhal_internal_la_SOURCES = android/hal.h android/hal-bluetooth.c \ android/hal-log.h \ android/hal-ipc.h android/hal-ipc.c -android_libhal_internal_la_CPPFLAGS = -I$(srcdir)/android +android_libhal_internal_la_CPPFLAGS = -I$(srcdir)/android \ + -DPLATFORM_SDK_VERSION=19 noinst_PROGRAMS += android/haltest -- 2.47.3