Re: JIKESPATH in setclasspath.sh

2010-06-09 Thread Rainer Jung
On 09.06.2010 04:58, Konstantin Kolinko wrote: JIKESPATH environment variable is used to provide path to the standard library files of JRE (rt.jar etc.), because the standard javac compiler knows where those are, but jikes does not. I found the explanation in its FAQ, [1]. [1] http://jikes.sourc

Re: JIKESPATH in setclasspath.sh

2010-06-08 Thread Konstantin Kolinko
JIKESPATH environment variable is used to provide path to the standard library files of JRE (rt.jar etc.), because the standard javac compiler knows where those are, but jikes does not. I found the explanation in its FAQ, [1]. [1] http://jikes.sourceforge.net/faq/user-index.shtml#jikespath Anyway

Re: JIKESPATH in setclasspath.sh

2010-06-08 Thread Tim Funk
From what I can tell, JIKESPATH is used by jikes which was an alternative java compiler. (a long time ago). I believe this is unused (even in tomcat6) - so i assume it can probably go. But I don't have a mac, so its just a wild guess. -Tim On 6/8/2010 3:33 PM, Mark Thomas wrote: On 08/06/201

Re: JIKESPATH in setclasspath.sh

2010-06-08 Thread Mark Thomas
On 08/06/2010 18:14, Tim Funk wrote: > Is this needed anymore in setclasspath.sh ? Works for me with that commented out. Mark > > # OSX hack to CLASSPATH > JIKESPATH= > if [ `uname -s` = "Darwin" ]; then > > OSXHACK="/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Classes" > >

JIKESPATH in setclasspath.sh

2010-06-08 Thread Tim Funk
Is this needed anymore in setclasspath.sh ? # OSX hack to CLASSPATH JIKESPATH= if [ `uname -s` = "Darwin" ]; then OSXHACK="/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Classes" if [ -d "$OSXHACK" ]; then for i in "$OSXHACK"/*.jar; do JIKESPATH="$JIKESPATH":"$i"