Sam Lantinga <slouken@libsdl.org> [Fri, 28 Sep 2012 03:18:18 -0700] rev 6491
Fixed bug 1587 - "aclocal" fails to generate a sufficient "aclocal.m4"
Cecil Curry 2012-08-27 16:55:12 PDT
Allow "aclocal" to find the "AC_CHECK_DEFINE" macro.
On running:
rm aclocal.m4
libtoolize --install --copy --force
aclocal -I acinclude
autoconf -I acinclude
The former three commands succeed, but "autoconf" fails with:
configure.in:198: error: possibly undefined macro: AC_CHECK_DEFINE
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
"aclocal" fails to find AC_CHECK_DEFINE and hence add such macro to
"aclocal.m4". Here is why:
* "acinclude/ac_check_define.m4" defines AC_CHECK_DEFINE via define() rather
than AC_DEFUN().
* "aclocal" fails to find macros defined via define().
Sam Lantinga <slouken@libsdl.org> [Fri, 28 Sep 2012 02:43:13 -0700] rev 6490
Fixed memory leak in an error case
Sam Lantinga <slouken@libsdl.org> [Fri, 28 Sep 2012 02:33:42 -0700] rev 6489
Fixed bug 1496 - SDLView not created for a Cocoa window, resulting in missing right mouse clicks
When you create an nswindow it automatically gets a default view, so we'll just create an SDLView if we're creating the window.
Sam Lantinga <slouken@libsdl.org> [Fri, 28 Sep 2012 02:15:44 -0700] rev 6488
We don't always get the focus change events. Argh!
Sam Lantinga <slouken@libsdl.org> [Fri, 28 Sep 2012 01:51:51 -0700] rev 6487
Simplified the NetWM code a little bit, and it now operates on X11 Window
Sam Lantinga <slouken@libsdl.org> [Fri, 28 Sep 2012 01:36:26 -0700] rev 6486
Don't set the hidden netwm state, that would mean we don't want to be shown, which is bad.
Sam Lantinga <slouken@libsdl.org> [Fri, 28 Sep 2012 01:15:48 -0700] rev 6485
Pass the flags in, not the window pointer!
Sam Lantinga <slouken@libsdl.org> [Fri, 28 Sep 2012 01:11:30 -0700] rev 6484
Don't base our resizable state on what the window manager decided, instead we want to base it on the size hints which we set.
Sam Lantinga <slouken@libsdl.org> [Fri, 28 Sep 2012 00:57:47 -0700] rev 6483
Only map/unmap if the window isn't already in the correct state.
Sam Lantinga <slouken@libsdl.org> [Fri, 28 Sep 2012 00:40:47 -0700] rev 6482
Fixed bug where desktop resolution was never restored if Xinerama was enabled.