mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-28 12:45:56 +08:00
Android: correct libz dependency
Commit6facb0c0
("android: fix libz dynamic library dependencies") unconditionally adds libz as a dependency to all shared libraries. That is unnecessary. Commit85a9b1b5
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 <cwhuang@linux.org.tw> Reviewed-by: Tapani Pälli <tapani.palli@intel.com> Reviewed-by: Rob Herring <robh@kernel.org>
This commit is contained in:
parent
f96edf72b4
commit
bfc0c23843
@ -103,7 +103,3 @@ endif
|
||||
|
||||
# Quiet down the build system and remove any .h files from the sources
|
||||
LOCAL_SRC_FILES := $(patsubst %.h, , $(LOCAL_SRC_FILES))
|
||||
|
||||
ifneq ($(LOCAL_IS_HOST_MODULE),true)
|
||||
LOCAL_SHARED_LIBRARIES += libz
|
||||
endif
|
||||
|
@ -35,7 +35,8 @@ LOCAL_CFLAGS :=
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
libdl \
|
||||
libglapi \
|
||||
libexpat
|
||||
libexpat \
|
||||
libz
|
||||
|
||||
$(foreach d, $(MESA_BUILD_GALLIUM), $(eval LOCAL_CFLAGS += $(patsubst HAVE_%,-D%,$(d))))
|
||||
|
||||
|
@ -231,7 +231,7 @@ LOCAL_WHOLE_STATIC_LIBRARIES := \
|
||||
libmesa_intel_compiler \
|
||||
libmesa_anv_entrypoints
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := libdrm
|
||||
LOCAL_SHARED_LIBRARIES := libdrm libz
|
||||
|
||||
include $(MESA_COMMON_MK)
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
|
@ -51,7 +51,8 @@ MESA_DRI_SHARED_LIBRARIES := \
|
||||
libdl \
|
||||
libexpat \
|
||||
libglapi \
|
||||
liblog
|
||||
liblog \
|
||||
libz
|
||||
|
||||
#-----------------------------------------------
|
||||
# Build drivers and libmesa_dri_common
|
||||
|
@ -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 \
|
||||
|
Loading…
Reference in New Issue
Block a user