summaryrefslogtreecommitdiffstats
path: root/Android.common.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Android.common.mk')
-rw-r--r--Android.common.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/Android.common.mk b/Android.common.mk
index 83177a0..f28ddc2 100644
--- a/Android.common.mk
+++ b/Android.common.mk
@@ -24,6 +24,12 @@
LOCAL_C_INCLUDES += \
$(MESA_TOP)/include
+# define ANDROID_VERSION (e.g., 4.0.x => 0x0400)
+major := $(word 1, $(subst ., , $(PLATFORM_VERSION)))
+minor := $(word 2, $(subst ., , $(PLATFORM_VERSION)))
+LOCAL_CFLAGS += \
+ -DANDROID_VERSION=0x0$(major)0$(minor)
+
LOCAL_CFLAGS += \
-DPTHREADS \
-fvisibility=hidden \