Closed GoogleCodeExporter closed 9 years ago
Have tested this with the latest checkout on both CentOS5 and Gentoo. Same
difficulty on each. Below are diffs on working versions of the files.
mgregson@agave ~/src/code_swarm $ svn diff build.xml
Index: build.xml
===================================================================
--- build.xml (revision 202)
+++ build.xml (working copy)
@@ -21,7 +21,7 @@
<echo>Running BUILD</echo>
<mkdir dir="${build}" />
<javac destdir="${build}" srcdir="${src}"
-classpath="${lib}/core.jar;${lib}/xml.jar;${lib}/jogl.jar;${lib}/opengl.jar"
debug="true" deprecation="false" />
+classpath="${lib}/core.jar;${lib}/xml.jar;${lib}/jogl.jar;${lib}/opengl.jar;${l
ib}/vecmath.jar"
debug="true" deprecation="false" />
<copy file="${src}/particle.png" todir="${build}" />
</target>
mgregson@agave ~/src/code_swarm $ svn diff run.sh
Index: run.sh
===================================================================
--- run.sh (revision 202)
+++ run.sh (working copy)
@@ -48,7 +48,7 @@
fi
# running
-if java -Xmx1000m -classpath dist/code_swarm.jar:lib/core.jar:lib/xml.jar:.
code_swarm $params; then
+if java -Xmx1000m -classpath
dist/code_swarm.jar:lib/core.jar:lib/xml.jar:lib/vecmath.jar:. code_swarm
$params; then
# always on error due to no "exit buton" on rendering window
echo "bye"
# echo -n "error, press a key to exit"
Original comment by teslam...@gmail.com
on 23 Jul 2008 at 3:48
Updated to match patch.
Original comment by nawglan
on 23 Jul 2008 at 4:45
Original issue reported on code.google.com by
teslam...@gmail.com
on 23 Jul 2008 at 3:42