2 SDL - Simple DirectMedia Layer
3 Copyright (C) 1997-2009 Sam Lantinga
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 /* Try to get a standard set of platform defines */
25 #ifndef _SDL_platform_h
26 #define _SDL_platform_h
36 #if defined(bsdi) || defined(__bsdi) || defined(__bsdi__)
40 #if defined(_arch_dreamcast)
42 #define __DREAMCAST__ 1
44 #if defined(__FreeBSD__) || defined(__DragonFly__)
48 #if defined(hpux) || defined(__hpux) || defined(__hpux__)
52 #if defined(sgi) || defined(__sgi) || defined(__sgi__) || defined(_SGI_SOURCE)
56 #if defined(linux) || defined(__linux) || defined(__linux__)
61 #if defined(__APPLE__)
62 /* lets us know what version of Mac OS X we're compiling on */
63 #include "AvailabilityMacros.h"
64 #ifdef MAC_OS_X_VERSION_10_3
65 #include "targetconditionals.h" /* this header is in 10.3 or later */
67 /* if compiling for iPhone */
69 #define __IPHONEOS__ 1
72 /* if not compiling for iPhone */
75 #endif /* TARGET_OS_IPHONE */
77 /* if earlier verion of Mac OS X than version 10.3 */
82 #endif /* defined(__APPLE__) */
84 #if defined(__NetBSD__)
88 #if defined(__OpenBSD__)
96 #if defined(osf) || defined(__osf) || defined(__osf__) || defined(_OSF_SOURCE)
100 #if defined(__QNXNTO__)
104 #if defined(riscos) || defined(__riscos) || defined(__riscos__)
110 #define __SOLARIS__ 1
112 #if defined(WIN32) || defined(_WIN32)
118 #undef __NINTENDODS__
119 #define __NINTENDODS__ 1
122 #endif /* _SDL_platform_h */