Skip to content

Latest commit

 

History

History
63 lines (58 loc) · 2.18 KB

physfs_platforms.h

File metadata and controls

63 lines (58 loc) · 2.18 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _INCL_PHYSFS_PLATFORMS
#define _INCL_PHYSFS_PLATFORMS
#ifndef __PHYSICSFS_INTERNAL__
#error Do not include this header from your applications.
#endif
/*
* These only define the platforms to determine which files in the platforms
* directory should be compiled. For example, technically BeOS can be called
* a "unix" system, but since it doesn't use unix.c, we don't define
* PHYSFS_PLATFORM_UNIX on that system.
*/
Nov 5, 2008
Nov 5, 2008
15
#if (defined __HAIKU__)
Mar 20, 2012
Mar 20, 2012
16
17
18
# define PHYSFS_PLATFORM_HAIKU 1
# define PHYSFS_PLATFORM_BEOS 1
# define PHYSFS_PLATFORM_POSIX 1
Nov 5, 2008
Nov 5, 2008
19
#elif ((defined __BEOS__) || (defined __beos__))
Mar 20, 2012
Mar 20, 2012
20
21
# define PHYSFS_PLATFORM_BEOS 1
# define PHYSFS_PLATFORM_POSIX 1
22
#elif (defined _WIN32_WCE) || (defined _WIN64_WCE)
Mar 9, 2012
Mar 9, 2012
23
# error PocketPC support was dropped from PhysicsFS 2.1. Sorry.
24
#elif (((defined _WIN32) || (defined _WIN64)) && (!defined __CYGWIN__))
Mar 20, 2012
Mar 20, 2012
25
# define PHYSFS_PLATFORM_WINDOWS 1
Mar 9, 2012
Mar 9, 2012
27
# error OS/2 support was dropped from PhysicsFS 2.1. Sorry.
28
#elif ((defined __MACH__) && (defined __APPLE__))
Mar 23, 2009
Mar 23, 2009
29
/* To check if iphone or not, we need to include this file */
Jun 25, 2012
Jun 25, 2012
30
31
32
# include <TargetConditionals.h>
# if ((TARGET_IPHONE_SIMULATOR) || (TARGET_OS_IPHONE))
# define PHYSFS_NO_CDROM_SUPPORT 1
Nov 2, 2008
Nov 2, 2008
33
# endif
Jun 25, 2012
Jun 25, 2012
34
35
# define PHYSFS_PLATFORM_MACOSX 1
# define PHYSFS_PLATFORM_POSIX 1
36
#elif defined(macintosh)
Mar 14, 2007
Mar 14, 2007
37
# error Classic Mac OS support was dropped from PhysicsFS 2.0. Move to OS X.
Nov 2, 2012
Nov 2, 2012
38
39
40
41
42
#elif defined(ANDROID)
# define PHYSFS_PLATFORM_LINUX 1
# define PHYSFS_PLATFORM_UNIX 1
# define PHYSFS_PLATFORM_POSIX 1
# define PHYSFS_NO_CDROM_SUPPORT 1
Mar 20, 2012
Mar 20, 2012
43
#elif defined(__linux)
Mar 20, 2012
Mar 20, 2012
44
45
46
# define PHYSFS_PLATFORM_LINUX 1
# define PHYSFS_PLATFORM_UNIX 1
# define PHYSFS_PLATFORM_POSIX 1
Mar 20, 2012
Mar 20, 2012
47
#elif defined(__sun) || defined(sun)
Mar 20, 2012
Mar 20, 2012
48
49
50
# define PHYSFS_PLATFORM_SOLARIS 1
# define PHYSFS_PLATFORM_UNIX 1
# define PHYSFS_PLATFORM_POSIX 1
Aug 2, 2012
Aug 2, 2012
51
#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__bsdi__) || defined(__DragonFly__)
Mar 20, 2012
Mar 20, 2012
52
53
54
# define PHYSFS_PLATFORM_BSD 1
# define PHYSFS_PLATFORM_UNIX 1
# define PHYSFS_PLATFORM_POSIX 1
Aug 2, 2012
Aug 2, 2012
55
#elif defined(unix) || defined(__unix__)
Mar 20, 2012
Mar 20, 2012
56
57
# define PHYSFS_PLATFORM_UNIX 1
# define PHYSFS_PLATFORM_POSIX 1
58
59
60
61
62
#else
# error Unknown platform.
#endif
#endif /* include-once blocker. */