aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2004-08-04 18:21:26 +0000
committerKenneth Russel <[email protected]>2004-08-04 18:21:26 +0000
commite26c0e6cca27dc6f6209c68b5a39331998bf77f0 (patch)
treec45c26287decdf1ba64d546bf69771bbf5f8a3c0 /doc
parent05ad8604b58f355890f0e3804906c7e8d598edfa (diff)
Incorporated changes by Alex Radeski <[email protected]> from the
JSR-231 expert group to use the Ant CPPTask instead of manual exec'ing of the C compiler from within the build.xml. Substantially simplifies the build.xml; further simplifications (i.e., unused variables) are probably possible. Ported the CPPTask support to Mac OS X and validated it and fixed minor bugs on the supported platforms. git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@145 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'doc')
-rw-r--r--doc/HowToBuild.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/HowToBuild.html b/doc/HowToBuild.html
index e9a5403ee..730307c4d 100644
--- a/doc/HowToBuild.html
+++ b/doc/HowToBuild.html
@@ -12,7 +12,7 @@ Here are the steps that are required in order to build the Jogl
OpenGL binding from a fresh copy of the source distribution:
<OL>
- <LI> <B>Install Ant:</B> <br> Download and unpack Ant 1.5.3 from <a href="http://ant.apache.org/">http://ant.apache.org</a> and add the <code>bin/</code> subdirectory to your PATH environment variable. (Later versions of Ant should work; 1.6.1 has been tested successfully.)
+ <LI> <B>Install Ant:</B> <br> Download and unpack Ant 1.6.1 or later from <a href="http://ant.apache.org/">http://ant.apache.org</a> and add the <code>bin/</code> subdirectory to your PATH environment variable. (Later versions of Ant should work; 1.6.2 has been tested successfully.)
<LI> <B>Install ANTLR:</B> <br> Download and unpack ANTLR 2.7.2 from <a href="http://www.antlr.org">http://www.antlr.org</a>. (Later versions of ANTLR should work; ANTLR 2.7.3 has been tested successfully.)
<LI> <B>Unset your CLASSPATH environment variable:</B> <br> The Ant build requires that the Jogl jars not be visible on the classpath. On Unix, type <code> unsetenv CLASSPATH </code> into a csh or tcsh shell, or <code> set CLASSPATH=; export CLASSPATH </code> into a Bourne shell. On Windows, type <code> set CLASSPATH= </code> into a command prompt.