Changes between Initial Version and Version 4 of Ticket #1508


Ignore:
Timestamp:
Mar 24, 2016, 12:58:20 PM (8 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1508

    • Property Status changed from new to closed
    • Property Cc ryandesign@… added
    • Property Priority changed from Expected to Normal
    • Property Resolution changed from to fixed
    • Property Port libpng added
  • Ticket #1508 – Description

    initial v4  
    11libpng doesn't ranlib libpng.a.
    22So you can (randomly) get the following error:
    3 ld: table of contents for archive: /opt/local/lib/libpng.a is out of date; rerun
    4 ranlib(1) (can't load from it)
     3{{{
     4ld: table of contents for archive: /opt/local/lib/libpng.a is out of date; rerun ranlib(1) (can't load from it)
     5}}}
    56
    67Actually, it copies libpng.a during the installation phase without preserving
     
    1213The patch below provides a simple fix.
    1314
     15{{{
    1416Index: Portfile
    1517===================================================================
     
    2628+               system "ranlib ${destroot}${prefix}/lib/libpng.a"
    2729+       }
     30}}}