Re: [Pythonmac-SIG] Pysqlite build problem

2006-10-15 Thread Ronald Oussoren
On Oct 15, 2006, at 11:43 PM, [EMAIL PROTECTED] wrote: I'm trying to get pysqlite 2.3.2 built on my Mac (OSX 10.4.8, gcc-4.0, Python 2.4.4c1). Sqlite built and installed into /usr/local just fine. I adjusted setup.cfg appropriately: [build_ext] define= include_dirs=/usr/local/

Re: [Pythonmac-SIG] Pysqlite build problem

2006-10-15 Thread skip
skip> I'm trying to get pysqlite 2.3.2 built on my Mac (OSX 10.4.8, skip> gcc-4.0, Python 2.4.4c1) ... skip> stdarg.h: No such file or directory/usr/include/stdarg.h:4:25: skip> error: stdarg.h: No such file or directory I updated setup.cfg to include /usr/lib/gcc

[Pythonmac-SIG] Pysqlite build problem

2006-10-15 Thread skip
I'm trying to get pysqlite 2.3.2 built on my Mac (OSX 10.4.8, gcc-4.0, Python 2.4.4c1). Sqlite built and installed into /usr/local just fine. I adjusted setup.cfg appropriately: [build_ext] define= include_dirs=/usr/local/include:/usr/include library_dirs=/usr/local/lib:/usr/lib

Re: [Pythonmac-SIG] Building plugins with py2app

2006-10-15 Thread Dethe Elza
On 15-Oct-06, at 1:07 PM, Ronald Oussoren wrote: > Ok, nice to hear that. PyObjC has changed my life for the better, and I'm still just scratching the surface. The hard part is that I've become dependent on it, so when something doesn't work, everything I'm doing comes to a screeching halt

Re: [Pythonmac-SIG] Building plugins with py2app

2006-10-15 Thread Ronald Oussoren
On Oct 15, 2006, at 8:23 PM, Dethe Elza wrote: On 15-Oct-06, at 9:26 AM, Ronald Oussoren wrote: I've done a clean install of python, py2app, PyObjC and related packages and can now reproduce your problem. Thanks so much! I hope I've also fixed the problem in revision 47 of py2app. It t

Re: [Pythonmac-SIG] Building plugins with py2app

2006-10-15 Thread Dethe Elza
On 15-Oct-06, at 9:26 AM, Ronald Oussoren wrote: > I've done a clean install of python, py2app, PyObjC and related > packages and can now reproduce your problem. Thanks so much! > I hope I've also fixed the problem in revision 47 of py2app. It > turns out the app stub and bundle stub use a

Re: [Pythonmac-SIG] Building plugins with py2app

2006-10-15 Thread Ronald Oussoren
On Oct 13, 2006, at 7:35 PM, Dethe Elza wrote: One thing that you could try: insert 'import sys; print sys.path' at the top of __boot__.py (in the Resources directory of the saver) to see the value of sys.path. That value seems to be wrong. This is a very good clue. Here is the sys.pa