2013-10-30 14:22:38

by Jerzy Kasenberg

[permalink] [raw]
Subject: [PATCH] android: Fix compiler flags with Android version

This fixes commit that removed PLATFORM_SDK_VERSION when building
haltest. Now all android targets get this define.
---
android/Android.mk | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/android/Android.mk b/android/Android.mk
index fc1b276..ae6d332 100644
--- a/android/Android.mk
+++ b/android/Android.mk
@@ -7,7 +7,8 @@ BLUEZ_VERSION := $(shell grep ^AC_INIT $(LOCAL_PATH)/../configure.ac | cpp -P -D
pathmap_INCL += glib:external/bluetooth/glib

# Specify common compiler flags
-BLUEZ_COMMON_CFLAGS := -DVERSION=\"$(BLUEZ_VERSION)\"
+BLUEZ_COMMON_CFLAGS := -DVERSION=\"$(BLUEZ_VERSION)\" \
+ -DPLATFORM_SDK_VERSION=$(PLATFORM_SDK_VERSION)

# Disable warnings enabled by Android but not enabled in autotools build
BLUEZ_COMMON_CFLAGS += -Wno-pointer-arith
@@ -45,8 +46,7 @@ LOCAL_C_INCLUDES += \
$(LOCAL_PATH)/../src \
$(LOCAL_PATH)/../lib \

-LOCAL_CFLAGS := $(BLUEZ_COMMON_CFLAGS) \
- -DPLATFORM_SDK_VERSION=$(PLATFORM_SDK_VERSION)
+LOCAL_CFLAGS := $(BLUEZ_COMMON_CFLAGS)

LOCAL_SHARED_LIBRARIES := \
libglib \
--
1.7.9.5



2013-10-30 14:32:51

by Johan Hedberg

[permalink] [raw]
Subject: Re: [PATCH] android: Fix compiler flags with Android version

Hi Jerzy,

On Wed, Oct 30, 2013, Jerzy Kasenberg wrote:
> This fixes commit that removed PLATFORM_SDK_VERSION when building
> haltest. Now all android targets get this define.
> ---
> android/Android.mk | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)

Applied. Thanks.

Johan