Sam Lantinga <slouken@libsdl.org> [Sat, 29 Dec 2007 06:09:25 +0000] rev 2284
Fixed bug #464
Added X1/X2 button constants
Sam Lantinga <slouken@libsdl.org> [Sat, 29 Dec 2007 03:25:11 +0000] rev 2283
Merged revision 3472 from SDL 1.2, fixing bug #493
Sam Lantinga <slouken@libsdl.org> [Fri, 28 Dec 2007 20:42:06 +0000] rev 2282
Fixed fatbuild.sh script for building on Mac OS X 10.5
Sam Lantinga <slouken@libsdl.org> [Fri, 28 Dec 2007 18:16:42 +0000] rev 2281
Date: Wed, 14 Nov 2007 22:20:27 -0500
From: Calvin Vette
Subject: Fix to compile SDL-1.2 SVN on OS X Leopard
I found I needed to add a conditional check for Leopard to compile
cleanly on 1.2-SVN (20071114):
#include <AudioUnit/AudioUnit.h>
#ifdef AVAILABLE_MAC_OS_X_VERSION_10_5_AND_LATER
#include <AudioUnit/AUNTComponent.h>
#endif
where there is now just:
#include <AudioUnit/AudioUnit.h>
Sam Lantinga <slouken@libsdl.org> [Fri, 28 Dec 2007 18:08:43 +0000] rev 2280
Merged changeset 3463 from SDL 1.2, fixed compile error with Intel compiler.
Sam Lantinga <slouken@libsdl.org> [Fri, 28 Dec 2007 08:07:57 +0000] rev 2279
Merged revision 3458 from SDL 1.2, fixed Borland C alloca() prototype
Sam Lantinga <slouken@libsdl.org> [Fri, 28 Dec 2007 07:54:35 +0000] rev 2278
Merged revision 3455 from SDL 1.2, fixing documentation typo.
Bob Pendleton <bob@pendleton.com> [Thu, 13 Dec 2007 03:53:02 +0000] rev 2277
Added SDL_rect.h and SDL_surface.h to the initialization of HDRS in Makefile.in. Because they were missing those header files were not being installed and
./configure in the test directory was erroring off.
Ryan C. Gordon <icculus@icculus.org> [Tue, 25 Sep 2007 10:01:10 +0000] rev 2276
Merged r3449:3450 from branches/SDL-1.2: SDL_config.h.in Linux joystick fix.
Sam Lantinga <slouken@libsdl.org> [Mon, 10 Sep 2007 12:20:02 +0000] rev 2275
Split out the SDL_rect and SDL_surface functions into their own headers.
Removed unused count from the dirty rect list.