# HG changeset patch # User Sam Lantinga # Date 1252136034 0 # Node ID 08c5964f2a34357e27a3f683b04f0a113228fc4c # Parent 6c4736b446e8afb119f22d8c44d567c0b406ac60 Fixed a few issues compiling with Mac OS X 10.6 Unfortunately the audio and cdrom systems do not build at all, and if you disable those, SDL still fails to link with these errors: Undefined symbols: "_OBJC_IVAR_$_NSScreen._frame", referenced from: -[NSScreen(NSScreenAccess) setFrame:] in SDL_cocoamodes.o "_KLGetKeyboardLayoutProperty", referenced from: _UpdateKeymap in SDL_cocoakeyboard.o _UpdateKeymap in SDL_cocoakeyboard.o "_KLGetCurrentKeyboardLayout", referenced from: _UpdateKeymap in SDL_cocoakeyboard.o ld: symbol(s) not found diff -r 6c4736b446e8 -r 08c5964f2a34 include/SDL_opengl.h --- a/include/SDL_opengl.h Sat Sep 05 07:13:01 2009 +0000 +++ b/include/SDL_opengl.h Sat Sep 05 07:33:54 2009 +0000 @@ -22,6 +22,9 @@ /* This is a simple file to encapsulate the OpenGL API headers */ +#ifndef _SDL_opengl_h +#define _SDL_opengl_h + #include "SDL_config.h" #ifdef __WIN32__ @@ -37,6 +40,7 @@ #if defined(__MACOSX__) #include /* Header File For The OpenGL Library */ #include /* Header File For The GLU Library */ +#define __X_GL_H #else #include /* Header File For The OpenGL Library */ #include /* Header File For The GLU Library */ @@ -9307,3 +9311,7 @@ #endif /* *INDENT-ON* */ #endif /* NO_SDL_GLEXT */ + +#endif /* _SDL_opengl_h */ + +/* vi: set ts=4 sw=4 expandtab: */ diff -r 6c4736b446e8 -r 08c5964f2a34 src/video/x11/SDL_x11events.c --- a/src/video/x11/SDL_x11events.c Sat Sep 05 07:13:01 2009 +0000 +++ b/src/video/x11/SDL_x11events.c Sat Sep 05 07:33:54 2009 +0000 @@ -25,11 +25,12 @@ #include #include -#include "SDL_syswm.h" #include "SDL_x11video.h" #include "../../events/SDL_events_c.h" #include "../../events/SDL_mouse_c.h" +#include "SDL_syswm.h" + static void X11_DispatchEvent(_THIS) { diff -r 6c4736b446e8 -r 08c5964f2a34 src/video/x11/SDL_x11opengl.c --- a/src/video/x11/SDL_x11opengl.c Sat Sep 05 07:13:01 2009 +0000 +++ b/src/video/x11/SDL_x11opengl.c Sat Sep 05 07:33:54 2009 +0000 @@ -39,6 +39,10 @@ #define DEFAULT_OPENGL "libGL.so.1" #endif +#ifndef GLX_NONE_EXT +#define GLX_NONE_EXT 0x8000 +#endif + #ifndef GLX_ARB_multisample #define GLX_ARB_multisample #define GLX_SAMPLE_BUFFERS_ARB 100000 diff -r 6c4736b446e8 -r 08c5964f2a34 src/video/x11/SDL_x11window.c --- a/src/video/x11/SDL_x11window.c Sat Sep 05 07:13:01 2009 +0000 +++ b/src/video/x11/SDL_x11window.c Sat Sep 05 07:33:54 2009 +0000 @@ -21,7 +21,6 @@ */ #include "SDL_config.h" -#include "SDL_syswm.h" #include "../SDL_sysvideo.h" #include "../../events/SDL_keyboard_c.h" #include "../../events/SDL_mouse_c.h" @@ -35,6 +34,8 @@ #include "SDL_x11opengles.h" #endif +#include "SDL_syswm.h" + #define _NET_WM_STATE_REMOVE 0l #define _NET_WM_STATE_ADD 1l #define _NET_WM_STATE_TOGGLE 2l