JeffreyDanowitz wrote:
When I look at config.py and config_darwin.py and setup and setup.py, there are references to includes and stuff from where the SDL was installed by brew. However, there are references to the Framework in /Library/Framework.
Can you show us the output you got from configuring pygame? It should tell you what libraries it found and didn't find. Also, be aware that to be able to load image files other than bmp, you not only need SDL_image, but also the relevant library for handling that format, e.g. libpng, libjpeg. If those libraries are being found, you should get the following lines in the output from ./configure: PNG : found JPEG : found -- Greg