Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=7606618
By: driadan
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.
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=709544
|