summaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
authorJoerg Pietschmann <pietsch@apache.org>2002-07-14 15:23:47 +0000
committerJoerg Pietschmann <pietsch@apache.org>2002-07-14 15:23:47 +0000
commit48a295f5ff14c037a3911620ac0aeab7341d2d29 (patch)
treef3acf2cbfc45b3cd475d10fef77ccb95c64edd07 /build.sh
parentcaba6672d0fe0d11eedf7aafd300a70d81becbd5 (diff)
downloadxmlgraphics-fop-48a295f5ff14c037a3911620ac0aeab7341d2d29.tar.gz
xmlgraphics-fop-48a295f5ff14c037a3911620ac0aeab7341d2d29.zip
Removed traces of buffermanager
A few cosmetical changes in CommandLineOptions git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194996 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/build.sh b/build.sh
index 010989d04..d0a39960f 100755
--- a/build.sh
+++ b/build.sh
@@ -12,12 +12,31 @@ if [ "$JAVA_HOME" = "" ] ; then
echo "location of the Java Virtual Machine you want to use."
exit 1
fi
+
+# OS specific support. $var _must_ be set to either true or false.
+cygwin=false;
+case "`uname`" in
+ CYGWIN*) cygwin=true ;;
+esac
+
+# For Cygwin, ensure paths are in UNIX format before anything is touched
+if $cygwin ; then
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
+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.4.3.jar:$LIBDIR/xalan-2.3.1.jar:$LIBDIR/xml-apis.jar
LOCALCLASSPATH=$LOCALCLASSPATH:$LIBDIR/jimi-1.0.jar:$LIBDIR/avalon-framework-cvs-20020315.jar
ANT_HOME=$LIBDIR
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin; then
+ JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
+ LOCALCLASSPATH=`cygpath --path --windows "$LOCALCLASSPATH"`
+fi
+
echo
echo Building with classpath $LOCALCLASSPATH
echo Starting Ant...