Sam Lantinga <slouken@libsdl.org> [Mon, 21 Mar 2011 16:36:17 -0700] rev 5502
Fixed bug: No right mouse button events during FullScreen Mac OS
Something inside setStyleMask mucks with the view responder chain, which prevents the listener from hearing the right mouse down events. We just reset the listener after changing the style to fix this.
Sam Lantinga <slouken@libsdl.org> [Mon, 21 Mar 2011 13:33:53 -0700] rev 5501
Fixed compiler warning
Sam Lantinga <slouken@libsdl.org> [Mon, 21 Mar 2011 13:33:29 -0700] rev 5500
Fixed compiler warning
Ken Rogoway <ken@rogoway.com> [Sun, 13 Mar 2011 22:38:41 -0500] rev 5499
Split SDL_BlitScaled into SDL_UpperBlitScaled and SDL_LowerBlitScaled.
Fixed issue when calling SDL_BlitScaled() directly with src or dst rectangles that were out of bounds.
Sam Lantinga <slouken@libsdl.org> [Tue, 15 Mar 2011 23:26:22 -0700] rev 5498
Make it possible to run "make dist" from a separate build directory.
Sam Lantinga <slouken@libsdl.org> [Tue, 15 Mar 2011 22:42:26 -0700] rev 5497
Added quotes to the post-build copy commands
Sam Lantinga <slouken@libsdl.org> [Tue, 15 Mar 2011 22:41:14 -0700] rev 5496
Fixed dependencies for testcursor
Sam Lantinga <slouken@libsdl.org> [Tue, 15 Mar 2011 21:44:56 -0700] rev 5495
Removed obsolete window positioning code.
Sam Lantinga <slouken@libsdl.org> [Tue, 15 Mar 2011 21:40:57 -0700] rev 5494
Fixed accidental line deletion.
Sam Lantinga <slouken@libsdl.org> [Tue, 15 Mar 2011 21:37:01 -0700] rev 5493
Do not break application's signal handler installed with SA_SIGINFO
Gleb Natapov to sdl
If application installs SIGINT/SIGTERM signal handler with
sigaction(SA_SIGINFO) syscall before initializing SDL, after
initialization
of SDL signal handler will be reinstalled without SA_SIGINFO flag which
brings havoc when the signal handler is called. The breakage is done by
SDL_QuitInit()/SDL_QuitQuit() function. They use signal() to detect that
signal handler is already installed even in sigaction() is available.