|
1 | 1 | /* Leave this blank line here -- autoheader needs it! */ |
2 | 2 |
|
3 | 3 |
|
| 4 | +/* Define for AIX if your compiler is a genuine IBM xlC/xlC_r |
| 5 | + and you want support for AIX C++ shared extension modules. */ |
| 6 | +#undef AIX_GENUINE_CPLUSPLUS |
| 7 | + |
4 | 8 | /* Define if your <unistd.h> contains bad prototypes for exec*() |
5 | 9 | (as it does on SGI IRIX 4.x) */ |
6 | 10 | #undef BAD_EXEC_PROTOTYPES |
|
9 | 13 | (as it does on SCI ODT 3.0) */ |
10 | 14 | #undef BAD_STATIC_FORWARD |
11 | 15 |
|
12 | | -/* Define for AIX if your compiler is a genuine IBM xlC/xlC_r |
13 | | - and you want support for AIX C++ shared extension modules. */ |
14 | | -#undef AIX_GENUINE_CPLUSPLUS |
15 | | - |
16 | 16 | /* Define this if you have BeOS threads */ |
17 | 17 | #undef BEOS_THREADS |
18 | 18 |
|
19 | 19 | /* Define if you have the Mach cthreads package */ |
20 | 20 | #undef C_THREADS |
21 | 21 |
|
| 22 | +/* Defined when case of imported modules are checked against case of file. */ |
| 23 | +#undef CHECK_IMPORT_CASE |
| 24 | + |
22 | 25 | /* Define to `long' if <time.h> doesn't define. */ |
23 | 26 | #undef clock_t |
24 | 27 |
|
|
32 | 35 | /* Define this if your time.h defines altzone */ |
33 | 36 | #undef HAVE_ALTZONE |
34 | 37 |
|
| 38 | +/* Defined when any dynamic module loading is enabled */ |
| 39 | +#undef HAVE_DYNAMIC_LOADING |
| 40 | + |
35 | 41 | /* Define this if you have flockfile(), getc_unlocked(), and funlockfile() */ |
36 | 42 | #undef HAVE_GETC_UNLOCKED |
37 | 43 |
|
|
50 | 56 | /* Define this if you have the 6-arg version of gethostbyname_r() */ |
51 | 57 | #undef HAVE_GETHOSTBYNAME_R_6_ARG |
52 | 58 |
|
| 59 | +/* Defined to enable large file support when an off_t is bigger than a long |
| 60 | + and long long is available and at least as big as an off_t. You may need |
| 61 | + to add some flags for configuration and compilation to enable this mode. |
| 62 | + E.g, for Solaris 2.7: |
| 63 | + CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" OPT="-O2 $CFLAGS" \ |
| 64 | + configure |
| 65 | +*/ |
| 66 | +#undef HAVE_LARGEFILE_SUPPORT |
| 67 | + |
53 | 68 | /* Define this if you have the type long long */ |
54 | 69 | #undef HAVE_LONG_LONG |
55 | 70 |
|
56 | | -/* Define this if you have the type uintptr_t */ |
57 | | -#undef HAVE_UINTPTR_T |
58 | | - |
59 | 71 | /* Define if your compiler supports function prototypes */ |
60 | 72 | #undef HAVE_PROTOTYPES |
61 | 73 |
|
|
66 | 78 | (e.g. void fprintf(FILE *, char *, ...);) *and* <stdarg.h> */ |
67 | 79 | #undef HAVE_STDARG_PROTOTYPES |
68 | 80 |
|
| 81 | +/* Define this if you have the type uintptr_t */ |
| 82 | +#undef HAVE_UINTPTR_T |
| 83 | + |
| 84 | +/* Define if you have a useable wchar_t type defined in wchar.h; useable |
| 85 | + means wchar_t must be 16-bit unsigned type. (see |
| 86 | + Include/unicodeobject.h). */ |
| 87 | +#undef HAVE_USABLE_WCHAR_T |
| 88 | + |
| 89 | +/* Define if the compiler provides a wchar.h header file. */ |
| 90 | +#undef HAVE_WCHAR_H |
| 91 | + |
69 | 92 | /* Define if malloc(0) returns a NULL pointer */ |
70 | 93 | #undef MALLOC_ZERO_RETURNS_NULL |
71 | 94 |
|
72 | 95 | /* Define if you have POSIX threads */ |
73 | 96 | #undef _POSIX_THREADS |
74 | 97 |
|
| 98 | +/* Define if you want to build an interpreter with many run-time checks */ |
| 99 | +#undef Py_DEBUG |
| 100 | + |
75 | 101 | /* Define to force use of thread-safe errno, h_errno, and other functions */ |
76 | 102 | #undef _REENTRANT |
77 | 103 |
|
|
81 | 107 | /* Define to empty if the keyword does not work. */ |
82 | 108 | #undef signed |
83 | 109 |
|
| 110 | +/* Define if i>>j for signed int i does not extend the sign bit |
| 111 | + when i < 0 |
| 112 | +*/ |
| 113 | +#undef SIGNED_RIGHT_SHIFT_ZERO_FILLS |
| 114 | + |
| 115 | +/* The number of bytes in an off_t. */ |
| 116 | +#undef SIZEOF_OFF_T |
| 117 | + |
| 118 | +/* The number of bytes in a time_t. */ |
| 119 | +#undef SIZEOF_TIME_T |
| 120 | + |
| 121 | +/* The number of bytes in a pthread_t. */ |
| 122 | +#undef SIZEOF_PTHREAD_T |
| 123 | + |
84 | 124 | /* sizeof(void *) */ |
85 | 125 | #undef SIZEOF_VOID_P |
86 | 126 |
|
|
103 | 143 | /* Define if you want SIGFPE handled (see Include/pyfpe.h). */ |
104 | 144 | #undef WANT_SIGFPE_HANDLER |
105 | 145 |
|
106 | | -/* Define if the compiler provides a wchar.h header file. */ |
107 | | -#undef HAVE_WCHAR_H |
108 | | - |
109 | | -/* Define if you have a useable wchar_t type defined in wchar.h; useable |
110 | | - means wchar_t must be 16-bit unsigned type. (see |
111 | | - Include/unicodeobject.h). */ |
112 | | -#undef HAVE_USABLE_WCHAR_T |
113 | | - |
114 | 146 | /* Define if you want wctype.h functions to be used instead of the |
115 | 147 | one supplied by Python itself. (see Include/unicodectype.h). */ |
116 | 148 | #undef WANT_WCTYPE_FUNCTIONS |
117 | 149 |
|
118 | | -/* Define if you want to use SGI (IRIX 4) dynamic linking. |
119 | | - This requires the "dl" library by Jack Jansen, |
120 | | - ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z. |
121 | | - Don't bother on IRIX 5, it already has dynamic linking using SunOS |
122 | | - style shared libraries */ |
123 | | -#undef WITH_SGI_DL |
| 150 | +/* Define if you want to compile in cycle garbage collection */ |
| 151 | +#undef WITH_CYCLE_GC |
124 | 152 |
|
125 | 153 | /* Define if you want to emulate SGI (IRIX 4) dynamic linking. |
126 | 154 | This is rumoured to work on VAX (Ultrix), Sun3 (SunOS 3.4), |
|
138 | 166 | linker (rld). Dyld is necessary to support frameworks. */ |
139 | 167 | #undef WITH_DYLD |
140 | 168 |
|
141 | | -/* Define if you want to compile in rudimentary thread support */ |
142 | | -#undef WITH_THREAD |
143 | | - |
144 | | -/* Define if you want to compile in cycle garbage collection */ |
145 | | -#undef WITH_CYCLE_GC |
| 169 | +/* Define if you want to use BSD db. */ |
| 170 | +#undef WITH_LIBDB |
146 | 171 |
|
147 | 172 | /* Define if you want to produce an OpenStep/Rhapsody framework |
148 | 173 | (shared library plus accessory files). */ |
149 | 174 | #undef WITH_NEXT_FRAMEWORK |
150 | 175 |
|
151 | | -/* Define if you want to use BSD db. */ |
152 | | -#undef WITH_LIBDB |
153 | | - |
154 | | -/* Define if you want to build an interpreter with many run-time checks */ |
155 | | -#undef Py_DEBUG |
156 | | - |
157 | | -/* The number of bytes in an off_t. */ |
158 | | -#undef SIZEOF_OFF_T |
159 | | - |
160 | | -/* The number of bytes in a time_t. */ |
161 | | -#undef SIZEOF_TIME_T |
162 | | - |
163 | | -/* The number of bytes in a pthread_t. */ |
164 | | -#undef SIZEOF_PTHREAD_T |
165 | | - |
166 | | -/* Defined to enable large file support when an off_t is bigger than a long |
167 | | - and long long is available and at least as big as an off_t. You may need |
168 | | - to add some flags for configuration and compilation to enable this mode. |
169 | | - E.g, for Solaris 2.7: |
170 | | - CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" OPT="-O2 $CFLAGS" \ |
171 | | - configure |
172 | | -*/ |
173 | | -#undef HAVE_LARGEFILE_SUPPORT |
174 | | - |
175 | | -/* Defined when any dynamic module loading is enabled */ |
176 | | -#undef HAVE_DYNAMIC_LOADING |
| 176 | +/* Define if you want to use SGI (IRIX 4) dynamic linking. |
| 177 | + This requires the "dl" library by Jack Jansen, |
| 178 | + ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z. |
| 179 | + Don't bother on IRIX 5, it already has dynamic linking using SunOS |
| 180 | + style shared libraries */ |
| 181 | +#undef WITH_SGI_DL |
177 | 182 |
|
178 | | -/* Define if i>>j for signed int i does not extend the sign bit |
179 | | - when i < 0 |
180 | | -*/ |
181 | | -#undef SIGNED_RIGHT_SHIFT_ZERO_FILLS |
| 183 | +/* Define if you want to compile in rudimentary thread support */ |
| 184 | +#undef WITH_THREAD |
182 | 185 |
|
183 | 186 |
|
184 | 187 | /* Leave that blank line there-- autoheader needs it! */ |
0 commit comments