annotate README.AmigaOS @ 4103:9df8136abec0 SDL-1.2

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>
author Sam Lantinga <slouken@libsdl.org>
date Fri, 28 Dec 2007 18:15:43 +0000
parents 6d2e1961661a
children
rev   line source
3888
6d2e1961661a Removed broken AmigaOS support.
Ryan C. Gordon <icculus@icculus.org>
parents: 21
diff changeset
1 The AmigaOS code has been removed from SDL, since it had been broken for a
6d2e1961661a Removed broken AmigaOS support.
Ryan C. Gordon <icculus@icculus.org>
parents: 21
diff changeset
2 long time and had a few bits of fairly invasive code #ifdef'd into the
6d2e1961661a Removed broken AmigaOS support.
Ryan C. Gordon <icculus@icculus.org>
parents: 21
diff changeset
3 SDL core.
21
75a95f82bc1f Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
4
3888
6d2e1961661a Removed broken AmigaOS support.
Ryan C. Gordon <icculus@icculus.org>
parents: 21
diff changeset
5 However, there is an OS4 version of SDL here:
6d2e1961661a Removed broken AmigaOS support.
Ryan C. Gordon <icculus@icculus.org>
parents: 21
diff changeset
6 http://www.rcdrummond.net/amiga/index.html
21
75a95f82bc1f Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
7
3888
6d2e1961661a Removed broken AmigaOS support.
Ryan C. Gordon <icculus@icculus.org>
parents: 21
diff changeset
8 And a MorphOS version here:
6d2e1961661a Removed broken AmigaOS support.
Ryan C. Gordon <icculus@icculus.org>
parents: 21
diff changeset
9 http://www.lehtoranta.net/powersdl/
21
75a95f82bc1f Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
10
3888
6d2e1961661a Removed broken AmigaOS support.
Ryan C. Gordon <icculus@icculus.org>
parents: 21
diff changeset
11 --ryan.
21
75a95f82bc1f Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
12