OSX Mountain Lion support for python building

VE
Vitor Espíndola
Fri, Aug 17, 2012 6:34 PM

The problem solved on changeset https://trac.pjsip.org/repos/changeset/3888 seens to occur again on osx 10.8 version.

The fix on changeset listed below handle only with 10.7 version and not 10.8(Mountain Lion). I think that after 10.7 version the framework will always be AudioUnit.

  • OS X Lion support

  • if platform.mac_ver()[0].startswith("10.7"):
  •    extra_link_args += ["-framework", "AudioUnit"]  
    

Att,

--
Vitor Espíndola

The problem solved on changeset https://trac.pjsip.org/repos/changeset/3888 seens to occur again on osx 10.8 version. The fix on changeset listed below handle only with 10.7 version and not 10.8(Mountain Lion). I think that after 10.7 version the framework will always be AudioUnit. + # OS X Lion support + if platform.mac_ver()[0].startswith("10.7"): + extra_link_args += ["-framework", "AudioUnit"] Att, -- Vitor Espíndola
M
Ming
Mon, Aug 20, 2012 6:02 AM

Hi Vitor,

Thanks for the report. I just fixed this in r4232
(https://trac.pjsip.org/repos/changeset/4232).

Regards,
Ming

On Sat, Aug 18, 2012 at 2:34 AM, Vitor Espíndola spongenit@gmail.com wrote:

The problem solved on changeset https://trac.pjsip.org/repos/changeset/3888
seens to occur again on osx 10.8 version.

The fix on changeset listed below handle only with 10.7 version and not
10.8(Mountain Lion). I think that after 10.7 version the framework will
always be AudioUnit.

  • OS X Lion support

  • if platform.mac_ver()[0].startswith("10.7"):
  •    extra_link_args += ["-framework", "AudioUnit"]
    

Att,

--
Vitor Espíndola


Visit our blog: http://blog.pjsip.org

pjsip mailing list
pjsip@lists.pjsip.org
http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org

Hi Vitor, Thanks for the report. I just fixed this in r4232 (https://trac.pjsip.org/repos/changeset/4232). Regards, Ming On Sat, Aug 18, 2012 at 2:34 AM, Vitor Espíndola <spongenit@gmail.com> wrote: > The problem solved on changeset https://trac.pjsip.org/repos/changeset/3888 > seens to occur again on osx 10.8 version. > > The fix on changeset listed below handle only with 10.7 version and not > 10.8(Mountain Lion). I think that after 10.7 version the framework will > always be AudioUnit. > > + # OS X Lion support > + if platform.mac_ver()[0].startswith("10.7"): > + extra_link_args += ["-framework", "AudioUnit"] > > Att, > > -- > Vitor Espíndola > > _______________________________________________ > Visit our blog: http://blog.pjsip.org > > pjsip mailing list > pjsip@lists.pjsip.org > http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org >