You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is on OS X/perl5.18.2:
Alien-sdl uses external libraries, but it seems to pick libraries inconsistently. It finds them all, but the versioning chosen is not consistent at all. This is from Alien/SDL/ConfigData.pm:
/sw is where I put my locally built external libraries (via Fink). Notice that some libraries get chosen with their unversioned SONAME (libpng.dylib), others get chosen with the single versioned SONAME (libtiff.5.dylib), and others use the fully versioned SONAME (libexpat.1.5.2.dylib). Unversioned and fully versioned dylibs are not guaranteed to always be present and the process should always use the versioning that matches the install_name of the dylib.
Also, the expat search is finding /usr/lib/libexpat.1.5.2.dylib, when there's a preferred /sw/lib/libexpat.1.6.5.dylib available (should be using /sw/lib/libexpat.1.dylib anyway).
The text was updated successfully, but these errors were encountered:
This is on OS X/perl5.18.2:
Alien-sdl uses external libraries, but it seems to pick libraries inconsistently. It finds them all, but the versioning chosen is not consistent at all. This is from Alien/SDL/ConfigData.pm:
/sw
is where I put my locally built external libraries (via Fink). Notice that some libraries get chosen with their unversioned SONAME (libpng.dylib
), others get chosen with the single versioned SONAME (libtiff.5.dylib
), and others use the fully versioned SONAME (libexpat.1.5.2.dylib
). Unversioned and fully versioned dylibs are not guaranteed to always be present and the process should always use the versioning that matches the install_name of the dylib.Also, the expat search is finding
/usr/lib/libexpat.1.5.2.dylib
, when there's a preferred/sw/lib/libexpat.1.6.5.dylib
available (should be using/sw/lib/libexpat.1.dylib
anyway).The text was updated successfully, but these errors were encountered: