From dbf66ad9e297d208029d6bb5e06f8b0f0c847d57 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Wed, 1 Jul 2009 07:34:59 +0000 Subject: 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 --- java-run-newt.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 java-run-newt.sh (limited to 'java-run-newt.sh') diff --git a/java-run-newt.sh b/java-run-newt.sh new file mode 100755 index 0000000..b2a5674 --- /dev/null +++ b/java-run-newt.sh @@ -0,0 +1,22 @@ +#! /bin/sh + +MOSX=0 +uname -a | grep -i Darwin && MOSX=1 + +CPOK=0 +echo $CLASSPATH | grep jogl && CPOK=1 + +if [ $CPOK -eq 0 ] ; then + # Only valid for autobuild .. otherwise run manually with build-dir + . ./setenv-jogl.sh JOGL_ALL + echo $CLASSPATH | grep jogl && CPOK=1 +fi +if [ $CPOK -eq 0 ] ; then + echo No JOGL in CLASSPATH +else + if [ $MOSX -eq 1 ] ; then + X_ARGS="-XstartOnFirstThread" + fi + + java $X_ARGS -Djava.awt.headless=true com.sun.javafx.newt.util.MainThread $* 2>&1 | tee java-run-newt.log +fi -- cgit v1.2.3