You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by od...@apache.org on 2007/12/04 16:32:57 UTC

svn commit: r600977 - /harmony/enhanced/classlib/trunk/depends/build/defines.mk

Author: odeakin
Date: Tue Dec  4 07:32:54 2007
New Revision: 600977

URL: http://svn.apache.org/viewvc?rev=600977&view=rev
Log:
Replace HY_SHLIB_SUFFIX with HY_LINKLIB_SUFFIX in link library lines.

Modified:
    harmony/enhanced/classlib/trunk/depends/build/defines.mk

Modified: harmony/enhanced/classlib/trunk/depends/build/defines.mk
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/depends/build/defines.mk?rev=600977&r1=600976&r2=600977&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/depends/build/defines.mk (original)
+++ harmony/enhanced/classlib/trunk/depends/build/defines.mk Tue Dec  4 07:32:54 2007
@@ -79,13 +79,13 @@
 MDLLIBFILES = $(LIBPATH)libhycommon.a
 
 ifeq ($(HY_NO_THR),false)
-MDLLIBFILES += $(DLLPATH)libhythr$(HY_SHLIB_SUFFIX)
+MDLLIBFILES += $(DLLPATH)libhythr$(HY_LINKLIB_SUFFIX)
 else
 DEFINES += -DHY_NO_THR
 endif
 
 ifeq ($(HY_NO_SIG),false)
-MDLLIBFILES += $(DLLPATH)libhysig$(HY_SHLIB_SUFFIX)
+MDLLIBFILES += $(DLLPATH)libhysig$(HY_LINKLIB_SUFFIX)
 else
 DEFINES += -DHY_NO_SIG
 endif
@@ -99,5 +99,5 @@
 OSLIBS += -lz
 MDLLIBZLIB =
 else
-MDLLIBZLIB += $(DLLPATH)libhyzlib$(HY_SHLIB_SUFFIX)
+MDLLIBZLIB += $(DLLPATH)libhyzlib$(HY_LINKLIB_SUFFIX)
 endif