Module: Mesa Branch: staging/18.1 Commit: d9c4398c39f3ef91f337a9da6c6e7532b275e9ab URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=d9c4398c39f3ef91f337a9da6c6e7532b275e9ab
Author: Mauro Rossi <[email protected]> Date: Sat Jul 21 10:40:32 2018 +0200 android: util/disk_cache: fix building errors in gallium drivers This patch applies the necessary changes in Android.common.mk as per automake rules, to avoid following building error: external/mesa/src/gallium/drivers/nouveau/nouveau_screen.c:159:8: error: implicit declaration of function 'disk_cache_get_function_timestamp' is invalid in C99 [-Werror,-Wimplicit-function-declaration] if (disk_cache_get_function_timestamp(nouveau_disk_cache_create, ^ 1 error generated. (v2) -DENABLE_SHADER_CACHE Android cflag is kept, to leave the AS-IS capability enabled Fixes: cc10b34 ("util/disk_cache: Fix disk_cache_get_function_timestamp with disabled cache.") Signed-off-by: Mauro Rossi <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]> (cherry picked from commit 6cbbd5b4f8c0fac468476ae19c5a02b42800f816) --- Android.common.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/Android.common.mk b/Android.common.mk index e8aed48c31..97d5728e78 100644 --- a/Android.common.mk +++ b/Android.common.mk @@ -52,6 +52,7 @@ LOCAL_CFLAGS += \ -DHAVE___BUILTIN_EXPECT \ -DHAVE___BUILTIN_FFS \ -DHAVE___BUILTIN_FFSLL \ + -DHAVE_DLFCN_H \ -DHAVE_FUNC_ATTRIBUTE_FLATTEN \ -DHAVE_FUNC_ATTRIBUTE_UNUSED \ -DHAVE_FUNC_ATTRIBUTE_FORMAT \ _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
