Re: [Pythonmac-SIG] Anyone tried to build python or extensions with XCode 4.0?

2011-03-20 Thread Jeff Senn
On Mar 19, 2011, at 5:50 PM, Ronald Oussoren wrote: > > On 18 Mar, 2011, at 21:03, Mark Livingstone wrote: >> >> I think Apple has just decided to draw a line in the sand with XCode >> 4. They are still supporting XCode3 as can be seen by the 3.2.6 >> release after the release of 4.0.0. I am wri

Re: [Pythonmac-SIG] Anyone tried to build python or extensions with XCode 4.0?

2011-03-18 Thread Jeff Senn
First, you should become aware of this: http://www.macstories.net/news/developers-xcode-4-will-drop-support-for-10-5-sdk/ In particular the difficult part (i.e. beyond just finding (restoring?) the right library and header files for the SDKs) is that the toolset in XCode 4 has the PPC support r

Re: [Pythonmac-SIG] bugs in _Qtmodule

2006-10-04 Thread Jeff Senn
On Oct 4, 2006, at 5:12 AM, Jack Jansen wrote: > > A patch won't help much, because _Qtmodule is generated (through > qtscan.py/qtsupport.py). I assume that there's a one-line mistake > in qtsupport, which leads to one C type being handled as CmpObj in > stead of CmpInstObj. Ah, I see. Yes

[Pythonmac-SIG] bugs in _Qtmodule

2006-10-04 Thread Jeff Senn
While attempting to use the QuickTime sequence grabber interfaces from Python I notice that there is some confusion between Component and ComponentInstance in _Qtmodule.c. I believe most of the instances of "CmpObj_{Convert,New}" in _Qtmodule should actually be "CmpInstObj_{Convert,New}" (There a