Sam Lantinga [Sat, 03 Oct 2009 07:53:24 +0000] rev 410
Fixed bug #134
Updated mikmod to version 3.1.12
Sam Lantinga [Sat, 03 Oct 2009 03:53:45 +0000] rev 409
Fixed opening braces
Sam Lantinga [Sat, 03 Oct 2009 03:35:05 +0000] rev 408
Cleaned up compiler warnings
Sam Lantinga [Fri, 02 Oct 2009 14:16:12 +0000] rev 407
Sam Lantinga - Fri Oct 2 07:15:35 PDT 2009
* Implemented seamless looping for music playback
Sam Lantinga [Fri, 02 Oct 2009 13:50:36 +0000] rev 406
You should check for the C compiler before you set CFLAGS. :)
Sam Lantinga [Fri, 02 Oct 2009 12:30:42 +0000] rev 405
Mike Frysinger 2007-12-29 18:12:10 PST
this patch makes it so find_lib() does not look in /usr/local/lib and /usr/lib
when cross-compiling as that can easily cause troubles
Sam Lantinga [Fri, 02 Oct 2009 12:01:24 +0000] rev 404
Updated versions of Ogg and Vorbis
Sam Lantinga [Fri, 02 Oct 2009 11:48:22 +0000] rev 403
Updated version for mingw32 compiler
Sam Lantinga [Sun, 27 Sep 2009 19:34:09 +0000] rev 402
Fixed bug #812
Max Horn 2009-09-27 11:58:18 PDT
I got build failure reports from various people for SDL-mixer on OS X when
compiling in 64bit mode, both in 10.5 and 10.6. The reason: Deprecated
QuickTime APIs that have been removed for 64bit binaries, see below.
Proposed short-term workaround: Disable or just remove the crappy "native" MIDI
code. It's rather bad anyway (I should know, i wrote it ;).
Mid/long-term solution: Write new CoreAudio based code to replace it. That code
then would work on all OS X versions (well, at least on 10.4 upwards for sure),
be more accurate, sound better and take up less system resources. And be
simpler, did I mention that? Generating MIDI output with CoreAudio is pretty
easy, we do it in ScummVM, Exult, Pentagram, DOSBox, ...
Sam Lantinga [Sat, 26 Sep 2009 22:23:16 +0000] rev 401
Fixed bug #809
O.Sezer 2009-09-26 04:38:45 PDT
the filename argument of native_midi_loadsong() should be const char*, the attached patch does that and also removes the unnecessary char* cast in music.c where native_midi_loadsong() is called.