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(__HAIKU__)
40 #if defined(bsdi) || defined(__bsdi) || defined(__bsdi__)
44 #if defined(_arch_dreamcast)
46 #define __DREAMCAST__ 1
48 #if defined(__FreeBSD__) || defined(__DragonFly__)
52 #if defined(hpux) || defined(__hpux) || defined(__hpux__)
56 #if defined(sgi) || defined(__sgi) || defined(__sgi__) || defined(_SGI_SOURCE)
60 #if defined(linux) || defined(__linux) || defined(__linux__)
65 #if defined(__APPLE__)
66 /* lets us know what version of Mac OS X we're compiling on */
67 #include "AvailabilityMacros.h"
68 #ifdef MAC_OS_X_VERSION_10_3
69 #include "TargetConditionals.h" /* this header is in 10.3 or later */
71 /* if compiling for iPhone */
73 #define __IPHONEOS__ 1
76 /* if not compiling for iPhone */
79 #endif /* TARGET_OS_IPHONE */
81 /* if earlier verion of Mac OS X than version 10.3 */
86 #endif /* defined(__APPLE__) */
88 #if defined(__NetBSD__)
92 #if defined(__OpenBSD__)
100 #if defined(osf) || defined(__osf) || defined(__osf__) || defined(_OSF_SOURCE)
104 #if defined(__QNXNTO__)
108 #if defined(riscos) || defined(__riscos) || defined(__riscos__)
114 #define __SOLARIS__ 1
116 #if defined(WIN32) || defined(_WIN32)
122 #undef __NINTENDODS__
123 #define __NINTENDODS__ 1
126 #endif /* _SDL_platform_h */