OSDN Git Service

Fix aapt to build in Windows SDK under Linux
authorRaphael <raphael@google.com>
Tue, 13 Apr 2010 22:21:32 +0000 (15:21 -0700)
committerRaphael <raphael@google.com>
Fri, 23 Apr 2010 22:30:42 +0000 (15:30 -0700)
(Merge master Change Ic4a7b9e4)

tools/aapt/Android.mk

index 2d8973d..499a7ac 100644 (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