Changes between Initial Version and Version 1 of Ticket #29327


Ignore:
Timestamp:
Apr 30, 2011, 9:09:17 PM (13 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Fixed WikiFormatting and Cc.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29327

    • Property Cc jmr removed
    • Property Owner changed from macports-tickets@… to jmr@…
  • Ticket #29327 – Description

    initial v1  
    11The update to flew 1.6.0 breaks pymol which now depends on it. After updating glew to 1.6.0, the pre-existing pymol package fails with the error...
    22
     3{{{
    34[MacPro:~] howarth% pymol
    45Traceback (most recent call last):
     
    1011  Referenced from: /opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/pymol/_cmd.so
    1112  Reason: image not found
     13}}}
    1214
    1315The trivial fix is to force pymol to be rebuilt with a revision bump...
    1416
     17{{{
    1518[MacPro:python2.6/site-packages/pymol] howarth% otool -L _cmd.so
    1619_cmd.so:
     
    2225        /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 52.0.0)
    2326        /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 159.0.0)
     27}}}
    2428
    2529however the glew package also seems flawed. The installed libraries have no settings for the compatibility and current versions on the shared library...
    2630
     31{{{
    2732[MacPro:/opt/local/lib] howarth% otool -L libGLEW.1.6.0.dylib
    2833libGLEW.1.6.0.dylib:
     
    3136        /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL (compatibility version 1.0.0, current version 1.0.0)
    3237        /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 159.0.0)
     38}}}
    3339
    3440Also it is unclear if we should be installing a libGLEW.1.6.dylib only or also a libGLEW.1.dylib to have everything using glew linked to libGLEW.1.dylib and ease the transition to future 1.x releases. Fink takes this approach with...
    3541
     42{{{
    3643[MacPro:/sw/lib] howarth% otool -L libGLEW.1.5.8.dylib
    3744libGLEW.1.5.8.dylib:
     
    4451        /usr/X11/lib/libX11.6.dylib (compatibility version 10.0.0, current version 10.0.0)
    4552        /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 159.0.0)
     53}}}