When you build Clojure from SVN using the ant file, it defaults to
compiling the class files for the highest version of Java available on
your system. So if you have Java 1.6, the clojure.jar file you make
will be inaccessible to people with only Java 1.5. Since Clojure is
for Java 1.5 and 1.6, it might make sense to set the default build
target version to 1.5:
<target name="compile" depends="init"
description="Compile Java sources.">
<javac srcdir="${jsrc}" destdir="${build}"
includeJavaRuntime="yes"
debug="true" target="1.5"/>
</target>
- James
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Clojure" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---