Sam Lantinga <slouken@libsdl.org> [Sun, 02 Jan 2005 05:05:21 +0000] rev 1019
Date: Fri, 31 Dec 2004 04:14:09 +0900
From: Hayashi Naoyuki
Subject: SDL patch for Tru64 UNIX 4.0X
SDL-1.2.8 support only Tru64 5.X.
This patch is for Tru64 UNIX 4.X.(tested on Tru64 UNIX 4.0G and 5.1B)
SDL-1.2.8/configure.in:
ld doesn't accept -pthread option.
cc -pthread has same effect as -D_REENTRANT when compiling,
and has same effect as -lpthread -lexc when linking.
SDL-1.2.8/include/begin_code.h:
Old Compaq C Compiler accept not inline but __inline.
SDL-1.2.8/src/audio/SDL_mixer_MMX.c:
SDL-1.2.8/src/audio/SDL_mixer_MMX.h:
Old Compaq C Compiler doesn't accept //.
SDL-1.2.8/src/cdrom/osf/SDL_syscdrom.c:
When becoming Tru64 v5.0 from Tru64 v4.0,
the arrangement of the cd-rom device was changed.
Sam Lantinga <slouken@libsdl.org> [Mon, 27 Dec 2004 20:03:53 +0000] rev 1018
Date: Fri, 24 Dec 2004 23:32:06 -0500
From: Mike Frysinger
Subject: [SDL] minor fix for gcc-2.x building
in src/video/directfb/SDL_DirectFB_video.c, some variables are not declared at
the beginning of scope ... newer gcc's will accept this, but gcc-2.x does not
find attached a simple patch by Matt Taylor to resolve this
http://bugs.gentoo.org/show_bug.cgi?id=75392
Sam Lantinga <slouken@libsdl.org> [Sun, 19 Dec 2004 22:04:44 +0000] rev 1017
*** empty log message ***
Sam Lantinga <slouken@libsdl.org> [Thu, 16 Dec 2004 06:39:54 +0000] rev 1016
*** empty log message ***
Sam Lantinga <slouken@libsdl.org> [Thu, 16 Dec 2004 05:29:55 +0000] rev 1015
*** empty log message ***
Sam Lantinga <slouken@libsdl.org> [Wed, 15 Dec 2004 01:02:20 +0000] rev 1014
Added change log notes
Sam Lantinga <slouken@libsdl.org> [Tue, 14 Dec 2004 18:23:27 +0000] rev 1013
Date: Tue, 14 Dec 2004 12:08:30 +0100
From: Marcin Konicki
Subject: Re: [SDL] SDL 1.2.8 Prerelease
I'm sending small fix for BeOS, which prevents filling up SDL's message
queue too fast.
Without it, SDL receives "key down" messages from BeOS code, for each key
repeat (BeOS handles key repeats itself, and application can check if
received "key down" message from BeOS is first time key down, or if it's
repeat, and which repeat it is). Since there is no way for "sdl driver" to
turn off "default" SDL's key-repeat mechanism, they were working both at
the same time (and queue could be filled up very fast).
So this patch removes handling "key down" message from BeOS if it's
key_repeat "type".
Sam Lantinga <slouken@libsdl.org> [Tue, 14 Dec 2004 06:20:49 +0000] rev 1012
Date: Mon, 13 Dec 2004 21:28:18 -0500
From: Jonathan Atkins
Subject: [SDL] SDL_SaveBMP width bugfix
this fixes the pitch versus width difference that can happen
(especially for 8bit and 24bit (with the exact RGBAmasks) surfaces)
when you use SDL_SaveBMP. The problem was the pitch was used
instead of the width, which in some cases is much wider than the
screen area you really want to save...making for ugly crud on the
saved image borders.
This code has been tested with & without pitch overhangs...and
with the right masks for 24 bit surfaces.
I tested 8,15,16,24,32-0RGB,32-RGBA(with no SDL_SRCALPHA flag).
Sam Lantinga <slouken@libsdl.org> [Mon, 13 Dec 2004 08:49:17 +0000] rev 1011
*** empty log message ***
Sam Lantinga <slouken@libsdl.org> [Mon, 13 Dec 2004 08:00:14 +0000] rev 1010
Whoops. :)