Browse Source

remove xml.jar from localclasspath


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193545 13f79535-47bb-0310-9956-ffa450edef68
tags/pre-columns
fotis 24 years ago
parent
commit
b234c8d656
3 changed files with 5 additions and 2 deletions
  1. 2
    0
      STATUS
  2. 2
    1
      build.bat
  3. 1
    1
      build.sh

+ 2
- 0
STATUS View File

@@ -145,6 +145,8 @@ Done since 0.13 release
- added a MessageHandler [Fotis Jannidis]
- fixed table overflow bug [Jordan Naftolin]
- finally fixed postscript printing of generated PDF [Domagoj Cosic]
- removed XTCommandLine from build.xml
- removed PDFOutputHandler from build.xml

Done since 0.12.1 release
- using Ant to build Fop instead of make [Giacomo Pati]

+ 2
- 1
build.bat View File

@@ -5,7 +5,8 @@ echo ----------------

if "%JAVA_HOME%" == "" goto error

set LOCALCLASSPATH=%JAVA_HOME%\lib\tools.jar;%JAVA_HOME%\lib\classes.zip;lib\ant.jar;lib\xml.jar;lib\w3c.jar;lib

set LOCALCLASSPATH=%JAVA_HOME%\lib\tools.jar;%JAVA_HOME%\lib\classes.zip;lib\ant.jar;lib\w3c.jar;lib
set ANT_HOME=.\lib

echo Building with classpath %LOCALCLASSPATH%

+ 1
- 1
build.sh View File

@@ -13,7 +13,7 @@ if [ "$JAVA_HOME" = "" ] ; then
exit 1
fi

LOCALCLASSPATH=$JAVA_HOME/lib/tools.jar:$JAVA_HOME/lib/classes.zip:./lib/ant.jar:./lib/xml.jar:./lib/w3c.jar:./lib
LOCALCLASSPATH=$JAVA_HOME/lib/tools.jar:$JAVA_HOME/lib/classes.zip:./lib/ant.jar:./lib/w3c.jar:./lib
ANT_HOME=./lib

echo Building with classpath $CLASSPATH:$LOCALCLASSPATH

Loading…
Cancel
Save