summaryrefslogtreecommitdiffstats
path: root/src/documentation/content/xdocs
diff options
context:
space:
mode:
authorWilliam Victor Mote <vmote@apache.org>2003-10-16 15:06:33 +0000
committerWilliam Victor Mote <vmote@apache.org>2003-10-16 15:06:33 +0000
commit0d56db57fa9d5fed589371604ee65547ae7734e2 (patch)
tree909d0c642418d7dad5d795da00d82df29e85003f /src/documentation/content/xdocs
parentc5479c513ca5e0be85ea99a9c781a0e3c7b31fe3 (diff)
downloadxmlgraphics-fop-0d56db57fa9d5fed589371604ee65547ae7734e2.tar.gz
xmlgraphics-fop-0d56db57fa9d5fed589371604ee65547ae7734e2.zip
partially implement patch submitted by Clay Leeds (see http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23821)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196962 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/documentation/content/xdocs')
-rw-r--r--src/documentation/content/xdocs/compiling.xml12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/documentation/content/xdocs/compiling.xml b/src/documentation/content/xdocs/compiling.xml
index eceed3f01..5e6ceefa6 100644
--- a/src/documentation/content/xdocs/compiling.xml
+++ b/src/documentation/content/xdocs/compiling.xml
@@ -20,19 +20,17 @@ If you are using a binary distribution, it is already built and there is no need
<title>JDK</title>
<p>
Building FOP requires a minimum Java Development Kit (JDK/SDK) of 1.3
- (A Java Runtime Environment ist not sufficient)
+ (A Java Runtime Environment is not sufficient).
</p>
</section>
<section id="env-classpath">
<title>CLASSPATH</title>
- <p>There is no generally no need to setup a classpath.
-All libraries needed to compile FOP are included in the source distribution and are referenced by the build script.
+ <p>There is generally no need to setup a classpath. All libraries needed to compile FOP are included in the source distribution and are referenced by the build script.
You will only need to adjust the classpath if you build FOP in some other way. See the build scripts (build.bat for Windows, and build.sh for Unix) for details.</p>
</section>
<section id="env-java-home">
<title>JAVA_HOME</title>
- <p>Ant, which is used by the build script, requires that the environment variable JAVA_HOME point to your local JDK root directory.
-This is true even if you use JDK 1.2 or above, which normally don't need this setting.</p>
+ <p>The build script uses <link href="http://jakarta.apache.org/ant/">Ant</link>, a popular java-based build tool, which requires that the environment variable JAVA_HOME point to your local JDK root directory. This is true even if you use JDK 1.2 or above, which normally don't need this setting.</p>
</section>
</section>
<section id="build-script">
@@ -40,9 +38,7 @@ This is true even if you use JDK 1.2 or above, which normally don't need this se
<p>Build FOP by executing the "build" script, which is located in the FOP root directory.
The Windows batch file is build.bat, and the Unix shell script is build.sh.
The examples below are for running the shell script, but except for the build file extension, the syntax is identical.</p>
- <p>The build script uses <link href="http://jakarta.apache.org/ant/">Ant</link>, a popular java-based build tool.
-The file build.xml in the FOP root directory is the blueprint that Ant uses for the build.
-It contains information for numerous build targets, many of which are building blocks to more useful target, and others which are primarily used by the FOP developers.
+ <p>The file build.xml in the FOP root directory is the blueprint that Ant uses for the build. It contains information for numerous build targets, many of which are building blocks to more useful target, and others which are primarily used by the FOP developers.
You may benefit from looking through this file to learn more about the various build targets.
To obtain a complete list of useful build targets:</p>
<source>build.sh -projecthelp</source>