Hi Martin,
Thank you very much for your kind response.
I checked the matlab script on my m/c and it turns out that the check for window manager process has not been commented. I do not understand the reason though, since i have installed using the panther patch and applied it post installation as well.
Anyways, as per your suggestion, i ran it with the -nojvm option and it gave me the following message: --------------- dyld: /Applications/MATLAB6p5/bin/mac/MATLAB Undefined symbols: _tgetent _tgetstr Trace/BPT trap -------------
This is a problem that appeared already on Panther. These symbols were in libSystem.dylib on OSX 10.1 and were moved to libncurses.dylib on 10.2 and 10.3. The matlab script has the following code:
if [ "$ARCH" = "mac" ]; then
uname_out=`/usr/bin/uname -r`
if [ `expr "$uname_out" : '\([0-9][0-9]*\)'` = "5" ]; then
# 10.1
DYLD_FORCE_FLAT_NAMESPACE=1; export DYLD_FORCE_FLAT_NAMESPACE
else
# 10.2
ulimit -s 16384
DYLD_INSERT_LIBRARIES="`eval echo $DYLD_INSERT_LIBRARIES`"
if [ "$DYLD_INSERT_LIBRARIES" != "" ]; thenDYLD_INSERT_LIBRARIES=/usr/lib/libcurses.dylib:$DYLD_INSERT_LIBRARIES
else
DYLD_INSERT_LIBRARIES=/usr/lib/libcurses.dylib
fi
export DYLD_INSERT_LIBRARIES
fi
fiMaybe you need to apply the Jaguar update first and then the Panther update?
-- Martin
------------------------------------------------------- This SF.net email is sponsored by: Perforce Software. Perforce is the Fast Software Configuration Management System offering advanced branching capabilities and atomic changes on 50+ platforms. Free Eval! http://www.perforce.com/perforce/loadprog.html _______________________________________________ Fink-beginners mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/fink-beginners
