Fix aapt to build in Windows SDK under Linux

Change-Id: Ic4a7b9e4df5b32bc338547a2a9d09b834ebaff14
This commit is contained in:
Raphael
2010-04-13 15:21:32 -07:00
parent 5a2e428ce8
commit 69df817eea

View File

@@ -37,16 +37,16 @@ LOCAL_STATIC_LIBRARIES := \
libexpat \
libpng
LOCAL_LDLIBS := -lz
ifeq ($(HOST_OS),linux)
LOCAL_LDLIBS += -lrt
endif
ifeq ($(HOST_OS),windows)
ifeq ($(strip $(USE_CYGWIN),),)
LOCAL_LDLIBS += -lws2_32
endif
# Statically link libz for MinGW (Win SDK under Linux),
# and dynamically link for all others.
ifneq ($(strip $(USE_MINGW)),)
LOCAL_STATIC_LIBRARIES += libz
else
LOCAL_LDLIBS += -lz
endif
LOCAL_MODULE := aapt