You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ap...@apache.org on 2007/01/11 15:51:13 UTC

svn commit: r495243 - in /harmony/enhanced/classlib/trunk/make: depends.properties depends.xml

Author: apetrenko
Date: Thu Jan 11 06:51:10 2007
New Revision: 495243

URL: http://svn.apache.org/viewvc?view=rev&rev=495243
Log:
msvcr71.dll now copied from %SystemRoot%\system32 directory

Modified:
    harmony/enhanced/classlib/trunk/make/depends.properties
    harmony/enhanced/classlib/trunk/make/depends.xml

Modified: harmony/enhanced/classlib/trunk/make/depends.properties
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/make/depends.properties?view=diff&rev=495243&r1=495242&r2=495243
==============================================================================
--- harmony/enhanced/classlib/trunk/make/depends.properties (original)
+++ harmony/enhanced/classlib/trunk/make/depends.properties Thu Jan 11 06:51:10 2007
@@ -47,8 +47,7 @@
 
 msvcr71.dir=${depends.dir}/libs/windows.x86
 msvcr71.dll=${msvcr71.dir}/msvcr71.dll
-msvcr71.url=http://www.dlldump.com/dllfiles/M/MSVCR71.dll
-msvcr71.md5=86f1895ae8c5e8b17d99ece768a70732
+msvcr71.url=${hyenv.SystemRoot}/system32/msvcr71.dll
 
 icu4j.dir=${depends.jars}/icu4j_3.4.4
 icu4j.jar=${icu4j.dir}/icu4j_3_4_4.jar

Modified: harmony/enhanced/classlib/trunk/make/depends.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/make/depends.xml?view=diff&rev=495243&r1=495242&r2=495243
==============================================================================
--- harmony/enhanced/classlib/trunk/make/depends.xml (original)
+++ harmony/enhanced/classlib/trunk/make/depends.xml Thu Jan 11 06:51:10 2007
@@ -54,6 +54,7 @@
     <target name="-check-win" if="is.windows" depends="-really-check-win" />
 
     <target name="-really-check-win" if="is.windows">
+        <property environment="hyenv" />
         <check-one-file src="${msvcr71.url}" dest="${msvcr71.dll}" />
         <check-one-file src="${awtdeps.url}" dest="${awtdeps.tar}" />
         <uptodate property="awtdeps.uptodate"
@@ -275,10 +276,10 @@
     </target>
 
     <target name="-download-win" if="is.windows">
-        
+
+    <property environment="hyenv" />
     <mkdir dir="${msvcr71.dir}" />
-    <download-one-file src="${msvcr71.url}" dest="${msvcr71.dll}"
-                           md5="${msvcr71.md5}" />
+    <copy file="${hyenv.SystemRoot}/system32/msvcr71.dll" tofile="${msvcr71.dll}" />
 
     <mkdir dir="${awtdeps.dir}" />
     <download-one-file src="${awtdeps.url}" dest="${awtdeps.tar}"