Re: [Pythonmac-SIG] Universal binary build of py2app application won't run on 10.3.9

2006-06-29 Thread Bob Ippolito
On Jun 29, 2006, at 12:04 PM, Christopher Barker wrote: > Michael Glassford wrote: >>> """ Note that dylibs and frameworks in vendor locations (/System and /usr - except for /usr/local) are NOT included in your application bundle. >>> """ > > Would it be hard to put a little

Re: [Pythonmac-SIG] Universal binary build of py2app application won't run on 10.3.9

2006-06-29 Thread Michael Glassford
Ronald Oussoren wrote: > On 28-jun-2006, at 20:56, Bob Ippolito wrote: > >> >> It's not really trivial, but it's the only option you have unless >> someone else does it first. It sounds like Ronald will probably >> create another 2.4.3 installer in the future that fixes this and a >> few other iss

Re: [Pythonmac-SIG] Universal binary build of py2app application won't run on 10.3.9

2006-06-29 Thread Christopher Barker
Michael Glassford wrote: >> """ >>> Note that dylibs and frameworks >>> in vendor locations (/System and /usr - except for /usr/local) are NOT >>> included in your application bundle. >> """ Would it be hard to put a little hack in Py2App to include that particular lib, even though it is in /usr?

Re: [Pythonmac-SIG] Universal binary build of py2app application won't run on 10.3.9

2006-06-29 Thread Michael Glassford
Bob Ippolito wrote: > On Jun 29, 2006, at 8:20 AM, Michael Glassford wrote: > >> Bob Ippolito wrote: >>> The bz2 module is part of the Python distribution. The best route >>> would be to download the Python source, extract the source for the >>> bz2 extension and create a standalone setup.py for i

Re: [Pythonmac-SIG] Universal binary build of py2app application won't run on 10.3.9

2006-06-29 Thread Bob Ippolito
On Jun 29, 2006, at 8:20 AM, Michael Glassford wrote: > Bob Ippolito wrote: >> The bz2 module is part of the Python distribution. The best route >> would be to download the Python source, extract the source for the >> bz2 extension and create a standalone setup.py for it. Tweak it such >> that it

Re: [Pythonmac-SIG] Universal binary build of py2app application won't run on 10.3.9

2006-06-29 Thread Michael Glassford
Bob Ippolito wrote: > The bz2 module is part of the Python distribution. The best route > would be to download the Python source, extract the source for the > bz2 extension and create a standalone setup.py for it. Tweak it such > that it links to a copy of libbz2 that you've compiled statical