Posts

Showing posts from February, 2005

Pygame progress.

I got pygame compiling with python2.4 and mingw+msys today!! Not too many problems were encountered. It needed one distutils patch to make correct paths to feed to gcc. The msys shell needs paths like /c/Python24/lib not c:\Python24\lib. As well as a couple of little fixes in two source files for things that C can't do but a C++ compiler on windows can do. Pete was using the vc6 C++ compiler I think. After those couple of things I had most of the examples up and running :) Now I need to do a few more fixes. First is getting the numeric modules surfarray and soundarray working. I need to download the numeric stuff for that to happen. Next is to fix up the config.py file and the config_mingw.py file to generate an acceptable Setup file. As well as detecting dependencies correctly with msys. Then comes the task of finding all the api differences in the latest SDL. I also need to compile the latest SDL. Finally we need integrate and test all the patches that hav