Ryan C. Gordon [Tue, 07 Apr 2015 22:49:56 -0400] rev 9469
Wayland: changed a few "SetError(); return -1;" to "return SetError()".
Emmanuel Gil Peyrot [Sat, 28 Mar 2015 19:43:46 +0100] rev 9468
Wayland: Specify the output we want to put our window on.
Fixes Bugzilla #2803.
Emmanuel Gil Peyrot [Wed, 18 Mar 2015 01:14:45 +0100] rev 9467
Wayland: Properly discover displays and their modes.
Fixes Bugzilla #2913.
Ryan C. Gordon [Tue, 07 Apr 2015 21:52:22 -0400] rev 9466
CMake: Dependency variable for FUSIONSOUND_SHARED was wrong (thanks, Kaleb!).
Fixes Bugzilla #2055.
Ryan C. Gordon [Tue, 07 Apr 2015 20:01:43 -0400] rev 9465
CMake: fix CHECK_OBJC_SOURCE_COMPILES to work with GCC (thanks, Ivan!).
Apparently -ObjC works with Clang, but -x objective-c works with both.
Fixes Bugzilla #2392.
Philipp Wiesemann [Tue, 07 Apr 2015 23:00:56 +0200] rev 9464
Fixed typo in gesture README.
Ryan C. Gordon [Tue, 07 Apr 2015 00:39:16 -0400] rev 9463
Another attempt to make MSVC's /W4 warning level cooperate with SDL_assert.
Fixes Bugzilla #2733.
Alex Baines [Fri, 20 Mar 2015 19:47:03 +0000] rev 9462
Fix DBus error message if IBus couldn't be initialized.
Ryan C. Gordon [Mon, 06 Apr 2015 18:26:13 -0400] rev 9461
Refuse to make a window that's too large. Some systems (x11) freak out at this.
Fixes Bugzilla #2255.
Edward Rudd [Tue, 10 Feb 2015 16:28:56 -0500] rev 9460
the last parameter of XChangeProperty is the number of elements.. and when the element format is 32.. the element is "long" so we have 5 long elements here.
Yes this seems confusing as on mac+linux Long is either 32 or 64bits depending on the architecture, but this is how the X11 protocol is defined. Thus 5 is the correct value for the nelts here. Not 5 or 10 depending on the architecture.
More info on the confusion https://bugs.freedesktop.org/show_bug.cgi?id=16802