summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMauro Rossi <issor.oruam@gmail.com>2018-10-31 15:53:21 +0100
committerEmil Velikov <emil.l.velikov@gmail.com>2018-11-07 17:20:51 +0000
commit959a9d42d7169b75d1ab92b71c292174555bf8cb (patch)
tree5399e6d32befe5e5fcb57e8d841f9059bc23cf14
parent52e01585c4714c0bfcf04b4a4e99319f08ef13bf (diff)
android: gallium/auxiliary: add include to get u_debug.h header
To avoid build error in u_debug_stack_android.cpp due to now missing u_debug.h header: external/mesa/src/gallium/auxiliary/util/u_debug_stack_android.cpp:26:10: fatal error: 'u_debug.h' file not found #include "u_debug.h" ^ 1 error generated. Fixes: 37db383abb ("util: Move u_debug to utils") Signed-off-by: Mauro Rossi <issor.oruam@gmail.com> Reviewed-by: Dylan Baker <dylan@pnwbakers.com> (cherry picked from commit b9dec214f5151f3ad87eb2faf982c57e5323f534)
-rw-r--r--src/gallium/auxiliary/Android.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/Android.mk b/src/gallium/auxiliary/Android.mk
index acd243b8346..7618c6fcd93 100644
--- a/src/gallium/auxiliary/Android.mk
+++ b/src/gallium/auxiliary/Android.mk
@@ -36,7 +36,8 @@ LOCAL_SRC_FILES := \
util/u_debug_stack_android.cpp
LOCAL_C_INCLUDES := \
- $(GALLIUM_TOP)/auxiliary/util
+ $(GALLIUM_TOP)/auxiliary/util \
+ $(MESA_TOP)/src/util
ifeq ($(MESA_ENABLE_LLVM),true)
LOCAL_SRC_FILES += \