blob: 20e7301806edbe93df11b9ceaec2f6dc66e0372a (
plain)
1
2
3
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
#ifndef PyObjC_COMPAT_H
#define PyObjC_COMPAT_H
/*
* Compatibilty definitions
*/
#ifdef __GNUC__
#define unlikely(x) __builtin_expect (!!(x), 0)
#define likely(x) __builtin_expect (!!(x), 1)
#else
#define likely(x) x
#define likely(x) x
#endif
#import <AvailabilityMacros.h>
/* On 10.1 there are no defines for the OS version. */
#ifndef MAC_OS_X_VERSION_10_1
#define MAC_OS_X_VERSION_10_1 1010
#define MAC_OS_X_VERSION_MAX_ALLOWED MAC_OS_X_VERSION_10_1
#error "MAC_OS_X_VERSION_10_1 not defined. You aren't running 10.1 are you?"
#endif
#ifndef MAC_OS_X_VERSION_10_2
#define MAC_OS_X_VERSION_10_2 1020
#endif
#ifndef MAC_OS_X_VERSION_10_3
#define MAC_OS_X_VERSION_10_3 1030
#endif
#ifndef MAC_OS_X_VERSION_10_4
#define MAC_OS_X_VERSION_10_4 1040
#endif
#ifndef MAC_OS_X_VERSION_10_5
#define MAC_OS_X_VERSION_10_5 1050
#endif
/* On some versions of GCC <limits.h> defines LONG_LONG_MAX but not LLONG_MAX,
* compensate.
*/
#ifndef LLONG_MIN
#ifdef LONG_LONG_MIN
#define LLONG_MIN LONG_LONG_MIN
#define LLONG_MAX LONG_LONG_MAX
#define ULLONG_MAX ULONG_LONG_MAX
#endif
#endif
#if (PY_VERSION_HEX < 0x02050000)
typedef int Py_ssize_t;
#define PY_FORMAT_SIZE_T ""
#define Py_ARG_SIZE_T "i"
#define PY_SSIZE_T_MAX INT_MAX
#else
#ifndef Py_ARG_SIZE_T
#define Py_ARG_SIZE_T "n"
#endif
#endif
/* NSInteger and friends are available on Leopard and later, define them here
* for compatibility with earlier versions.
*
* Note that the guard definition is the same as used by Leopard itself.
*/
#import <Foundation/NSObjCRuntime.h>
#ifndef NSINTEGER_DEFINED
#ifdef __LP64__
# error "Huh? 64-bit but no NSINTEGER available???"
#endif
typedef int NSInteger;
typedef unsigned int NSUInteger;
#define NSIntegerMax LONG_MAX
#define NSIntegerMin LONG_MIN
#define NSUIntegerMax ULONG_MAX
#define NSINTEGER_DEFINED
#endif
#endif /* PyObjC_COMPAT_H */
|