Changes between Version 109 and Version 110 of ProblemHotlist


Ignore:
Timestamp:
Apr 8, 2014, 12:42:50 PM (10 years ago)
Author:
ctreleaven (Craig Treleaven)
Comment:

obsolete, addressed by rev-upgrade

Legend:

Unmodified
Added
Removed
Modified
  • ProblemHotlist

    v109 v110  
    208208Either way, the cleanest solution at this point is to follow the [http://guide.macports.org/chunked/installing.macports.uninstalling.html MacPorts uninstallation instructions]. This will remove the 3rd-party software package that installed itself unannounced into MacPorts' prefix, and/or ports installed by your prior MacPorts installation. Then you can [http://guide.macports.org/chunked/installing.macports.html install MacPorts] again.
    209209
    210 == A command failed to run with a message referring to libpng12.0.dylib == #libpng
    211 
    212 '''Error message:'''[[BR]]
    213 {{{
    214 dyld: Library not loaded: /opt/local/lib/libpng12.0.dylib
    215 }}}
    216 
    217 '''Explanation:'''[[BR]]
    218 When the libpng port was updated from 1.2.x to 1.4.x, the libpng library version changed. Software always links against a specific library version, so the ports you currently have installed that depend on libpng are linked against a now-nonexistent version of the libpng library. To fix this problem, all ports that depend on libpng will need to be rebuilt so that they link with the new version of the libpng library. This may be quite a few ports.
    219 
    220 '''Workaround:'''[[BR]]
    221 We have tried to find all affected ports and incremented the revision number. In most cases a simple upgrade should get them all fixed.
    222 
    223 {{{
    224 sudo port selfupdate
    225 sudo port upgrade outdated
    226 }}}
    227 
    228 If this does not help, force a rebuild of the port in question by using the following command:
    229 
    230 {{{
    231 sudo port -n upgrade --force $portname
    232 }}}
    233 
    234 You should also [http://guide.macports.org/#project.tickets file a ticket] against the port in question.
    235 
    236210== A port failed to build with a message referring to 1/lib: No such file or directory == #lib-spaces
    237211