Skip to content

Latest commit

 

History

History
61 lines (52 loc) · 2.06 KB

SDL_loadso.c

File metadata and controls

61 lines (52 loc) · 2.06 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Jan 4, 2004
Jan 4, 2004
3
Copyright (C) 1997-2004 Sam Lantinga
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Sam Lantinga
slouken@libsdl.org
*/
#ifdef SAVE_RCSID
static char rcsid =
"@(#) $Id$";
#endif
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* System dependent library loading routines */
Jan 6, 2006
Jan 6, 2006
31
32
33
34
35
36
37
38
39
/*
* Mac OS X >= 10.3 are guaranteed to have dlopen support in a system
* framework, which means we don't have to roll our own on non-PowerPC
* systems to guarantee compatibility (x86 Macs started at 10.4). --ryan.
*/
#if ( (defined(MACOSX)) && (!defined(__POWERPC__)) )
# define USE_DLOPEN 1
#endif
Nov 17, 2005
Nov 17, 2005
40
41
42
43
/* !!! FIXME: includes so I don't have to update all the project files... */
#define SDL_INTERNAL_BUILDING_LOADSO 1
#if defined(USE_DUMMY_LOADSO)
# include "loadso/dummy/SDL_loadso.c"
Jan 6, 2006
Jan 6, 2006
44
45
#elif defined(USE_DLOPEN)
# include "loadso/dlopen/SDL_loadso.c"
Nov 17, 2005
Nov 17, 2005
46
47
48
49
#elif defined(MACOSX)
# include "loadso/macosx/SDL_loadso.c"
#elif defined(macintosh)
# include "loadso/macos/SDL_loadso.c"
Sep 29, 2005
Sep 29, 2005
50
#elif defined(WIN32) || defined(_WIN32_WCE)
Nov 17, 2005
Nov 17, 2005
51
# include "loadso/windows/SDL_loadso.c"
52
#elif defined(__BEOS__)
Nov 17, 2005
Nov 17, 2005
53
# include "loadso/beos/SDL_loadso.c"
Jul 16, 2003
Jul 16, 2003
54
#elif defined(__MINT__) && defined(ENABLE_LDG)
Nov 17, 2005
Nov 17, 2005
55
# include "loadso/mint/SDL_loadso.c"
Nov 23, 2005
Nov 23, 2005
56
57
#elif defined(__OS2__)
# include "loadso/os2/SDL_loadso.c"
58
#else
Nov 17, 2005
Nov 17, 2005
59
# include "loadso/dummy/SDL_loadso.c"
60
#endif /* system type */