necessary info

Daniel J. Luke dluke at geeklair.net
Thu Apr 29 07:29:59 PDT 2010


On Apr 28, 2010, at 7:07 PM, John B Brown wrote:
>> Dyld Error Message:
>>  Library not loaded: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
>>  Referenced from: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
>>  Reason: Incompatible library version: ImageIO requires version 1.0.0 or later, but libTIFF.dylib provides version 0.0.0

On Apr 29, 2010, at 2:19 AM, John B Brown wrote:
> jbb at pinball3:~
> (1): % otool -L /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib:
> 	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib (compatibility version 1.0.0, current version 1.0.0)
> 	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib (compatibility version 1.0.0, current version 1.0.0)
> 	/usr/lib/libz.1.dylib (compatibility version 1.0.0, current version 1.2.3)
> 	/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 125.0.1)

Clearly, your crashing apps want libTIFF.dylib version 1.0.0 which they have a full path to (inside of ImageIO). For whatever reason, dyld lis loading some other libTIFF.dylib which has version 0.0.0

As has been said before, you probably have a DYLD_* environment variable set that is causing your problem.

I know you haven't found the problem libTIFF.dylib, but obviously the dynamic linker is finding one that is _not_ the one in ImageIO.

--
Daniel J. Luke                                                                   
+========================================================+                        
| *---------------- dluke at geeklair.net ----------------* |                          
| *-------------- http://www.geeklair.net -------------* |                          
+========================================================+                        
|   Opinions expressed are mine and do not necessarily   |                          
|          reflect the opinions of my employer.          |                          
+========================================================+





More information about the macports-users mailing list