On 02/05/2005, at 10:50 PM, Simon Urbanek wrote:

It's a problem in your library setup. Your /usr/local/lib/ libJPEG.dylib conflicts with the system libJPEG.dylib from ImageIO framework (which is in /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib). Since R forces the load of the one in /usr/local/lib first (as you configured it), it is loaded instead of the one in ImageIO framework, but it doesn't contain the same symbols, thus the load fails. You should remove /usr/local/libJPEG.dylib and use static version or ImageIO instead.

Removing the symlink did the trick. I notice that all the libraries in the ImageIO framework have capitalisation. I guess this stops them being linked by accidentally by GNU style builds but not vice versa.

I now have a working R 2.1 built on Tiger with gcc-4.0/gfortran.

Bill

______________________________________________
R-devel@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel

Reply via email to