blob: f315fc8bf160f104be5e6d78dc70a4ecb72c41b7 [file] [log] [blame]
#!/bin/sh
# Note: if "local" users have this file on their path, then
# the bash "include source" function will find that path version
# first, instead of this "standard" eclipse ppc one.
export BUILD_HOME=/shared/webtools
export DISPLAY=127.0.0.1:1.0
JAVA_4_DIR="IBMJava2-ppc-142"
JAVA_5_DIR="ibm-java2-ppc-50"
########################################################
export PROJECT_HOME=`dirname "$0"`
export JAVA_4_HOME=${BUILD_HOME}/apps/${JAVA_4_DIR}
export JAVA_5_HOME=${BUILD_HOME}/apps/${JAVA_5_DIR}
# values of the bootclasspath attribute used in ant javac calls.
# the names of these jars are VM vendor specific. the first set
# below, commented out, are typical for sun VM's. The
# second set are for IBM's VM's ... which is what we use
# on the PPC machine, so we'll leave that as the defaults
# in this file.
#export bootclasspath="${JAVA_4_HOME}/jre/lib/rt.jar:${JAVA_4_HOME}/jre/lib/jsse.jar"
#export bootclasspath_15="${JAVA_5_HOME}/jre/lib/rt.jar"
export bootclasspath="${JAVA_4_HOME}/jre/lib/core.jar:${JAVA_4_HOME}/jre/lib/ibmjsseprovider.jar:${JAVA_4_HOME}/jre/lib/xml.jar"
export bootclasspath_15="${JAVA_5_HOME}/jre/lib/core.jar:${JAVA_5_HOME}/jre/lib/vm.jar:${JAVA_5_HOME}/jre/lib/xml.jar"
export ANT_HOME=${BUILD_HOME}/apps/apache-ant-1.6.5
export PATH=$PATH:$HOME/bin:$ANT_HOME/bin:$JAVA_HOME/bin
export JAVA_HIGH_ZIPFDS=500
export BUILD_INITIALIZED="true"
echo " "
echo " Project Home: ${PROJECT_HOME}"
echo " Build Home: ${BUILD_HOME}"
echo " DISPLAY: ${DISPLAY}"
echo " "
echo " JAVA_4_HOME: ${JAVA_4_HOME}"
echo " ${bootclasspath}"
echo " "
echo " JAVA_5_HOME: ${JAVA_5_HOME}"
echo " ${bootclasspath_15}"
echo " "
echo " ANT_HOME: ${ANT_HOME}"
echo " "
echo " PATH: ${PATH}"
echo " "