android: gallium/auxiliary: add include to get u_debug.h header
authorMauro Rossi <issor.oruam@gmail.com>
Wed, 31 Oct 2018 14:53:21 +0000 (15:53 +0100)
committerMauro Rossi <issor.oruam@gmail.com>
Fri, 2 Nov 2018 12:31:37 +0000 (13:31 +0100)
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>
src/gallium/auxiliary/Android.mk

index acd243b..7618c6f 100644 (file)
@@ -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 += \