diff options
author | Tim Angus <tim@ngus.net> | 2007-11-03 00:06:23 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2007-11-03 00:06:23 +0000 |
commit | c6a9027b7cf0d35401cae346b67ca95c5f55b4a1 (patch) | |
tree | 3e41bfc88a8fb845cff921ccd62f5b3489fee703 /src/sdl/sdl_glimp.c | |
parent | 5c3429cb21861e253d9a80fa07f6487013c99109 (diff) |
* Merge ioq3-r1204
Diffstat (limited to 'src/sdl/sdl_glimp.c')
-rw-r--r-- | src/sdl/sdl_glimp.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/sdl/sdl_glimp.c b/src/sdl/sdl_glimp.c index 1f5c3434..cb3e8e0d 100644 --- a/src/sdl/sdl_glimp.c +++ b/src/sdl/sdl_glimp.c @@ -20,7 +20,11 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA =========================================================================== */ -#include "SDL.h" +#ifdef USE_LOCAL_HEADERS +# include "SDL.h" +#else +# include <SDL.h> +#endif #if !SDL_VERSION_ATLEAST(1, 2, 10) #define SDL_GL_ACCELERATED_VISUAL 15 @@ -30,7 +34,11 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #endif #ifdef SMP -#include "SDL_thread.h" +# ifdef USE_LOCAL_HEADERS +# include "SDL_thread.h" +# else +# include <SDL_thread.h> +# endif #endif #include <stdarg.h> |