am 7fca18d4: am 29355534: Fix aapt to build in Windows SDK under Linux

Merge commit '7fca18d4eadd3da0e616f2663aca41be4a01ec2f' into kraken

* commit '7fca18d4eadd3da0e616f2663aca41be4a01ec2f':
  Fix aapt to build in Windows SDK under Linux
This commit is contained in:
Raphael
2010-04-23 17:19:35 -07:00
committed by Android Git Automerger

View File

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