Sam Lantinga <slouken@libsdl.org> [Fri, 24 May 2013 03:29:31 -0700] rev 7217
Fixed Windows build
Sam Lantinga <slouken@libsdl.org> [Fri, 24 May 2013 03:23:21 -0700] rev 7216
Added the beginning of automated tests for the standard C library routines.
Implemented more SDL_snprintf format specifiers.
Sam Lantinga <slouken@libsdl.org> [Thu, 23 May 2013 23:27:48 -0700] rev 7215
Added a newline to OutputDebugString(), fixes output on Visual Studio 2008
Edward Rudd <urkle@outoforder.cc> [Thu, 23 May 2013 18:45:14 -0400] rev 7214
Only free EventData if it's successfully retrieved.
- straight from http://who-t.blogspot.com/2009/07/xi2-and-xlib-cookies.html
- hopefully fixes random crash on some systems
Sam Lantinga <slouken@libsdl.org> [Tue, 21 May 2013 22:48:50 -0700] rev 7213
Fixed Haiku build issue with missing extension support.
The visibility attribute warnings in Haiku gl.h can be fixed by editing gl.h and changing the line:
#elif defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
to
#elif (defined(__GNUC__) && __GNUC__ >= 4) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
as described in: http://dev.haiku-os.org/ticket/8882
Ryan C. Gordon <icculus@icculus.org> [Wed, 22 May 2013 01:36:37 -0400] rev 7212
Patched to compile with older glext.h that don't have GL_NUM_EXTENSIONS.
Sam Lantinga <slouken@libsdl.org> [Tue, 21 May 2013 22:35:13 -0700] rev 7211
The Haiku install location fix needs to get into configure
Ryan C. Gordon <icculus@icculus.org> [Wed, 22 May 2013 01:31:04 -0400] rev 7210
Use glGetStringi() for extension lookup on OpenGL contexts >= version 3.0.
Fixes Bugzilla #1620.
Sam Lantinga <slouken@libsdl.org> [Tue, 21 May 2013 22:04:14 -0700] rev 7209
Fixed macro line endings after whitespace was fixed
Sam Lantinga <slouken@libsdl.org> [Tue, 21 May 2013 22:01:18 -0700] rev 7208
Fixed bug 1534 - SIGSEGV in SDL_ConvertSurface() for certain formats in SDL2
Don't assume that 8 bit formats are indexed.
Thanks to Gabriel Jacobo for research and potential patches.