Estoy tratando de instalar psycopg2 en Mac OS 10.6.3; dice que no puede encontrar "stdarg.h" pero puedo ver que está allí; ¿Qué tengo que hacer?

Estoy tratando desesperadamente de instalar con éxito psycopg2 pero sigo encontrando errores. El último parece implicar que no se trata de encontrar "stdarg.h" (ver el código a continuación). Sin embargo, puedo ver con mis propios ojos que existe un archivo llamado stdarg.h en /Developer/SDKs/MacOSX10.4u.sdk/usr/include/stdarg.h (donde dice que no puede encontrar nada), así que he No tengo idea de qué hacer al respecto.

Estoy ejecutando Mac OS 10.6.3 y en los últimos días me he asegurado de tener las últimas herramientas de desarrollo de SO.

Tengo Python 2.6.2 y PostgreSQL 8.4 si eso hace alguna diferencia.

python setup.py install    
running install
running build
running build_py
running build_ext
building 'psycopg2._psycopg' extension
creating build/temp.macosx-10.3-fat-2.6
creating build/temp.macosx-10.3-fat-2.6/psycopg
gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -fno-common -dynamic -DNDEBUG -g -O3 -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.2.1 (dt dec ext pq3)" -DPG_VERSION_HEX=0x080404 -DPSYCOPG_EXTENSIONS=1 -DPSYCOPG_NEW_BOOLEAN=1 -DHAVE_PQFREEMEM=1 -DHAVE_PQPROTOCOL3=1 -I/Library/Frameworks/Python.framework/Versions/2.6/include/python2.6 -I. -I/opt/local/include/postgresql84 -I/opt/local/include/postgresql84/server -c psycopg/psycopgmodule.c -o build/temp.macosx-10.3-fat-2.6/psycopg/psycopgmodule.o
In file included from /Library/Frameworks/Python.framework/Versions/2.6/include/python2.6/unicodeobject.h:4,
             from /Library/Frameworks/Python.framework/Versions/2.6/include/python2.6/Python.h:85,
             from psycopg/psycopgmodule.c:27:
/Developer/SDKs/MacOSX10.4u.sdk/usr/include/stdarg.h:4:25: error: stdarg.h: No such file or directory
In file included from /Library/Frameworks/Python.framework/Versions/2.6/include/python2.6/unicodeobject.h:4,
             from /Library/Frameworks/Python.framework/Versions/2.6/include/python2.6/Python.h:85,
             from psycopg/psycopgmodule.c:27:
/Developer/SDKs/MacOSX10.4u.sdk/usr/include/stdarg.h:4:25: error: stdarg.h: No such file or directory
lipo: can't figure out the architecture type of: /var/folders/MQ/MQ-tWOWWG+izzuZCrAJpzk+++TI/-Tmp-//ccakFhRS.out
error: command 'gcc' failed with exit status 

Respuestas a la pregunta(3)

Su respuesta a la pregunta