diff options
author | Sven Gothel <[email protected]> | 2009-07-01 07:34:59 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2009-07-01 07:34:59 +0000 |
commit | dbf66ad9e297d208029d6bb5e06f8b0f0c847d57 (patch) | |
tree | 49597ff70e76440c337ce16ecce4f48cec66ffe8 /setenv-jogl.x86_64.sh | |
parent | d075bda489c425d7f1ccd45944db6a8696bb0fd2 (diff) |
Sync with jogl r2009 ; Unified setenv-jogl.sh, which works from the autobuild directory as well ; Unified java*.sh scripts
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@358 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'setenv-jogl.x86_64.sh')
-rw-r--r-- | setenv-jogl.x86_64.sh | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/setenv-jogl.x86_64.sh b/setenv-jogl.x86_64.sh deleted file mode 100644 index b4832f2..0000000 --- a/setenv-jogl.x86_64.sh +++ /dev/null @@ -1,47 +0,0 @@ -#! /bin/sh - -if [ -z "$1" ] ; then - echo "Usage: $0 {JOGL_ALL|JOGL_ES1_MIN|JOGL_ES1_MAX|JOGL_ES2_MIN|JOGL_ES2_MAX|JOGL_GL2ES12_MIN|JOGL_GL2ES12_MAX|JOGL_GL2_MIN|JOGL_GL2_MAX}" -else - -JOGL_PROFILE=$1 -shift - -echo JOGL PROFILE: $JOGL_PROFILE - -CVSROOT=":pserver:[email protected]:/cvs" -THISDIR=`pwd` -export CVSROOT THISDIR - -if [ -x /devtools/etc/profile.ant ] ; then - . /devtools/etc/profile.ant -fi - -J2RE_HOME=/opt-linux-x86_64/jre6 -JAVA_HOME=/opt-linux-x86_64/j2se6 -CP_SEP=: - -export LIBXCB_ALLOW_SLOPPY_LOCK=1 - -. $THISDIR/../jogl/etc/profile.jogl $THISDIR/../jogl/build-x86_64 $JOGL_PROFILE - -GLUEGEN_JAR=$THISDIR/../gluegen/build-x86_64/gluegen-rt.jar -GLUEGEN_OS=$THISDIR/../gluegen/build-x86_64/obj - -LIB=$THISDIR/lib - -# CLASSPATH=$JAVA_HOME/jre/lib/rt.jar:.:build-x86_64/classes -CLASSPATH=.:$THISDIR/build-x86_64/jogl-demos.jar:$THISDIR/build-x86_64/jogl-demos-util.jar:$THISDIR/build-x86_64/jogl-demos-data.jar:$GLUEGEN_JAR:$JOGL_CLASSPATH -for i in $LIB/*jar ; do - CLASSPATH=$CLASSPATH:$i -done -export CLASSPATH -export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$GLUEGEN_OS:$JOGL_LIB_DIR - -echo JOGL_CLASSPATH: $JOGL_CLASSPATH - -PATH=$J2RE_HOME/bin:$JAVA_HOME/bin:$PATH -export PATH - -fi - |