OSDN Git Service

Fix etc1tool to build in Windows SDK under Linux
authorRaphael <raphael@google.com>
Fri, 23 Apr 2010 20:12:03 +0000 (13:12 -0700)
committerRaphael <raphael@google.com>
Fri, 23 Apr 2010 20:12:03 +0000 (13:12 -0700)
(Merges master Change Ib38a019b + Change I50f55004)

Change-Id: I2cbb63f0f20cdd2652b6b64ae0dee4343b952973

tools/etc1tool/Android.mk

index 5536158..a66af25 100644 (file)
@@ -23,16 +23,16 @@ LOCAL_STATIC_LIBRARIES := \
        libpng \
        libETC1
 
-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 := etc1tool