2009-09-03 09:54:17 UTC
I have modified the sourcecode of physics.h and now it seems to compile and run the demos and hungarr. I wasn't sure about sound but hungarr seems to play sounds correctly. Stil I don't know if there are errors of some kind, I'll check it more deeply later. Are there any files for errors, crashes and such like in pycap?
About the modification of the sourcecode I replaced
#include <linux/types.h>
typedef __u32 uint32_t;
with
#ifdef linux
#include <linux/types.h>
typedef __u32 uint32_t;
#else
#include <sys/types.h>
#endif
Oh! almost forgot to mention that I'm using CVS code pulled yesterday. As I said, I'll keep testing.