blob: 495d90cfbfbc5abdda93dc3248eaa0c604cbd845 [file] [log] [blame]
Guido van Rossum87d5e701996-05-28 22:50:17 +00001#ifndef Py_CONFIG_H
2#define Py_CONFIG_H
Guido van Rossum87d5e701996-05-28 22:50:17 +00003
Tim Peters76f373d2001-07-26 21:34:59 +00004/* pyconfig.h. NOT Generated automatically by configure.
Guido van Rossum87d5e701996-05-28 22:50:17 +00005
6This is a manually maintained version used for the Watcom,
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +00007Borland and Microsoft Visual C++ compilers. It is a
Guido van Rossum87d5e701996-05-28 22:50:17 +00008standard part of the Python distribution.
9
Guido van Rossum950a1261996-07-30 17:38:17 +000010WINDOWS DEFINES:
11The code specific to Windows should be wrapped around one of
12the following #defines
13
Guido van Rossumc66ae962000-05-08 14:14:48 +000014MS_WIN64 - Code specific to the MS Win64 API
Martin v. Löwis6238d2b2002-06-30 15:26:10 +000015MS_WIN32 - Code specific to the MS Win32 (and Win64) API (obsolete, this covers all supported APIs)
Guido van Rossum950a1261996-07-30 17:38:17 +000016MS_WINDOWS - Code specific to Windows, but all versions.
Mark Hammond8235ea12002-07-19 06:55:41 +000017Py_ENABLE_SHARED - Code if the Python core is built as a DLL.
Guido van Rossum950a1261996-07-30 17:38:17 +000018
19Also note that neither "_M_IX86" or "_MSC_VER" should be used for
20any purpose other than "Windows Intel x86 specific" and "Microsoft
21compiler specific". Therefore, these should be very rare.
22
Guido van Rossum87d5e701996-05-28 22:50:17 +000023
Mark Hammond8235ea12002-07-19 06:55:41 +000024NOTE: The following symbols are deprecated:
25NT, WIN32, USE_DL_EXPORT, USE_DL_IMPORT, DL_EXPORT, DL_IMPORT
26MS_CORE_DLL.
Fred Drake91c4e2b2000-06-19 13:41:54 +000027
Guido van Rossum87d5e701996-05-28 22:50:17 +000028*/
29
30#include <io.h>
Tim Peters58e0a8c2001-05-14 22:32:33 +000031#define HAVE_SYS_UTIME_H
Guido van Rossum87d5e701996-05-28 22:50:17 +000032#define HAVE_HYPOT
Fred Drake832181e2001-07-17 20:35:59 +000033#define HAVE_TEMPNAM
34#define HAVE_TMPFILE
35#define HAVE_TMPNAM
Mark Hammond8235ea12002-07-19 06:55:41 +000036#define HAVE_CLOCK
37#define HAVE_STRFTIME
38#define HAVE_STRERROR
Guido van Rossum87d5e701996-05-28 22:50:17 +000039#define DONT_HAVE_SIG_ALARM
40#define DONT_HAVE_SIG_PAUSE
Guido van Rossum1bc716f1996-06-28 19:12:06 +000041#define LONG_BIT 32
Mark Hammond8235ea12002-07-19 06:55:41 +000042#define WORD_BIT 32
Guido van Rossum950a1261996-07-30 17:38:17 +000043#define PREFIX ""
44#define EXEC_PREFIX ""
Guido van Rossum87d5e701996-05-28 22:50:17 +000045
Mark Hammond8235ea12002-07-19 06:55:41 +000046#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 Rossum87d5e701996-05-28 22:50:17 +000060/* Microsoft C defines _MSC_VER */
Guido van Rossumc66ae962000-05-08 14:14:48 +000061#ifdef _MSC_VER
62
Tim Peters06284332002-11-11 19:44:39 +000063/* 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 Rossumc66ae962000-05-08 14:14:48 +000085/* 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 Rossumc66ae962000-05-08 14:14:48 +000096
97/* set the COMPILER */
98#ifdef MS_WIN64
99#ifdef _M_IX86
Tim Petersc7ff90b2002-11-11 20:21:06 +0000100#define COMPILER _Py_PASTE_VERSION("64 bit (Intel)")
Martin v. Löwis512efb42004-07-27 14:16:14 +0000101#elif defined(_M_IA64)
102#define COMPILER _Py_PASTE_VERSION("64 bit (Itanium)")
103#elif defined(_M_AMD64)
104#define COMPILER _Py_PASTE_VERSION("64 bit (AMD64)")
Guido van Rossumc66ae962000-05-08 14:14:48 +0000105#else
Tim Peters06284332002-11-11 19:44:39 +0000106#define COMPILER _Py_PASTE_VERSION("64 bit (Unknown)")
Guido van Rossumc66ae962000-05-08 14:14:48 +0000107#endif
108#endif /* MS_WIN64 */
109
110#if defined(MS_WIN32) && !defined(MS_WIN64)
111#ifdef _M_IX86
Tim Peters06284332002-11-11 19:44:39 +0000112#define COMPILER _Py_PASTE_VERSION("32 bit (Intel)")
Guido van Rossumc66ae962000-05-08 14:14:48 +0000113#else
Tim Peters06284332002-11-11 19:44:39 +0000114#define COMPILER _Py_PASTE_VERSION("32 bit (Unknown)")
Guido van Rossumc66ae962000-05-08 14:14:48 +0000115#endif
116#endif /* MS_WIN32 && !MS_WIN64 */
117
Mark Hammond8235ea12002-07-19 06:55:41 +0000118typedef int pid_t;
119#define hypot _hypot
120
Guido van Rossumc66ae962000-05-08 14:14:48 +0000121#endif /* _MSC_VER */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000122
Mark Hammond8235ea12002-07-19 06:55:41 +0000123/* define some ANSI types that are not defined in earlier Win headers */
124#if defined(_MSC_VER) && _MSC_VER >= 1200
125/* This file only exists in VC 6.0 or higher */
126#include <basetsd.h>
Guido van Rossum87d5e701996-05-28 22:50:17 +0000127#endif
Guido van Rossum950a1261996-07-30 17:38:17 +0000128
Mark Hammond8235ea12002-07-19 06:55:41 +0000129/* ------------------------------------------------------------------------*/
Guido van Rossum87d5e701996-05-28 22:50:17 +0000130/* The Borland compiler defines __BORLANDC__ */
Guido van Rossumcf6c0ea1996-10-21 14:52:24 +0000131/* XXX These defines are likely incomplete, but should be easy to fix. */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000132#ifdef __BORLANDC__
133#define COMPILER "[Borland]"
Mark Hammondc756bdb2000-08-15 22:33:59 +0000134
135#ifdef _WIN32
Mark Hammondc756bdb2000-08-15 22:33:59 +0000136/* tested with BCC 5.5 (__BORLANDC__ >= 0x0550)
137 */
Mark Hammondc756bdb2000-08-15 22:33:59 +0000138
Mark Hammondc756bdb2000-08-15 22:33:59 +0000139typedef int pid_t;
Mark Hammondc756bdb2000-08-15 22:33:59 +0000140/* BCC55 seems to understand __declspec(dllimport), it is used in its
Mark Hammond8235ea12002-07-19 06:55:41 +0000141 own header files (winnt.h, ...) - so we can do nothing and get the default*/
Mark Hammondc756bdb2000-08-15 22:33:59 +0000142
Tim Peters58e0a8c2001-05-14 22:32:33 +0000143#undef HAVE_SYS_UTIME_H
144#define HAVE_UTIME_H
145#define HAVE_DIRENT_H
Mark Hammond8235ea12002-07-19 06:55:41 +0000146
147/* rename a few functions for the Borland compiler */
148#include <io.h>
149#define _chsize chsize
150#define _setmode setmode
Tim Peters7f00deb2001-04-21 03:20:47 +0000151
Mark Hammondc756bdb2000-08-15 22:33:59 +0000152#else /* !_WIN32 */
Guido van Rossum60427412000-11-13 17:29:30 +0000153#error "Only Win32 and later are supported"
Mark Hammondc756bdb2000-08-15 22:33:59 +0000154#endif /* !_WIN32 */
155
Guido van Rossum87d5e701996-05-28 22:50:17 +0000156#endif /* BORLANDC */
157
Mark Hammond8235ea12002-07-19 06:55:41 +0000158/* ------------------------------------------------------------------------*/
Mark Hammondc756bdb2000-08-15 22:33:59 +0000159/* egcs/gnu-win32 defines __GNUC__ and _WIN32 */
160#if defined(__GNUC__) && defined(_WIN32)
Tim Petersb26f3632002-03-22 06:32:32 +0000161/* XXX These defines are likely incomplete, but should be easy to fix.
Mark Hammondc756bdb2000-08-15 22:33:59 +0000162 They should be complete enough to build extension modules. */
163/* Suggested by Rene Liebscher <R.Liebscher@gmx.de> to avoid a GCC 2.91.*
164 bug that requires structure imports. More recent versions of the
165 compiler don't exhibit this bug.
166*/
167#if (__GNUC__==2) && (__GNUC_MINOR__<=91)
168#warning "Please use an up-to-date version of gcc! (>2.91 recommended)"
169#endif
170
Mark Hammondc756bdb2000-08-15 22:33:59 +0000171#define COMPILER "[gcc]"
Mark Hammondc756bdb2000-08-15 22:33:59 +0000172#define hypot _hypot
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000173#define PY_LONG_LONG long long
Mark Hammondc756bdb2000-08-15 22:33:59 +0000174#endif /* GNUC */
175
Mark Hammond8235ea12002-07-19 06:55:41 +0000176/* ------------------------------------------------------------------------*/
Mark Hammondc756bdb2000-08-15 22:33:59 +0000177/* lcc-win32 defines __LCC__ */
Mark Hammondc756bdb2000-08-15 22:33:59 +0000178#if defined(__LCC__)
Tim Petersb26f3632002-03-22 06:32:32 +0000179/* XXX These defines are likely incomplete, but should be easy to fix.
Mark Hammondc756bdb2000-08-15 22:33:59 +0000180 They should be complete enough to build extension modules. */
181
Mark Hammondc756bdb2000-08-15 22:33:59 +0000182#define COMPILER "[lcc-win32]"
Mark Hammondc756bdb2000-08-15 22:33:59 +0000183typedef int pid_t;
Mark Hammond8235ea12002-07-19 06:55:41 +0000184/* __declspec() is supported here too - do nothing to get the defaults */
Mark Hammondc756bdb2000-08-15 22:33:59 +0000185
Mark Hammondc756bdb2000-08-15 22:33:59 +0000186#endif /* LCC */
187
Mark Hammond8235ea12002-07-19 06:55:41 +0000188/* ------------------------------------------------------------------------*/
Guido van Rossum950a1261996-07-30 17:38:17 +0000189/* End of compilers - finish up */
190
Mark Hammond8235ea12002-07-19 06:55:41 +0000191#ifndef NO_STDIO_H
192# include <stdio.h>
Guido van Rossum361b5832000-06-30 22:17:53 +0000193#endif
Fred Drakea3f6e912000-06-29 20:44:47 +0000194
Mark Hammond8235ea12002-07-19 06:55:41 +0000195/* 64 bit ints are usually spelt __int64 unless compiler has overridden */
196#define HAVE_LONG_LONG 1
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000197#ifndef PY_LONG_LONG
198# define PY_LONG_LONG __int64
Mark Hammond8235ea12002-07-19 06:55:41 +0000199#endif
200
Tim Peters06284332002-11-11 19:44:39 +0000201/* For Windows the Python core is in a DLL by default. Test
Mark Hammond8235ea12002-07-19 06:55:41 +0000202Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */
203#if !defined(MS_NO_COREDLL) && !defined(Py_NO_ENABLE_SHARED)
204# define Py_ENABLE_SHARED 1 /* standard symbol for shared library */
205# define MS_COREDLL /* deprecated old symbol */
206#endif /* !MS_NO_COREDLL && ... */
207
208/* Deprecated USE_DL_EXPORT macro - please use Py_BUILD_CORE */
209#ifdef USE_DL_EXPORT
210# define Py_BUILD_CORE
211#endif /* USE_DL_EXPORT */
212
213/* All windows compilers that use this header support __declspec */
214#define HAVE_DECLSPEC_DLL
215
216/* For an MSVC DLL, we can nominate the .lib files used by extensions */
217#ifdef MS_COREDLL
218# ifndef Py_BUILD_CORE /* not building the core - must be an ext */
219# if defined(_MSC_VER)
Tim Peters06284332002-11-11 19:44:39 +0000220 /* So MSVC users need not specify the .lib file in
Mark Hammond8235ea12002-07-19 06:55:41 +0000221 their Makefile (other compilers are generally
222 taken care of by distutils.) */
223# ifdef _DEBUG
Mark Hammond67e55822003-07-31 02:06:22 +0000224# pragma comment(lib,"python24_d.lib")
Mark Hammond8235ea12002-07-19 06:55:41 +0000225# else
Mark Hammond67e55822003-07-31 02:06:22 +0000226# pragma comment(lib,"python24.lib")
Mark Hammond8235ea12002-07-19 06:55:41 +0000227# endif /* _DEBUG */
228# endif /* _MSC_VER */
229# endif /* Py_BUILD_CORE */
230#endif /* MS_COREDLL */
231
Guido van Rossumc66ae962000-05-08 14:14:48 +0000232#if defined(MS_WIN64)
Guido van Rossumda5cc822000-05-10 13:25:32 +0000233/* maintain "win32" sys.platform for backward compatibility of Python code,
234 the Win64 API should be close enough to the Win32 API to make this
235 preferable */
Fred Drakea3f6e912000-06-29 20:44:47 +0000236# define PLATFORM "win32"
237# define SIZEOF_VOID_P 8
238# define SIZEOF_TIME_T 8
239# define SIZEOF_OFF_T 4
240# define SIZEOF_FPOS_T 8
241# define SIZEOF_HKEY 8
242/* configure.in defines HAVE_LARGEFILE_SUPPORT iff HAVE_LONG_LONG,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000243 sizeof(off_t) > sizeof(long), and sizeof(PY_LONG_LONG) >= sizeof(off_t).
Fred Drakea3f6e912000-06-29 20:44:47 +0000244 On Win64 the second condition is not true, but if fpos_t replaces off_t
245 then this is true. The uses of HAVE_LARGEFILE_SUPPORT imply that Win64
246 should define this. */
247# define HAVE_LARGEFILE_SUPPORT
Guido van Rossumc66ae962000-05-08 14:14:48 +0000248#elif defined(MS_WIN32)
Fred Drakea3f6e912000-06-29 20:44:47 +0000249# define PLATFORM "win32"
Tim Peters6e13a562001-09-06 00:32:15 +0000250# define HAVE_LARGEFILE_SUPPORT
Tim Peters06284332002-11-11 19:44:39 +0000251# define SIZEOF_VOID_P 4
252# define SIZEOF_TIME_T 4
253# define SIZEOF_OFF_T 4
254# define SIZEOF_FPOS_T 8
255# define SIZEOF_HKEY 4
Guido van Rossumc66ae962000-05-08 14:14:48 +0000256#endif
257
Mark Hammond8235ea12002-07-19 06:55:41 +0000258#ifdef _DEBUG
259# define Py_DEBUG
260#endif
261
Guido van Rossum950a1261996-07-30 17:38:17 +0000262
Guido van Rossumf4aeb841998-02-19 20:59:23 +0000263#ifdef MS_WIN32
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000264
Tim Peters208efe52001-06-26 22:40:47 +0000265#define SIZEOF_SHORT 2
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000266#define SIZEOF_INT 4
267#define SIZEOF_LONG 4
Guido van Rossumb00d2521998-09-17 13:19:36 +0000268#define SIZEOF_LONG_LONG 8
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000269
Raymond Hettingercbcff932004-08-03 08:52:46 +0000270/* VC 7.1 has them and VC 6.0 does not. VC 6.0 has a version number of 1200.
271 If some compiler does not provide them, modify the #if appropriately. */
272#if _MSC_VER != 1200
Martin v. Löwisfe393f42004-07-27 15:57:24 +0000273#define HAVE_UINTPTR_T 1
274#define HAVE_INTPTR_T 1
Raymond Hettingercbcff932004-08-03 08:52:46 +0000275#endif
Martin v. Löwisfe393f42004-07-27 15:57:24 +0000276
Guido van Rossumf4aeb841998-02-19 20:59:23 +0000277#endif
278
Guido van Rossum87d5e701996-05-28 22:50:17 +0000279/* Fairly standard from here! */
280
281/* Define if on AIX 3.
282 System headers sometimes define this.
283 We just want to avoid a redefinition error message. */
284#ifndef _ALL_SOURCE
285/* #undef _ALL_SOURCE */
286#endif
287
288/* Define to empty if the keyword does not work. */
289/* #define const */
290
291/* Define if you have dirent.h. */
292/* #define DIRENT 1 */
293
294/* Define to the type of elements in the array set by `getgroups'.
295 Usually this is either `int' or `gid_t'. */
296/* #undef GETGROUPS_T */
297
298/* Define to `int' if <sys/types.h> doesn't define. */
299/* #undef gid_t */
300
301/* Define if your struct tm has tm_zone. */
302/* #undef HAVE_TM_ZONE */
303
304/* Define if you don't have tm_zone but do have the external array
305 tzname. */
306#define HAVE_TZNAME
307
Guido van Rossum87d5e701996-05-28 22:50:17 +0000308/* Define to `int' if <sys/types.h> doesn't define. */
309/* #undef mode_t */
310
311/* Define if you don't have dirent.h, but have ndir.h. */
312/* #undef NDIR */
313
314/* Define to `long' if <sys/types.h> doesn't define. */
315/* #undef off_t */
316
317/* Define to `int' if <sys/types.h> doesn't define. */
318/* #undef pid_t */
319
320/* Define if the system does not provide POSIX.1 features except
321 with this defined. */
322/* #undef _POSIX_1_SOURCE */
323
324/* Define if you need to in order for stat and other things to work. */
325/* #undef _POSIX_SOURCE */
326
327/* Define as the return type of signal handlers (int or void). */
328#define RETSIGTYPE void
329
330/* Define to `unsigned' if <sys/types.h> doesn't define. */
331/* #undef size_t */
332
Guido van Rossumdb575db2000-04-24 15:37:34 +0000333/* Define to `int' if <sys/types.h> doesn't define. */
Martin v. Löwis272cb402002-03-01 08:31:07 +0000334#if _MSC_VER + 0 >= 1300
335/* VC.NET typedefs socklen_t in ws2tcpip.h. */
336#else
Guido van Rossumdb575db2000-04-24 15:37:34 +0000337#define socklen_t int
Martin v. Löwis272cb402002-03-01 08:31:07 +0000338#endif
Guido van Rossumdb575db2000-04-24 15:37:34 +0000339
Guido van Rossum87d5e701996-05-28 22:50:17 +0000340/* Define if you have the ANSI C header files. */
341#define STDC_HEADERS 1
342
343/* Define if you don't have dirent.h, but have sys/dir.h. */
344/* #undef SYSDIR */
345
346/* Define if you don't have dirent.h, but have sys/ndir.h. */
347/* #undef SYSNDIR */
348
349/* Define if you can safely include both <sys/time.h> and <time.h>. */
350/* #undef TIME_WITH_SYS_TIME */
351
352/* Define if your <sys/time.h> declares struct tm. */
353/* #define TM_IN_SYS_TIME 1 */
354
355/* Define to `int' if <sys/types.h> doesn't define. */
356/* #undef uid_t */
357
358/* Define if the closedir function returns void instead of int. */
359/* #undef VOID_CLOSEDIR */
360
Guido van Rossum87d5e701996-05-28 22:50:17 +0000361/* Define if getpgrp() must be called as getpgrp(0)
362 and (consequently) setpgrp() as setpgrp(0, 0). */
363/* #undef GETPGRP_HAVE_ARGS */
364
365/* Define this if your time.h defines altzone */
366/* #define HAVE_ALTZONE */
367
Guido van Rossumeaf9b6c1996-08-22 00:06:59 +0000368/* Define if you have the putenv function. */
Guido van Rossumeaf9b6c1996-08-22 00:06:59 +0000369#define HAVE_PUTENV
Guido van Rossumeaf9b6c1996-08-22 00:06:59 +0000370
Guido van Rossum87d5e701996-05-28 22:50:17 +0000371/* Define if your compiler supports function prototypes */
372#define HAVE_PROTOTYPES
373
374/* Define if you can safely include both <sys/select.h> and <sys/time.h>
375 (which you can't on SCO ODT 3.0). */
376/* #undef SYS_SELECT_WITH_SYS_TIME */
377
Martin v. Löwis2befa482002-06-09 13:41:37 +0000378/* Define if you want documentation strings in extension modules */
379#define WITH_DOC_STRINGS 1
380
Guido van Rossum87d5e701996-05-28 22:50:17 +0000381/* Define if you want to compile in rudimentary thread support */
382/* #undef WITH_THREAD */
383
384/* Define if you want to use the GNU readline library */
385/* #define WITH_READLINE 1 */
386
Fredrik Lundh9b14ab32001-06-26 22:59:49 +0000387/* Define if you want to have a Unicode type. */
388#define Py_USING_UNICODE
389
390/* Define as the integral type used for Unicode representation. */
391#define PY_UNICODE_TYPE unsigned short
392
393/* Define as the size of the unicode type. */
394#define Py_UNICODE_SIZE SIZEOF_SHORT
395
Fredrik Lundh793c1972001-06-27 19:49:17 +0000396/* Define if you have a useable wchar_t type defined in wchar.h; useable
397 means wchar_t must be 16-bit unsigned type. (see
398 Include/unicodeobject.h). */
399#if Py_UNICODE_SIZE == 2
400#define HAVE_USABLE_WCHAR_T
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000401
402/* Define to indicate that the Python Unicode representation can be passed
403 as-is to Win32 Wide API. */
404#define Py_WIN_WIDE_FILENAMES
Fredrik Lundh793c1972001-06-27 19:49:17 +0000405#endif
406
Tim Petersb26f3632002-03-22 06:32:32 +0000407/* Use Python's own small-block memory-allocator. */
408#define WITH_PYMALLOC 1
409
Guido van Rossum87d5e701996-05-28 22:50:17 +0000410/* Define if you have clock. */
411/* #define HAVE_CLOCK */
412
Guido van Rossum9f9fa6d1999-12-20 22:57:41 +0000413/* Define when any dynamic module loading is enabled */
414#define HAVE_DYNAMIC_LOADING
415
Guido van Rossum87d5e701996-05-28 22:50:17 +0000416/* Define if you have ftime. */
417#define HAVE_FTIME
418
419/* Define if you have getpeername. */
Guido van Rossumc3397531997-05-06 15:58:18 +0000420#define HAVE_GETPEERNAME
Guido van Rossum87d5e701996-05-28 22:50:17 +0000421
422/* Define if you have getpgrp. */
423/* #undef HAVE_GETPGRP */
424
425/* Define if you have getpid. */
Guido van Rossumc3397531997-05-06 15:58:18 +0000426#define HAVE_GETPID
Guido van Rossum87d5e701996-05-28 22:50:17 +0000427
428/* Define if you have gettimeofday. */
429/* #undef HAVE_GETTIMEOFDAY */
430
431/* Define if you have getwd. */
432/* #undef HAVE_GETWD */
433
434/* Define if you have lstat. */
435/* #undef HAVE_LSTAT */
436
Guido van Rossum63096d41998-04-10 21:28:49 +0000437/* Define if you have the mktime function. */
438#define HAVE_MKTIME
439
Guido van Rossum87d5e701996-05-28 22:50:17 +0000440/* Define if you have nice. */
441/* #undef HAVE_NICE */
442
443/* Define if you have readlink. */
444/* #undef HAVE_READLINK */
445
446/* Define if you have select. */
447/* #undef HAVE_SELECT */
448
449/* Define if you have setpgid. */
450/* #undef HAVE_SETPGID */
451
452/* Define if you have setpgrp. */
453/* #undef HAVE_SETPGRP */
454
455/* Define if you have setsid. */
456/* #undef HAVE_SETSID */
457
Guido van Rossumc3397531997-05-06 15:58:18 +0000458/* Define if you have setvbuf. */
459#define HAVE_SETVBUF
460
Guido van Rossum87d5e701996-05-28 22:50:17 +0000461/* Define if you have siginterrupt. */
462/* #undef HAVE_SIGINTERRUPT */
463
464/* Define if you have symlink. */
465/* #undef HAVE_SYMLINK */
466
467/* Define if you have tcgetpgrp. */
468/* #undef HAVE_TCGETPGRP */
469
470/* Define if you have tcsetpgrp. */
471/* #undef HAVE_TCSETPGRP */
472
473/* Define if you have times. */
474/* #undef HAVE_TIMES */
475
476/* Define if you have uname. */
477/* #undef HAVE_UNAME */
478
479/* Define if you have waitpid. */
480/* #undef HAVE_WAITPID */
481
Martin v. Löwis9c36c292002-12-21 18:34:06 +0000482/* Define to 1 if you have the `wcscoll' function. */
483#define HAVE_WCSCOLL 1
484
Guido van Rossum87d5e701996-05-28 22:50:17 +0000485/* Define if you have the <dlfcn.h> header file. */
486/* #undef HAVE_DLFCN_H */
487
488/* Define if you have the <fcntl.h> header file. */
489#define HAVE_FCNTL_H 1
490
Guido van Rossum87d5e701996-05-28 22:50:17 +0000491/* Define if you have the <stdarg.h> prototypes. */
492#define HAVE_STDARG_PROTOTYPES
493
Martin v. Löwisfe393f42004-07-27 15:57:24 +0000494/* Define if you have the <stddef.h> header file. */
495#define HAVE_STDDEF_H 1
496
Guido van Rossum87d5e701996-05-28 22:50:17 +0000497/* Define if you have the <sys/audioio.h> header file. */
498/* #undef HAVE_SYS_AUDIOIO_H */
499
500/* Define if you have the <sys/param.h> header file. */
501/* #define HAVE_SYS_PARAM_H 1 */
502
503/* Define if you have the <sys/select.h> header file. */
504/* #define HAVE_SYS_SELECT_H 1 */
505
506/* Define if you have the <sys/time.h> header file. */
507/* #define HAVE_SYS_TIME_H 1 */
508
509/* Define if you have the <sys/times.h> header file. */
510/* #define HAVE_SYS_TIMES_H 1 */
511
512/* Define if you have the <sys/un.h> header file. */
513/* #define HAVE_SYS_UN_H 1 */
514
515/* Define if you have the <sys/utime.h> header file. */
Tim Peters58e0a8c2001-05-14 22:32:33 +0000516/* #define HAVE_SYS_UTIME_H 1 */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000517
518/* Define if you have the <sys/utsname.h> header file. */
519/* #define HAVE_SYS_UTSNAME_H 1 */
520
521/* Define if you have the <thread.h> header file. */
522/* #undef HAVE_THREAD_H */
523
524/* Define if you have the <unistd.h> header file. */
525/* #define HAVE_UNISTD_H 1 */
526
527/* Define if you have the <utime.h> header file. */
528/* #define HAVE_UTIME_H 1 */
529
Martin v. Löwis9c36c292002-12-21 18:34:06 +0000530/* Define if the compiler provides a wchar.h header file. */
531#define HAVE_WCHAR_H 1
532
Guido van Rossum87d5e701996-05-28 22:50:17 +0000533/* Define if you have the dl library (-ldl). */
534/* #undef HAVE_LIBDL */
535
536/* Define if you have the mpc library (-lmpc). */
537/* #undef HAVE_LIBMPC */
538
539/* Define if you have the nsl library (-lnsl). */
540#define HAVE_LIBNSL 1
541
542/* Define if you have the seq library (-lseq). */
543/* #undef HAVE_LIBSEQ */
544
545/* Define if you have the socket library (-lsocket). */
546#define HAVE_LIBSOCKET 1
547
548/* Define if you have the sun library (-lsun). */
549/* #undef HAVE_LIBSUN */
550
551/* Define if you have the termcap library (-ltermcap). */
552/* #undef HAVE_LIBTERMCAP */
553
554/* Define if you have the termlib library (-ltermlib). */
555/* #undef HAVE_LIBTERMLIB */
556
557/* Define if you have the thread library (-lthread). */
558/* #undef HAVE_LIBTHREAD */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000559#endif /* !Py_CONFIG_H */