From 112e988329b6af817b4892b530f703e7997b1d7d Mon Sep 17 00:00:00 2001 From: Rob Herring Date: Tue, 7 Jun 2016 18:27:34 -0500 Subject: Android: move libdrm settings to top-level Android.common.mk Fix warnings like these due to HAVE_LIBDRM being inconsistently defined: external/libdrm/include/drm/drm.h:839:30: warning: redefinition of typedef 'drm_clip_rect_t' is a C11 feature [-Wtypedef-redefinition] typedef struct drm_clip_rect drm_clip_rect_t; HAVE_LIBDRM needs to be set project wide to fix this. This change also harmlessly links libdrm with everything, but simplifies the makefiles a bit. Signed-off-by: Rob Herring Acked-by: Emil Velikov --- Android.common.mk | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Android.common.mk') diff --git a/Android.common.mk b/Android.common.mk index 831cbe5..dee22da 100644 --- a/Android.common.mk +++ b/Android.common.mk @@ -82,6 +82,12 @@ LOCAL_CFLAGS += \ -D__STDC_LIMIT_MACROS endif +# add libdrm if there are hardware drivers +ifneq ($(filter-out swrast,$(MESA_GPU_DRIVERS)),) +LOCAL_CFLAGS += -DHAVE_LIBDRM +LOCAL_SHARED_LIBRARIES += libdrm +endif + LOCAL_CPPFLAGS += \ $(if $(filter true,$(MESA_LOLLIPOP_BUILD)),-D_USING_LIBCXX) \ -Wno-error=non-virtual-dtor \ -- cgit v1.1