summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorChih-Wei Huang <[email protected]>2017-05-17 13:10:02 +0800
committerEmil Velikov <[email protected]>2017-05-18 18:01:44 +0100
commit5cace16ac6f40bd6f6a685348d668f39c47755bc (patch)
treeb5656393dbd5ab0761699ca416fe36b1629a4a30 /src/util
parentd6439cb2975aebd2be03e032fbeea86328159074 (diff)
Android: correct libz dependency
Commit 6facb0c0 ("android: fix libz dynamic library dependencies") unconditionally adds libz as a dependency to all shared libraries. That is unnecessary. Commit 85a9b1b5 introduced libz as a dependency to libmesa_util. So only the shared libraries that use libmesa_util need libz. Fix Android Lollipop build by adding the include path of zlib to libmesa_util explicitly instead of getting the path implicitly from zlib since it doesn't export the include path in Lollipop. Fixes: 6facb0c0 "android: fix libz dynamic library dependencies" Signed-off-by: Chih-Wei Huang <[email protected]> Reviewed-by: Tapani Pälli <[email protected]> Reviewed-by: Rob Herring <[email protected]> (cherry picked from commit bfc0c23843008fd510afa263ebe371bef3346445)
Diffstat (limited to 'src/util')
-rw-r--r--src/util/Android.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/Android.mk b/src/util/Android.mk
index 64aafbe2ee1..facdcf8ed11 100644
--- a/src/util/Android.mk
+++ b/src/util/Android.mk
@@ -34,6 +34,7 @@ LOCAL_SRC_FILES := \
$(MESA_UTIL_FILES)
LOCAL_C_INCLUDES := \
+ external/zlib \
$(MESA_TOP)/src/mesa \
$(MESA_TOP)/src/mapi \
$(MESA_TOP)/src/gallium/include \