Eugene Marcotte <emarcotte <at> gmail.com> writes: > I get an error: > > "/usr/include/SDL/begin_code.h", line 126: Error: #define and #undef are > not legal for predefined macros. > > which is this line: > > #define __inline__ inline > Try replacing that with the following: #ifndef __inline__ #define __inline__ inline #endif