diff options
author | Christian Geisert <chrisg@apache.org> | 2002-04-29 20:15:22 +0000 |
---|---|---|
committer | Christian Geisert <chrisg@apache.org> | 2002-04-29 20:15:22 +0000 |
commit | 445f871981629b3374b9564b2476bb99d6650213 (patch) | |
tree | cecf28a7b7e7b1c5aaebd61e1c28720fe4f6571a /build.xml | |
parent | 2967d27a469dceecd825d52d6c872d319750c8c7 (diff) | |
download | xmlgraphics-fop-445f871981629b3374b9564b2476bb99d6650213.tar.gz xmlgraphics-fop-445f871981629b3374b9564b2476bb99d6650213.zip |
removed (broken) XT support
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/fop-0_20_2-maintain@194760 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 18 |
1 files changed, 4 insertions, 14 deletions
@@ -103,8 +103,8 @@ the built process is not stopped. Here is a list of such modules and what you have to download to build them: - org.apache.fop.apps.XTCommandLine ===> - James Clark's XT (http://www.jclark.com/) + - Jimi + - JAI 2) I see a lot of warnings starting like this: "Warning: file modified in the future:" Sometimes ant gives out this warnings, but the build is finished without any problems @@ -293,7 +293,6 @@ Sometimes ant gives out this warnings, but the build is finished without any pro </target> <target name="init-avail"> - <available property="xt.present" classname="com.jclark.xsl.sax.XSLProcessor"/> <available property="jimi.present" classname="com.sun.jimi.core.Jimi"/> <available property="jai.present" classname="javax.media.jai.JAI"/> @@ -371,15 +370,6 @@ Sometimes ant gives out this warnings, but the build is finished without any pro <!-- =================================================================== --> - <!-- copies some source files if xt is present --> - <!-- =================================================================== --> - <target name="prepare-xt" depends="prepare" if="xt.present"> - <copy todir="${build.src}"> - <fileset dir="${src.dir}" includes="**/XT*,**/PDFOutputHandler.java"/> - </copy> - </target> - - <!-- =================================================================== --> <!-- copies special image class only if Jimi library is present --> <!-- =================================================================== --> <target name="prepare-jimi" depends="prepare" if="jimi.present"> @@ -418,11 +408,11 @@ Sometimes ant gives out this warnings, but the build is finished without any pro <!-- =================================================================== --> <!-- Prepares the source code --> <!-- =================================================================== --> - <target name="prepare-src" depends="prepare, prepare-xt, prepare-jimi, prepare-jai, prepare-xalan1, prepare-trax"> + <target name="prepare-src" depends="prepare, prepare-jimi, prepare-jai, prepare-xalan1, prepare-trax"> <!-- copy src files --> <copy todir="${build.src}"> <fileset dir="${src.dir}" - excludes="**/Makefile*, **/package.html, **/XT*,**/PDFOutputHandler.java,**/${jimi},**/${jai},**/${xsltransform},**/${trax},**/${xalan1},**/apps/TraxInputHandler.java"/> + excludes="**/package.html, **/${jimi},**/${jai},**/${xsltransform},**/${trax},**/${xalan1},**/apps/TraxInputHandler.java"/> </copy> </target> |