This is the mail archive of the
kawa@sources.redhat.com
mailing list for the Kawa project.
Re: updated Kawa 1.7 files
- From: Jim White <jim at pagesmiths dot com>
- To: Per Bothner <per at bothner dot com>
- Cc: kawa at sources dot redhat dot com
- Date: Fri, 06 Jun 2003 01:15:03 -0700
- Subject: Re: updated Kawa 1.7 files
- References: <3EE02917.8090605@bothner.com>
Per Bothner wrote:
I see from my ftp logs that a few people have downloaded
the previous files, but I haven't gotten any feedback.
I just tried the kawa-1.7-src.zip and the Ant build is broken.
Attached is a patch.
Jim
--- /Users/jim/Software/archives/kawa-1.7/build.xml Sat May 31 15:05:38 2003
+++ build.xml Fri Jun 6 01:01:51 2003
@@ -450,16 +450,19 @@
<include name="vectors.scm"/>
<include name="uniform.scm"/>
<include name="arrays.scm"/>
- <include name="system.scm"/>
<include name="trace.scm"/>
<include name="windows.scm"/>
</fileset>
+ <fileset id="lib-scm-3rd" dir="${src.dir}/kawa/lib">
+ <include name="system.scm"/>
+ </fileset>
<target name="check-lib-scm-classes">
<uptodate property="lib-scm-classes-uptodate">
<mapper type="glob" from="*.scm" to="*.class"/>
<srcfiles refid="lib-scm-1st"/>
<srcfiles refid="lib-scm-2nd"/>
+ <srcfiles refid="lib-scm-3rd"/>
</uptodate>
</target>
@@ -474,6 +477,7 @@
<arg line="-P kawa.lib. --module-static -C"/>
<fileset refid="lib-scm-1st"/>
<fileset refid="lib-scm-2nd"/>
+ <fileset refid="lib-scm-3rd"/>
</apply>
</target>