This is the mail archive of the kawa@sources.redhat.com mailing list for the Kawa project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

build.xml patch for BRL/KRL


Hi Per.

Attached is a patch for build.xml so the .scm files for KRL/BRL get compiled.

Included is another change I made a while ago and didn't post that removes a workaround for elisp "getInstance" that is apparently no longer needed.

jim
Index: build.xml
===================================================================
RCS file: /cvs/kawa/kawa/build.xml,v
retrieving revision 1.11
diff -r1.11 build.xml
569a570,589
>     <apply taskname="kawa" executable="java" 
>            failonerror="true" parallel="true">
>       <arg value="-classpath"/> <arg path="${build.classes}"/>
>       <arg value="kawa.repl"/>
>       <arg value="-d"/> <arg path="${build.classes}"/>
>       <arg line="-P gnu.brl. --module-static -C"/>
>       <fileset dir="${src.dir}/gnu/brl"> 
>         <include name="stringfun.scm"/>
>       </fileset>
>     </apply>
>     <apply taskname="kawa" executable="java" 
>            failonerror="true" parallel="true">
>       <arg value="-classpath"/> <arg path="${build.classes}"/>
>       <arg value="kawa.repl"/>
>       <arg value="-d"/> <arg path="${build.classes}"/>
>       <arg line="-P gnu.kawa.brl. --module-static -C"/>
>       <fileset dir="${src.dir}/gnu/kawa/brl"> 
>         <include name="progfun.scm"/>
>       </fileset>
>     </apply>
671,673d690
< 
<     <!-- !JPW: Don't know why, but "elisp" can't "getInstance" if this is present: -->
<     <delete file="${build.classes}/gnu/jemacs/lisp/primitives.class"/>

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]