Ignore:
Timestamp:
05/24/10 16:38:08 (14 years ago)
Author:
Mark Evenson
Message:

Restore buildable state.

Location:
trunk/abcl/examples/google-app-engine
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/examples/google-app-engine/build.xml

    r12231 r12729  
    1 <project>
    2   <property name="sdk.dir" location="../appengine-java-sdk" />
     1<project default="compile">
     2
     3  <property name="sdk.dir"
     4            location="../../../appengine-java-sdk" />
    35  <import file="${sdk.dir}/config/user/ant-macros.xml" />
     6
    47  <path id="project.classpath">
    58  <pathelement path="war/WEB-INF/classes" />
     
    1114  </fileset>
    1215  </path>
     16
    1317  <target name="copyjars"
    1418    description="Copies the App Engine and ABCL JARs to the WAR.">
     
    1923      <include name="**/*.jar" />
    2024    </fileset>
    21     <fileset dir="../abcl">
     25    <fileset dir="../..">
    2226      <include name="dist/*.jar" />
    2327    </fileset>
     
    3034  </copy>
    3135  </target>
    32   <target name="compile" depends="copyjars"
     36
     37  <target name="compile" depends="copyjars,abcl.jar"
    3338    description="Compiles Java source and copies other source files to the WAR.">
    3439  <mkdir dir="war/WEB-INF/classes" />
     
    4247    destdir="war/WEB-INF/classes"
    4348    classpathref="project.classpath"
     49                includeantruntime="false"
    4450    debug="on" />
    4551  </target>
     52
     53  <target name="abcl.jar">
     54    <ant dir="../.." target="abcl.jar"/>
     55  </target>
     56
    4657  <target name="clean" description="Cleans all the jars and fasls.">
    4758    <delete>
  • trunk/abcl/examples/google-app-engine/src/abcl_ae/AbclInit.java

    r12277 r12729  
    99import org.armedbear.lisp.Symbol;
    1010import org.armedbear.lisp.Pathname;
    11 import org.armedbear.lisp.ConditionThrowable;
    1211
    1312public final class AbclInit {
  • trunk/abcl/examples/google-app-engine/src/abcl_ae/HelloWorldServlet.java

    r12277 r12729  
    1010import org.armedbear.lisp.Symbol;
    1111import org.armedbear.lisp.SpecialBinding;
     12import org.armedbear.lisp.SpecialBindingsMark;
    1213import org.armedbear.lisp.Load;
    1314import org.armedbear.lisp.Stream;
     
    3132    currentThread.bindSpecial(
    3233      Symbol.STANDARD_OUTPUT,
    33       new Stream(resp.getOutputStream(), Symbol.CHARACTER, false));
     34      new Stream(Symbol.SYSTEM_STREAM, resp.getOutputStream(),
     35                                   Symbol.CHARACTER, false));
    3436
    3537    try {
Note: See TracChangeset for help on using the changeset viewer.