From 2d06791f6f9e8ab37109be52e63d247bbbcb42d4 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Fri, 27 Mar 2015 18:36:10 +0000 Subject: [PATCH] android: egl: add libsync_cflags to the build ... via local_shared_libraries. Otherwise the sync/sync.h header won't be found. Note: 10.5 and earlier will need similar change in st/egl. v2: Append the library to the local_shared_libraries list. (Chih-Wei) Cc: "10.4 10.5" Signed-off-by: Emil Velikov Reviewed-by: Chih-Wei Huang --- src/egl/drivers/dri2/Android.mk | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/egl/drivers/dri2/Android.mk b/src/egl/drivers/dri2/Android.mk index d5ac8ee34cb..d48506a7e5a 100644 --- a/src/egl/drivers/dri2/Android.mk +++ b/src/egl/drivers/dri2/Android.mk @@ -46,6 +46,12 @@ LOCAL_STATIC_LIBRARIES := \ libmesa_loader LOCAL_SHARED_LIBRARIES := libdrm + +ifeq ($(shell echo "$(MESA_ANDROID_VERSION) >= 4.2" | bc),1) +LOCAL_SHARED_LIBRARIES += \ + libsync +endif + LOCAL_MODULE := libmesa_egl_dri2 include $(MESA_COMMON_MK) -- 2.30.2