diff options
author | Rob Herring <[email protected]> | 2016-06-07 18:27:34 -0500 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2016-06-13 15:31:29 +0100 |
commit | 112e988329b6af817b4892b530f703e7997b1d7d (patch) | |
tree | 453baa9443909013215e54357808f668a9cbcb17 /src/gallium/auxiliary/pipe-loader | |
parent | 54e550ab8ad7ca5ebd24edbbb3f96e5412209ba9 (diff) |
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 <[email protected]>
Acked-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/pipe-loader')
-rw-r--r-- | src/gallium/auxiliary/pipe-loader/Android.mk | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/pipe-loader/Android.mk b/src/gallium/auxiliary/pipe-loader/Android.mk index 27893137a1a..006bb0ebfd9 100644 --- a/src/gallium/auxiliary/pipe-loader/Android.mk +++ b/src/gallium/auxiliary/pipe-loader/Android.mk @@ -38,10 +38,7 @@ LOCAL_SRC_FILES := $(COMMON_SOURCES) LOCAL_MODULE := libmesa_pipe_loader ifneq ($(filter-out swrast,$(MESA_GPU_DRIVERS)),) -LOCAL_CFLAGS += -DHAVE_LIBDRM LOCAL_SRC_FILES += $(DRM_SOURCES) - -LOCAL_SHARED_LIBRARIES := libdrm LOCAL_STATIC_LIBRARIES := libmesa_loader endif |