Karen -- Thanks for the ideas. Still no success. I'm attaching a typescript file and build.sh. I figure whatever is going on has got to be something very foundational but probably very simple once found. I'm puzzled by the fact that fop has its own private copy of ant, etc. and that it is set up to use its own private tools, yet doesn't work here while working there. I wonder if Java itself is broken. I don't do a lot with Java on my own, so if there are some simple checks you could guide me through to see that I'm not getting breakage at that level, I'd appreciate it. > -- Regards, -- Gregor _____________________________________________________________________ / \ Gregor N. Purdy [EMAIL PROTECTED] Focus Research, Inc. http://www.focusresearch.com/ 8080 Beckett Center Drive #203 513-860-3570 vox West Chester, OH 45069 513-860-3579 fax \_____________________________________________________________________/
Script started on Mon Jul 23 07:15:43 2001 [gregor@sarek fop-cvs]$ ./build.sh -version Fop Build System ---------------- Building with classpath /usr/java/jdk1.3/lib/tools.jar:/usr/java/jdk1.3/lib/classes.zip:lib/ant.jar:lib/batik.jar:lib/buildtools.jar:lib/xerces-1.2.3.jar:lib/xalan-2.0.0.jar:lib/xalanj1compat.jar:lib/bsf.jar:lib/jimi-1.0.jar Starting Ant... [gregor@sarek fop-cvs]$ # Hit Ctrl-C [gregor@sarek fop-cvs]$ [gregor@sarek fop-cvs]$ java -classpath lib/ant.jar org.apache.tools.ant.Main -version [gregor@sarek fop-cvs]$ # Hit Ctrl-C [gregor@sarek fop-cvs]$ [gregor@sarek fop-cvs]$ # java -classpath lib/ant.jar org.apache.tools.ant.Main -verbose [gregor@sarek fop-cvs]$ [gregor@sarek fop-cvs]$ exit exit Script done on Mon Jul 23 07:17:18 2001
#!/bin/sh # This file should be executable. echo echo "Fop Build System" echo "----------------" echo if [ "$JAVA_HOME" = "" ] ; then echo "ERROR: JAVA_HOME not found in your environment." echo echo "Please, set the JAVA_HOME variable in your environment to match the" echo "location of the Java Virtual Machine you want to use." exit 1 fi LIBDIR=lib LOCALCLASSPATH=$JAVA_HOME/lib/tools.jar:$JAVA_HOME/lib/classes.zip:$LIBDIR/ant.jar:$LIBDIR/batik.jar:$LIBDIR/buildtools.jar:$LIBDIR/xerces-1.2.3.jar:$LIBDIR/xalan-2.0.0.jar:$LIBDIR/xalanj1compat.jar:$LIBDIR/bsf.jar:$LIBDIR/jimi-1.0.jar ANT_HOME=$LIBDIR echo echo Building with classpath $LOCALCLASSPATH echo Starting Ant... echo $JAVA_HOME/bin/java -Dant.home=$ANT_HOME -classpath "$LOCALCLASSPATH" org.apache.tools.ant.Main $*
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]
