Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 1 | #ifndef Py_CONFIG_H |
| 2 | #define Py_CONFIG_H |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 3 | |
Tim Peters | 76f373d | 2001-07-26 21:34:59 +0000 | [diff] [blame] | 4 | /* pyconfig.h. NOT Generated automatically by configure. |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 5 | |
| 6 | This is a manually maintained version used for the Watcom, |
Walter Dörwald | f0dfc7a | 2003-10-20 14:01:56 +0000 | [diff] [blame] | 7 | Borland and Microsoft Visual C++ compilers. It is a |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 8 | standard part of the Python distribution. |
| 9 | |
Guido van Rossum | 950a126 | 1996-07-30 17:38:17 +0000 | [diff] [blame] | 10 | WINDOWS DEFINES: |
| 11 | The code specific to Windows should be wrapped around one of |
| 12 | the following #defines |
| 13 | |
Guido van Rossum | c66ae96 | 2000-05-08 14:14:48 +0000 | [diff] [blame] | 14 | MS_WIN64 - Code specific to the MS Win64 API |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 15 | MS_WIN32 - Code specific to the MS Win32 (and Win64) API (obsolete, this covers all supported APIs) |
Guido van Rossum | 950a126 | 1996-07-30 17:38:17 +0000 | [diff] [blame] | 16 | MS_WINDOWS - Code specific to Windows, but all versions. |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 17 | Py_ENABLE_SHARED - Code if the Python core is built as a DLL. |
Guido van Rossum | 950a126 | 1996-07-30 17:38:17 +0000 | [diff] [blame] | 18 | |
| 19 | Also note that neither "_M_IX86" or "_MSC_VER" should be used for |
| 20 | any purpose other than "Windows Intel x86 specific" and "Microsoft |
| 21 | compiler specific". Therefore, these should be very rare. |
| 22 | |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 23 | |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 24 | NOTE: The following symbols are deprecated: |
| 25 | NT, WIN32, USE_DL_EXPORT, USE_DL_IMPORT, DL_EXPORT, DL_IMPORT |
| 26 | MS_CORE_DLL. |
Fred Drake | 91c4e2b | 2000-06-19 13:41:54 +0000 | [diff] [blame] | 27 | |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 28 | */ |
| 29 | |
| 30 | #include <io.h> |
Tim Peters | 58e0a8c | 2001-05-14 22:32:33 +0000 | [diff] [blame] | 31 | #define HAVE_SYS_UTIME_H |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 32 | #define HAVE_HYPOT |
Fred Drake | 832181e | 2001-07-17 20:35:59 +0000 | [diff] [blame] | 33 | #define HAVE_TEMPNAM |
| 34 | #define HAVE_TMPFILE |
| 35 | #define HAVE_TMPNAM |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 36 | #define HAVE_CLOCK |
| 37 | #define HAVE_STRFTIME |
| 38 | #define HAVE_STRERROR |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 39 | #define DONT_HAVE_SIG_ALARM |
| 40 | #define DONT_HAVE_SIG_PAUSE |
Guido van Rossum | 1bc716f | 1996-06-28 19:12:06 +0000 | [diff] [blame] | 41 | #define LONG_BIT 32 |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 42 | #define WORD_BIT 32 |
Guido van Rossum | 950a126 | 1996-07-30 17:38:17 +0000 | [diff] [blame] | 43 | #define PREFIX "" |
| 44 | #define EXEC_PREFIX "" |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 45 | |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 46 | #define MS_WIN32 /* only support win32 and greater. */ |
| 47 | #define MS_WINDOWS |
| 48 | #ifndef PYTHONPATH |
| 49 | # define PYTHONPATH ".\\DLLs;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk" |
| 50 | #endif |
| 51 | #define NT_THREADS |
| 52 | #define WITH_THREAD |
| 53 | #ifndef NETSCAPE_PI |
| 54 | #define USE_SOCKET |
| 55 | #endif |
| 56 | |
| 57 | /* Compiler specific defines */ |
| 58 | |
| 59 | /* ------------------------------------------------------------------------*/ |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 60 | /* Microsoft C defines _MSC_VER */ |
Guido van Rossum | c66ae96 | 2000-05-08 14:14:48 +0000 | [diff] [blame] | 61 | #ifdef _MSC_VER |
| 62 | |
Tim Peters | 0628433 | 2002-11-11 19:44:39 +0000 | [diff] [blame] | 63 | /* We want COMPILER to expand to a string containing _MSC_VER's *value*. |
| 64 | * This is horridly tricky, because the stringization operator only works |
| 65 | * on macro arguments, and doesn't evaluate macros passed *as* arguments. |
| 66 | * Attempts simpler than the following appear doomed to produce "_MSC_VER" |
| 67 | * literally in the string. |
| 68 | */ |
| 69 | #define _Py_PASTE_VERSION(SUFFIX) \ |
| 70 | ("[MSC v." _Py_STRINGIZE(_MSC_VER) " " SUFFIX "]") |
| 71 | /* e.g., this produces, after compile-time string catenation, |
| 72 | * ("[MSC v.1200 32 bit (Intel)]") |
| 73 | * |
| 74 | * _Py_STRINGIZE(_MSC_VER) expands to |
| 75 | * _Py_STRINGIZE1((_MSC_VER)) expands to |
| 76 | * _Py_STRINGIZE2(_MSC_VER) but as this call is the result of token-pasting |
| 77 | * it's scanned again for macros and so further expands to (under MSVC 6) |
| 78 | * _Py_STRINGIZE2(1200) which then expands to |
| 79 | * "1200" |
| 80 | */ |
| 81 | #define _Py_STRINGIZE(X) _Py_STRINGIZE1((X)) |
| 82 | #define _Py_STRINGIZE1(X) _Py_STRINGIZE2 ## X |
| 83 | #define _Py_STRINGIZE2(X) #X |
| 84 | |
Guido van Rossum | c66ae96 | 2000-05-08 14:14:48 +0000 | [diff] [blame] | 85 | /* MSVC defines _WINxx to differentiate the windows platform types |
| 86 | |
| 87 | Note that for compatibility reasons _WIN32 is defined on Win32 |
| 88 | *and* on Win64. For the same reasons, in Python, MS_WIN32 is |
| 89 | defined on Win32 *and* Win64. Win32 only code must therefore be |
| 90 | guarded as follows: |
| 91 | #if defined(MS_WIN32) && !defined(MS_WIN64) |
| 92 | */ |
| 93 | #ifdef _WIN64 |
| 94 | #define MS_WIN64 |
| 95 | #endif |
Guido van Rossum | c66ae96 | 2000-05-08 14:14:48 +0000 | [diff] [blame] | 96 | |
| 97 | /* set the COMPILER */ |
| 98 | #ifdef MS_WIN64 |
| 99 | #ifdef _M_IX86 |
Tim Peters | c7ff90b | 2002-11-11 20:21:06 +0000 | [diff] [blame] | 100 | #define COMPILER _Py_PASTE_VERSION("64 bit (Intel)") |
Guido van Rossum | c66ae96 | 2000-05-08 14:14:48 +0000 | [diff] [blame] | 101 | #else |
Tim Peters | 0628433 | 2002-11-11 19:44:39 +0000 | [diff] [blame] | 102 | #define COMPILER _Py_PASTE_VERSION("64 bit (Unknown)") |
Guido van Rossum | c66ae96 | 2000-05-08 14:14:48 +0000 | [diff] [blame] | 103 | #endif |
| 104 | #endif /* MS_WIN64 */ |
| 105 | |
| 106 | #if defined(MS_WIN32) && !defined(MS_WIN64) |
| 107 | #ifdef _M_IX86 |
Tim Peters | 0628433 | 2002-11-11 19:44:39 +0000 | [diff] [blame] | 108 | #define COMPILER _Py_PASTE_VERSION("32 bit (Intel)") |
Guido van Rossum | c66ae96 | 2000-05-08 14:14:48 +0000 | [diff] [blame] | 109 | #else |
Tim Peters | 0628433 | 2002-11-11 19:44:39 +0000 | [diff] [blame] | 110 | #define COMPILER _Py_PASTE_VERSION("32 bit (Unknown)") |
Guido van Rossum | c66ae96 | 2000-05-08 14:14:48 +0000 | [diff] [blame] | 111 | #endif |
| 112 | #endif /* MS_WIN32 && !MS_WIN64 */ |
| 113 | |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 114 | typedef int pid_t; |
| 115 | #define hypot _hypot |
| 116 | |
Guido van Rossum | c66ae96 | 2000-05-08 14:14:48 +0000 | [diff] [blame] | 117 | #endif /* _MSC_VER */ |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 118 | |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 119 | /* define some ANSI types that are not defined in earlier Win headers */ |
| 120 | #if defined(_MSC_VER) && _MSC_VER >= 1200 |
| 121 | /* This file only exists in VC 6.0 or higher */ |
| 122 | #include <basetsd.h> |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 123 | #endif |
Guido van Rossum | 950a126 | 1996-07-30 17:38:17 +0000 | [diff] [blame] | 124 | |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 125 | /* ------------------------------------------------------------------------*/ |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 126 | /* The Borland compiler defines __BORLANDC__ */ |
Guido van Rossum | cf6c0ea | 1996-10-21 14:52:24 +0000 | [diff] [blame] | 127 | /* XXX These defines are likely incomplete, but should be easy to fix. */ |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 128 | #ifdef __BORLANDC__ |
| 129 | #define COMPILER "[Borland]" |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 130 | |
| 131 | #ifdef _WIN32 |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 132 | /* tested with BCC 5.5 (__BORLANDC__ >= 0x0550) |
| 133 | */ |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 134 | |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 135 | typedef int pid_t; |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 136 | /* BCC55 seems to understand __declspec(dllimport), it is used in its |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 137 | own header files (winnt.h, ...) - so we can do nothing and get the default*/ |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 138 | |
Tim Peters | 58e0a8c | 2001-05-14 22:32:33 +0000 | [diff] [blame] | 139 | #undef HAVE_SYS_UTIME_H |
| 140 | #define HAVE_UTIME_H |
| 141 | #define HAVE_DIRENT_H |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 142 | |
| 143 | /* rename a few functions for the Borland compiler */ |
| 144 | #include <io.h> |
| 145 | #define _chsize chsize |
| 146 | #define _setmode setmode |
Tim Peters | 7f00deb | 2001-04-21 03:20:47 +0000 | [diff] [blame] | 147 | |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 148 | #else /* !_WIN32 */ |
Guido van Rossum | 6042741 | 2000-11-13 17:29:30 +0000 | [diff] [blame] | 149 | #error "Only Win32 and later are supported" |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 150 | #endif /* !_WIN32 */ |
| 151 | |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 152 | #endif /* BORLANDC */ |
| 153 | |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 154 | /* ------------------------------------------------------------------------*/ |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 155 | /* egcs/gnu-win32 defines __GNUC__ and _WIN32 */ |
| 156 | #if defined(__GNUC__) && defined(_WIN32) |
Tim Peters | b26f363 | 2002-03-22 06:32:32 +0000 | [diff] [blame] | 157 | /* XXX These defines are likely incomplete, but should be easy to fix. |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 158 | They should be complete enough to build extension modules. */ |
| 159 | /* Suggested by Rene Liebscher <R.Liebscher@gmx.de> to avoid a GCC 2.91.* |
| 160 | bug that requires structure imports. More recent versions of the |
| 161 | compiler don't exhibit this bug. |
| 162 | */ |
| 163 | #if (__GNUC__==2) && (__GNUC_MINOR__<=91) |
| 164 | #warning "Please use an up-to-date version of gcc! (>2.91 recommended)" |
| 165 | #endif |
| 166 | |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 167 | #define COMPILER "[gcc]" |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 168 | #define hypot _hypot |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 169 | #define PY_LONG_LONG long long |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 170 | #endif /* GNUC */ |
| 171 | |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 172 | /* ------------------------------------------------------------------------*/ |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 173 | /* lcc-win32 defines __LCC__ */ |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 174 | #if defined(__LCC__) |
Tim Peters | b26f363 | 2002-03-22 06:32:32 +0000 | [diff] [blame] | 175 | /* XXX These defines are likely incomplete, but should be easy to fix. |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 176 | They should be complete enough to build extension modules. */ |
| 177 | |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 178 | #define COMPILER "[lcc-win32]" |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 179 | typedef int pid_t; |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 180 | /* __declspec() is supported here too - do nothing to get the defaults */ |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 181 | |
Mark Hammond | c756bdb | 2000-08-15 22:33:59 +0000 | [diff] [blame] | 182 | #endif /* LCC */ |
| 183 | |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 184 | /* ------------------------------------------------------------------------*/ |
Guido van Rossum | 950a126 | 1996-07-30 17:38:17 +0000 | [diff] [blame] | 185 | /* End of compilers - finish up */ |
| 186 | |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 187 | #ifndef NO_STDIO_H |
| 188 | # include <stdio.h> |
Guido van Rossum | 361b583 | 2000-06-30 22:17:53 +0000 | [diff] [blame] | 189 | #endif |
Fred Drake | a3f6e91 | 2000-06-29 20:44:47 +0000 | [diff] [blame] | 190 | |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 191 | /* 64 bit ints are usually spelt __int64 unless compiler has overridden */ |
| 192 | #define HAVE_LONG_LONG 1 |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 193 | #ifndef PY_LONG_LONG |
| 194 | # define PY_LONG_LONG __int64 |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 195 | #endif |
| 196 | |
Tim Peters | 0628433 | 2002-11-11 19:44:39 +0000 | [diff] [blame] | 197 | /* For Windows the Python core is in a DLL by default. Test |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 198 | Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ |
| 199 | #if !defined(MS_NO_COREDLL) && !defined(Py_NO_ENABLE_SHARED) |
| 200 | # define Py_ENABLE_SHARED 1 /* standard symbol for shared library */ |
| 201 | # define MS_COREDLL /* deprecated old symbol */ |
| 202 | #endif /* !MS_NO_COREDLL && ... */ |
| 203 | |
| 204 | /* Deprecated USE_DL_EXPORT macro - please use Py_BUILD_CORE */ |
| 205 | #ifdef USE_DL_EXPORT |
| 206 | # define Py_BUILD_CORE |
| 207 | #endif /* USE_DL_EXPORT */ |
| 208 | |
| 209 | /* All windows compilers that use this header support __declspec */ |
| 210 | #define HAVE_DECLSPEC_DLL |
| 211 | |
| 212 | /* For an MSVC DLL, we can nominate the .lib files used by extensions */ |
| 213 | #ifdef MS_COREDLL |
| 214 | # ifndef Py_BUILD_CORE /* not building the core - must be an ext */ |
| 215 | # if defined(_MSC_VER) |
Tim Peters | 0628433 | 2002-11-11 19:44:39 +0000 | [diff] [blame] | 216 | /* So MSVC users need not specify the .lib file in |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 217 | their Makefile (other compilers are generally |
| 218 | taken care of by distutils.) */ |
| 219 | # ifdef _DEBUG |
Mark Hammond | 67e5582 | 2003-07-31 02:06:22 +0000 | [diff] [blame] | 220 | # pragma comment(lib,"python24_d.lib") |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 221 | # else |
Mark Hammond | 67e5582 | 2003-07-31 02:06:22 +0000 | [diff] [blame] | 222 | # pragma comment(lib,"python24.lib") |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 223 | # endif /* _DEBUG */ |
| 224 | # endif /* _MSC_VER */ |
| 225 | # endif /* Py_BUILD_CORE */ |
| 226 | #endif /* MS_COREDLL */ |
| 227 | |
Guido van Rossum | c66ae96 | 2000-05-08 14:14:48 +0000 | [diff] [blame] | 228 | #if defined(MS_WIN64) |
Guido van Rossum | da5cc82 | 2000-05-10 13:25:32 +0000 | [diff] [blame] | 229 | /* maintain "win32" sys.platform for backward compatibility of Python code, |
| 230 | the Win64 API should be close enough to the Win32 API to make this |
| 231 | preferable */ |
Fred Drake | a3f6e91 | 2000-06-29 20:44:47 +0000 | [diff] [blame] | 232 | # define PLATFORM "win32" |
| 233 | # define SIZEOF_VOID_P 8 |
| 234 | # define SIZEOF_TIME_T 8 |
| 235 | # define SIZEOF_OFF_T 4 |
| 236 | # define SIZEOF_FPOS_T 8 |
| 237 | # define SIZEOF_HKEY 8 |
| 238 | /* configure.in defines HAVE_LARGEFILE_SUPPORT iff HAVE_LONG_LONG, |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 239 | sizeof(off_t) > sizeof(long), and sizeof(PY_LONG_LONG) >= sizeof(off_t). |
Fred Drake | a3f6e91 | 2000-06-29 20:44:47 +0000 | [diff] [blame] | 240 | On Win64 the second condition is not true, but if fpos_t replaces off_t |
| 241 | then this is true. The uses of HAVE_LARGEFILE_SUPPORT imply that Win64 |
| 242 | should define this. */ |
| 243 | # define HAVE_LARGEFILE_SUPPORT |
Guido van Rossum | c66ae96 | 2000-05-08 14:14:48 +0000 | [diff] [blame] | 244 | #elif defined(MS_WIN32) |
Fred Drake | a3f6e91 | 2000-06-29 20:44:47 +0000 | [diff] [blame] | 245 | # define PLATFORM "win32" |
Tim Peters | 6e13a56 | 2001-09-06 00:32:15 +0000 | [diff] [blame] | 246 | # define HAVE_LARGEFILE_SUPPORT |
Tim Peters | 0628433 | 2002-11-11 19:44:39 +0000 | [diff] [blame] | 247 | # define SIZEOF_VOID_P 4 |
| 248 | # define SIZEOF_TIME_T 4 |
| 249 | # define SIZEOF_OFF_T 4 |
| 250 | # define SIZEOF_FPOS_T 8 |
| 251 | # define SIZEOF_HKEY 4 |
Guido van Rossum | c66ae96 | 2000-05-08 14:14:48 +0000 | [diff] [blame] | 252 | #endif |
| 253 | |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 254 | #ifdef _DEBUG |
| 255 | # define Py_DEBUG |
| 256 | #endif |
| 257 | |
Guido van Rossum | 950a126 | 1996-07-30 17:38:17 +0000 | [diff] [blame] | 258 | |
Guido van Rossum | f4aeb84 | 1998-02-19 20:59:23 +0000 | [diff] [blame] | 259 | #ifdef MS_WIN32 |
Guido van Rossum | d3ab101 | 1998-05-29 02:53:29 +0000 | [diff] [blame] | 260 | |
Tim Peters | 208efe5 | 2001-06-26 22:40:47 +0000 | [diff] [blame] | 261 | #define SIZEOF_SHORT 2 |
Guido van Rossum | d3ab101 | 1998-05-29 02:53:29 +0000 | [diff] [blame] | 262 | #define SIZEOF_INT 4 |
| 263 | #define SIZEOF_LONG 4 |
Guido van Rossum | b00d252 | 1998-09-17 13:19:36 +0000 | [diff] [blame] | 264 | #define SIZEOF_LONG_LONG 8 |
Guido van Rossum | d3ab101 | 1998-05-29 02:53:29 +0000 | [diff] [blame] | 265 | |
Guido van Rossum | f4aeb84 | 1998-02-19 20:59:23 +0000 | [diff] [blame] | 266 | #endif |
| 267 | |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 268 | /* Fairly standard from here! */ |
| 269 | |
| 270 | /* Define if on AIX 3. |
| 271 | System headers sometimes define this. |
| 272 | We just want to avoid a redefinition error message. */ |
| 273 | #ifndef _ALL_SOURCE |
| 274 | /* #undef _ALL_SOURCE */ |
| 275 | #endif |
| 276 | |
| 277 | /* Define to empty if the keyword does not work. */ |
| 278 | /* #define const */ |
| 279 | |
| 280 | /* Define if you have dirent.h. */ |
| 281 | /* #define DIRENT 1 */ |
| 282 | |
| 283 | /* Define to the type of elements in the array set by `getgroups'. |
| 284 | Usually this is either `int' or `gid_t'. */ |
| 285 | /* #undef GETGROUPS_T */ |
| 286 | |
| 287 | /* Define to `int' if <sys/types.h> doesn't define. */ |
| 288 | /* #undef gid_t */ |
| 289 | |
| 290 | /* Define if your struct tm has tm_zone. */ |
| 291 | /* #undef HAVE_TM_ZONE */ |
| 292 | |
| 293 | /* Define if you don't have tm_zone but do have the external array |
| 294 | tzname. */ |
| 295 | #define HAVE_TZNAME |
| 296 | |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 297 | /* Define to `int' if <sys/types.h> doesn't define. */ |
| 298 | /* #undef mode_t */ |
| 299 | |
| 300 | /* Define if you don't have dirent.h, but have ndir.h. */ |
| 301 | /* #undef NDIR */ |
| 302 | |
| 303 | /* Define to `long' if <sys/types.h> doesn't define. */ |
| 304 | /* #undef off_t */ |
| 305 | |
| 306 | /* Define to `int' if <sys/types.h> doesn't define. */ |
| 307 | /* #undef pid_t */ |
| 308 | |
| 309 | /* Define if the system does not provide POSIX.1 features except |
| 310 | with this defined. */ |
| 311 | /* #undef _POSIX_1_SOURCE */ |
| 312 | |
| 313 | /* Define if you need to in order for stat and other things to work. */ |
| 314 | /* #undef _POSIX_SOURCE */ |
| 315 | |
| 316 | /* Define as the return type of signal handlers (int or void). */ |
| 317 | #define RETSIGTYPE void |
| 318 | |
| 319 | /* Define to `unsigned' if <sys/types.h> doesn't define. */ |
| 320 | /* #undef size_t */ |
| 321 | |
Guido van Rossum | db575db | 2000-04-24 15:37:34 +0000 | [diff] [blame] | 322 | /* Define to `int' if <sys/types.h> doesn't define. */ |
Martin v. Löwis | 272cb40 | 2002-03-01 08:31:07 +0000 | [diff] [blame] | 323 | #if _MSC_VER + 0 >= 1300 |
| 324 | /* VC.NET typedefs socklen_t in ws2tcpip.h. */ |
| 325 | #else |
Guido van Rossum | db575db | 2000-04-24 15:37:34 +0000 | [diff] [blame] | 326 | #define socklen_t int |
Martin v. Löwis | 272cb40 | 2002-03-01 08:31:07 +0000 | [diff] [blame] | 327 | #endif |
Guido van Rossum | db575db | 2000-04-24 15:37:34 +0000 | [diff] [blame] | 328 | |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 329 | /* Define if you have the ANSI C header files. */ |
| 330 | #define STDC_HEADERS 1 |
| 331 | |
| 332 | /* Define if you don't have dirent.h, but have sys/dir.h. */ |
| 333 | /* #undef SYSDIR */ |
| 334 | |
| 335 | /* Define if you don't have dirent.h, but have sys/ndir.h. */ |
| 336 | /* #undef SYSNDIR */ |
| 337 | |
| 338 | /* Define if you can safely include both <sys/time.h> and <time.h>. */ |
| 339 | /* #undef TIME_WITH_SYS_TIME */ |
| 340 | |
| 341 | /* Define if your <sys/time.h> declares struct tm. */ |
| 342 | /* #define TM_IN_SYS_TIME 1 */ |
| 343 | |
| 344 | /* Define to `int' if <sys/types.h> doesn't define. */ |
| 345 | /* #undef uid_t */ |
| 346 | |
| 347 | /* Define if the closedir function returns void instead of int. */ |
| 348 | /* #undef VOID_CLOSEDIR */ |
| 349 | |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 350 | /* Define if getpgrp() must be called as getpgrp(0) |
| 351 | and (consequently) setpgrp() as setpgrp(0, 0). */ |
| 352 | /* #undef GETPGRP_HAVE_ARGS */ |
| 353 | |
| 354 | /* Define this if your time.h defines altzone */ |
| 355 | /* #define HAVE_ALTZONE */ |
| 356 | |
Guido van Rossum | eaf9b6c | 1996-08-22 00:06:59 +0000 | [diff] [blame] | 357 | /* Define if you have the putenv function. */ |
Guido van Rossum | eaf9b6c | 1996-08-22 00:06:59 +0000 | [diff] [blame] | 358 | #define HAVE_PUTENV |
Guido van Rossum | eaf9b6c | 1996-08-22 00:06:59 +0000 | [diff] [blame] | 359 | |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 360 | /* Define if your compiler supports function prototypes */ |
| 361 | #define HAVE_PROTOTYPES |
| 362 | |
| 363 | /* Define if you can safely include both <sys/select.h> and <sys/time.h> |
| 364 | (which you can't on SCO ODT 3.0). */ |
| 365 | /* #undef SYS_SELECT_WITH_SYS_TIME */ |
| 366 | |
Martin v. Löwis | 2befa48 | 2002-06-09 13:41:37 +0000 | [diff] [blame] | 367 | /* Define if you want documentation strings in extension modules */ |
| 368 | #define WITH_DOC_STRINGS 1 |
| 369 | |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 370 | /* Define if you want to compile in rudimentary thread support */ |
| 371 | /* #undef WITH_THREAD */ |
| 372 | |
| 373 | /* Define if you want to use the GNU readline library */ |
| 374 | /* #define WITH_READLINE 1 */ |
| 375 | |
Fredrik Lundh | 9b14ab3 | 2001-06-26 22:59:49 +0000 | [diff] [blame] | 376 | /* Define if you want to have a Unicode type. */ |
| 377 | #define Py_USING_UNICODE |
| 378 | |
| 379 | /* Define as the integral type used for Unicode representation. */ |
| 380 | #define PY_UNICODE_TYPE unsigned short |
| 381 | |
| 382 | /* Define as the size of the unicode type. */ |
| 383 | #define Py_UNICODE_SIZE SIZEOF_SHORT |
| 384 | |
Fredrik Lundh | 793c197 | 2001-06-27 19:49:17 +0000 | [diff] [blame] | 385 | /* Define if you have a useable wchar_t type defined in wchar.h; useable |
| 386 | means wchar_t must be 16-bit unsigned type. (see |
| 387 | Include/unicodeobject.h). */ |
| 388 | #if Py_UNICODE_SIZE == 2 |
| 389 | #define HAVE_USABLE_WCHAR_T |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 390 | |
| 391 | /* Define to indicate that the Python Unicode representation can be passed |
| 392 | as-is to Win32 Wide API. */ |
| 393 | #define Py_WIN_WIDE_FILENAMES |
Fredrik Lundh | 793c197 | 2001-06-27 19:49:17 +0000 | [diff] [blame] | 394 | #endif |
| 395 | |
Tim Peters | b26f363 | 2002-03-22 06:32:32 +0000 | [diff] [blame] | 396 | /* Use Python's own small-block memory-allocator. */ |
| 397 | #define WITH_PYMALLOC 1 |
| 398 | |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 399 | /* Define if you have clock. */ |
| 400 | /* #define HAVE_CLOCK */ |
| 401 | |
Guido van Rossum | 9f9fa6d | 1999-12-20 22:57:41 +0000 | [diff] [blame] | 402 | /* Define when any dynamic module loading is enabled */ |
| 403 | #define HAVE_DYNAMIC_LOADING |
| 404 | |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 405 | /* Define if you have ftime. */ |
| 406 | #define HAVE_FTIME |
| 407 | |
| 408 | /* Define if you have getpeername. */ |
Guido van Rossum | c339753 | 1997-05-06 15:58:18 +0000 | [diff] [blame] | 409 | #define HAVE_GETPEERNAME |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 410 | |
| 411 | /* Define if you have getpgrp. */ |
| 412 | /* #undef HAVE_GETPGRP */ |
| 413 | |
| 414 | /* Define if you have getpid. */ |
Guido van Rossum | c339753 | 1997-05-06 15:58:18 +0000 | [diff] [blame] | 415 | #define HAVE_GETPID |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 416 | |
| 417 | /* Define if you have gettimeofday. */ |
| 418 | /* #undef HAVE_GETTIMEOFDAY */ |
| 419 | |
| 420 | /* Define if you have getwd. */ |
| 421 | /* #undef HAVE_GETWD */ |
| 422 | |
| 423 | /* Define if you have lstat. */ |
| 424 | /* #undef HAVE_LSTAT */ |
| 425 | |
Guido van Rossum | 63096d4 | 1998-04-10 21:28:49 +0000 | [diff] [blame] | 426 | /* Define if you have the mktime function. */ |
| 427 | #define HAVE_MKTIME |
| 428 | |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 429 | /* Define if you have nice. */ |
| 430 | /* #undef HAVE_NICE */ |
| 431 | |
| 432 | /* Define if you have readlink. */ |
| 433 | /* #undef HAVE_READLINK */ |
| 434 | |
| 435 | /* Define if you have select. */ |
| 436 | /* #undef HAVE_SELECT */ |
| 437 | |
| 438 | /* Define if you have setpgid. */ |
| 439 | /* #undef HAVE_SETPGID */ |
| 440 | |
| 441 | /* Define if you have setpgrp. */ |
| 442 | /* #undef HAVE_SETPGRP */ |
| 443 | |
| 444 | /* Define if you have setsid. */ |
| 445 | /* #undef HAVE_SETSID */ |
| 446 | |
Guido van Rossum | c339753 | 1997-05-06 15:58:18 +0000 | [diff] [blame] | 447 | /* Define if you have setvbuf. */ |
| 448 | #define HAVE_SETVBUF |
| 449 | |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 450 | /* Define if you have siginterrupt. */ |
| 451 | /* #undef HAVE_SIGINTERRUPT */ |
| 452 | |
| 453 | /* Define if you have symlink. */ |
| 454 | /* #undef HAVE_SYMLINK */ |
| 455 | |
| 456 | /* Define if you have tcgetpgrp. */ |
| 457 | /* #undef HAVE_TCGETPGRP */ |
| 458 | |
| 459 | /* Define if you have tcsetpgrp. */ |
| 460 | /* #undef HAVE_TCSETPGRP */ |
| 461 | |
| 462 | /* Define if you have times. */ |
| 463 | /* #undef HAVE_TIMES */ |
| 464 | |
| 465 | /* Define if you have uname. */ |
| 466 | /* #undef HAVE_UNAME */ |
| 467 | |
| 468 | /* Define if you have waitpid. */ |
| 469 | /* #undef HAVE_WAITPID */ |
| 470 | |
Martin v. Löwis | 9c36c29 | 2002-12-21 18:34:06 +0000 | [diff] [blame] | 471 | /* Define to 1 if you have the `wcscoll' function. */ |
| 472 | #define HAVE_WCSCOLL 1 |
| 473 | |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 474 | /* Define if you have the <dlfcn.h> header file. */ |
| 475 | /* #undef HAVE_DLFCN_H */ |
| 476 | |
| 477 | /* Define if you have the <fcntl.h> header file. */ |
| 478 | #define HAVE_FCNTL_H 1 |
| 479 | |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 480 | /* Define if you have the <stdarg.h> prototypes. */ |
| 481 | #define HAVE_STDARG_PROTOTYPES |
| 482 | |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 483 | /* Define if you have the <sys/audioio.h> header file. */ |
| 484 | /* #undef HAVE_SYS_AUDIOIO_H */ |
| 485 | |
| 486 | /* Define if you have the <sys/param.h> header file. */ |
| 487 | /* #define HAVE_SYS_PARAM_H 1 */ |
| 488 | |
| 489 | /* Define if you have the <sys/select.h> header file. */ |
| 490 | /* #define HAVE_SYS_SELECT_H 1 */ |
| 491 | |
| 492 | /* Define if you have the <sys/time.h> header file. */ |
| 493 | /* #define HAVE_SYS_TIME_H 1 */ |
| 494 | |
| 495 | /* Define if you have the <sys/times.h> header file. */ |
| 496 | /* #define HAVE_SYS_TIMES_H 1 */ |
| 497 | |
| 498 | /* Define if you have the <sys/un.h> header file. */ |
| 499 | /* #define HAVE_SYS_UN_H 1 */ |
| 500 | |
| 501 | /* Define if you have the <sys/utime.h> header file. */ |
Tim Peters | 58e0a8c | 2001-05-14 22:32:33 +0000 | [diff] [blame] | 502 | /* #define HAVE_SYS_UTIME_H 1 */ |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 503 | |
| 504 | /* Define if you have the <sys/utsname.h> header file. */ |
| 505 | /* #define HAVE_SYS_UTSNAME_H 1 */ |
| 506 | |
| 507 | /* Define if you have the <thread.h> header file. */ |
| 508 | /* #undef HAVE_THREAD_H */ |
| 509 | |
| 510 | /* Define if you have the <unistd.h> header file. */ |
| 511 | /* #define HAVE_UNISTD_H 1 */ |
| 512 | |
| 513 | /* Define if you have the <utime.h> header file. */ |
| 514 | /* #define HAVE_UTIME_H 1 */ |
| 515 | |
Martin v. Löwis | 9c36c29 | 2002-12-21 18:34:06 +0000 | [diff] [blame] | 516 | /* Define if the compiler provides a wchar.h header file. */ |
| 517 | #define HAVE_WCHAR_H 1 |
| 518 | |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 519 | /* Define if you have the dl library (-ldl). */ |
| 520 | /* #undef HAVE_LIBDL */ |
| 521 | |
| 522 | /* Define if you have the mpc library (-lmpc). */ |
| 523 | /* #undef HAVE_LIBMPC */ |
| 524 | |
| 525 | /* Define if you have the nsl library (-lnsl). */ |
| 526 | #define HAVE_LIBNSL 1 |
| 527 | |
| 528 | /* Define if you have the seq library (-lseq). */ |
| 529 | /* #undef HAVE_LIBSEQ */ |
| 530 | |
| 531 | /* Define if you have the socket library (-lsocket). */ |
| 532 | #define HAVE_LIBSOCKET 1 |
| 533 | |
| 534 | /* Define if you have the sun library (-lsun). */ |
| 535 | /* #undef HAVE_LIBSUN */ |
| 536 | |
| 537 | /* Define if you have the termcap library (-ltermcap). */ |
| 538 | /* #undef HAVE_LIBTERMCAP */ |
| 539 | |
| 540 | /* Define if you have the termlib library (-ltermlib). */ |
| 541 | /* #undef HAVE_LIBTERMLIB */ |
| 542 | |
| 543 | /* Define if you have the thread library (-lthread). */ |
| 544 | /* #undef HAVE_LIBTHREAD */ |
Guido van Rossum | 87d5e70 | 1996-05-28 22:50:17 +0000 | [diff] [blame] | 545 | #endif /* !Py_CONFIG_H */ |