Add a check to error out on Android version K(4.4) or lower. This is due to dependency added in a previous commit on mmap64, which was introduced with Android L. Cc: Emil Velikov <emil.velikov@xxxxxxxxxxxxx> Cc: Sean Paul <seanpaul@xxxxxxxxxxxx> Cc: Alistair Strachan <astrachan@xxxxxxxxxx> Cc: Marissa Wall <marissaw@xxxxxxxxxx> Suggested-by: Emil Velikov <emil.velikov@xxxxxxxxxxxxx> Signed-off-by: John Stultz <john.stultz@xxxxxxxxxx> --- NOTE: This change was suggested by Emil, and I've implemented it as suggested, but due to the fact that the Android.mk files are no longer usable with AOSP/master, I'm not able to test this change. Help in validating would be appreciated. --- Android.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Android.mk b/Android.mk index 1b77c53..0ab6f0f 100644 --- a/Android.mk +++ b/Android.mk @@ -21,6 +21,11 @@ # IN THE SOFTWARE. # +LIBDRM_ANDROID_MAJOR_VERSION := $(word 1, $(subst ., , $(PLATFORM_VERSION))) +ifneq ($(filter 2 4, $(LIBDRM_ANDROID_MAJOR_VERSION)),) +$(error "Android 4.4 and earlier not supported") +endif + LIBDRM_COMMON_MK := $(call my-dir)/Android.common.mk LOCAL_PATH := $(call my-dir) -- 2.7.4 _______________________________________________ dri-devel mailing list dri-devel@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/dri-devel