Changes between Initial Version and Version 1 of Ticket #33448


Ignore:
Timestamp:
Mar 2, 2012, 10:39:02 PM (12 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Remember to use WikiFormatting.

The universal variant work fine on Snow Leopard; I would not have committed it if I had not gotten it to work.

Could you please attach a main.log of the failure you experience?

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33448

    • Property Port libvpx added
  • Ticket #33448 – Description

    initial v1  
    33libvpx/Portfile uses muniversal, but the package uses a custom configure script which doesn't recognize the --host=... argument.
    44Consequently, merger_host should be set to "" for all archs. Portfile should have
     5{{{
    56    foreach my_arch ${configure.universal_archs} {
    67        set merger_host(${my_arch}) ""
     
    89        set merger_configure_args(${my_arch}) --target=$my_targets(${my_arch})-${os.platform}${os.major}-gcc
    910    }
     11}}}
    1012instead of
     13{{{
    1114    foreach my_arch ${configure.universal_archs} {
    1215        set merger_configure_args(${my_arch}) --target=$my_targets(${my_arch})-${os.platform}${os.major}-gcc
    1316    }
     17}}}
    1418