blob: 54c98d18d082eaa3e15621d718c127198d573a1d [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>
31#define HAVE_LIMITS_H
Tim Peters58e0a8c2001-05-14 22:32:33 +000032#define HAVE_SYS_UTIME_H
Guido van Rossum87d5e701996-05-28 22:50:17 +000033#define HAVE_HYPOT
Fred Drake832181e2001-07-17 20:35:59 +000034#define HAVE_TEMPNAM
35#define HAVE_TMPFILE
36#define HAVE_TMPNAM
Mark Hammond8235ea12002-07-19 06:55:41 +000037#define HAVE_CLOCK
38#define HAVE_STRFTIME
39#define HAVE_STRERROR
Guido van Rossum87d5e701996-05-28 22:50:17 +000040#define DONT_HAVE_SIG_ALARM
41#define DONT_HAVE_SIG_PAUSE
Guido van Rossum1bc716f1996-06-28 19:12:06 +000042#define LONG_BIT 32
Mark Hammond8235ea12002-07-19 06:55:41 +000043#define WORD_BIT 32
Guido van Rossum950a1261996-07-30 17:38:17 +000044#define PREFIX ""
45#define EXEC_PREFIX ""
Guido van Rossum87d5e701996-05-28 22:50:17 +000046
Mark Hammond8235ea12002-07-19 06:55:41 +000047#define MS_WIN32 /* only support win32 and greater. */
48#define MS_WINDOWS
49#ifndef PYTHONPATH
50# define PYTHONPATH ".\\DLLs;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk"
51#endif
52#define NT_THREADS
53#define WITH_THREAD
54#ifndef NETSCAPE_PI
55#define USE_SOCKET
56#endif
57
58/* Compiler specific defines */
59
60/* ------------------------------------------------------------------------*/
Guido van Rossum87d5e701996-05-28 22:50:17 +000061/* Microsoft C defines _MSC_VER */
Guido van Rossumc66ae962000-05-08 14:14:48 +000062#ifdef _MSC_VER
63
Tim Peters06284332002-11-11 19:44:39 +000064/* We want COMPILER to expand to a string containing _MSC_VER's *value*.
65 * This is horridly tricky, because the stringization operator only works
66 * on macro arguments, and doesn't evaluate macros passed *as* arguments.
67 * Attempts simpler than the following appear doomed to produce "_MSC_VER"
68 * literally in the string.
69 */
70#define _Py_PASTE_VERSION(SUFFIX) \
71 ("[MSC v." _Py_STRINGIZE(_MSC_VER) " " SUFFIX "]")
72/* e.g., this produces, after compile-time string catenation,
73 * ("[MSC v.1200 32 bit (Intel)]")
74 *
75 * _Py_STRINGIZE(_MSC_VER) expands to
76 * _Py_STRINGIZE1((_MSC_VER)) expands to
77 * _Py_STRINGIZE2(_MSC_VER) but as this call is the result of token-pasting
78 * it's scanned again for macros and so further expands to (under MSVC 6)
79 * _Py_STRINGIZE2(1200) which then expands to
80 * "1200"
81 */
82#define _Py_STRINGIZE(X) _Py_STRINGIZE1((X))
83#define _Py_STRINGIZE1(X) _Py_STRINGIZE2 ## X
84#define _Py_STRINGIZE2(X) #X
85
Guido van Rossumc66ae962000-05-08 14:14:48 +000086/* MSVC defines _WINxx to differentiate the windows platform types
87
88 Note that for compatibility reasons _WIN32 is defined on Win32
89 *and* on Win64. For the same reasons, in Python, MS_WIN32 is
90 defined on Win32 *and* Win64. Win32 only code must therefore be
91 guarded as follows:
92 #if defined(MS_WIN32) && !defined(MS_WIN64)
93*/
94#ifdef _WIN64
95#define MS_WIN64
96#endif
Guido van Rossumc66ae962000-05-08 14:14:48 +000097
98/* set the COMPILER */
99#ifdef MS_WIN64
100#ifdef _M_IX86
Tim Petersc7ff90b2002-11-11 20:21:06 +0000101#define COMPILER _Py_PASTE_VERSION("64 bit (Intel)")
Guido van Rossumc66ae962000-05-08 14:14:48 +0000102#else
Tim Peters06284332002-11-11 19:44:39 +0000103#define COMPILER _Py_PASTE_VERSION("64 bit (Unknown)")
Guido van Rossumc66ae962000-05-08 14:14:48 +0000104#endif
105#endif /* MS_WIN64 */
106
107#if defined(MS_WIN32) && !defined(MS_WIN64)
108#ifdef _M_IX86
Tim Peters06284332002-11-11 19:44:39 +0000109#define COMPILER _Py_PASTE_VERSION("32 bit (Intel)")
Guido van Rossumc66ae962000-05-08 14:14:48 +0000110#else
Tim Peters06284332002-11-11 19:44:39 +0000111#define COMPILER _Py_PASTE_VERSION("32 bit (Unknown)")
Guido van Rossumc66ae962000-05-08 14:14:48 +0000112#endif
113#endif /* MS_WIN32 && !MS_WIN64 */
114
Mark Hammond8235ea12002-07-19 06:55:41 +0000115typedef int pid_t;
116#define hypot _hypot
117
Guido van Rossumc66ae962000-05-08 14:14:48 +0000118#endif /* _MSC_VER */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000119
Mark Hammond8235ea12002-07-19 06:55:41 +0000120/* define some ANSI types that are not defined in earlier Win headers */
121#if defined(_MSC_VER) && _MSC_VER >= 1200
122/* This file only exists in VC 6.0 or higher */
123#include <basetsd.h>
Guido van Rossum87d5e701996-05-28 22:50:17 +0000124#endif
Guido van Rossum950a1261996-07-30 17:38:17 +0000125
Mark Hammond8235ea12002-07-19 06:55:41 +0000126/* ------------------------------------------------------------------------*/
Guido van Rossum87d5e701996-05-28 22:50:17 +0000127/* The Borland compiler defines __BORLANDC__ */
Guido van Rossumcf6c0ea1996-10-21 14:52:24 +0000128/* XXX These defines are likely incomplete, but should be easy to fix. */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000129#ifdef __BORLANDC__
130#define COMPILER "[Borland]"
Mark Hammondc756bdb2000-08-15 22:33:59 +0000131
132#ifdef _WIN32
Mark Hammondc756bdb2000-08-15 22:33:59 +0000133/* tested with BCC 5.5 (__BORLANDC__ >= 0x0550)
134 */
Mark Hammondc756bdb2000-08-15 22:33:59 +0000135
Mark Hammondc756bdb2000-08-15 22:33:59 +0000136typedef int pid_t;
Mark Hammondc756bdb2000-08-15 22:33:59 +0000137/* BCC55 seems to understand __declspec(dllimport), it is used in its
Mark Hammond8235ea12002-07-19 06:55:41 +0000138 own header files (winnt.h, ...) - so we can do nothing and get the default*/
Mark Hammondc756bdb2000-08-15 22:33:59 +0000139
Tim Peters58e0a8c2001-05-14 22:32:33 +0000140#undef HAVE_SYS_UTIME_H
141#define HAVE_UTIME_H
142#define HAVE_DIRENT_H
Mark Hammond8235ea12002-07-19 06:55:41 +0000143
144/* rename a few functions for the Borland compiler */
145#include <io.h>
146#define _chsize chsize
147#define _setmode setmode
Tim Peters7f00deb2001-04-21 03:20:47 +0000148
Mark Hammondc756bdb2000-08-15 22:33:59 +0000149#else /* !_WIN32 */
Guido van Rossum60427412000-11-13 17:29:30 +0000150#error "Only Win32 and later are supported"
Mark Hammondc756bdb2000-08-15 22:33:59 +0000151#endif /* !_WIN32 */
152
Guido van Rossum87d5e701996-05-28 22:50:17 +0000153#endif /* BORLANDC */
154
Mark Hammond8235ea12002-07-19 06:55:41 +0000155/* ------------------------------------------------------------------------*/
Mark Hammondc756bdb2000-08-15 22:33:59 +0000156/* egcs/gnu-win32 defines __GNUC__ and _WIN32 */
157#if defined(__GNUC__) && defined(_WIN32)
Tim Petersb26f3632002-03-22 06:32:32 +0000158/* XXX These defines are likely incomplete, but should be easy to fix.
Mark Hammondc756bdb2000-08-15 22:33:59 +0000159 They should be complete enough to build extension modules. */
160/* Suggested by Rene Liebscher <R.Liebscher@gmx.de> to avoid a GCC 2.91.*
161 bug that requires structure imports. More recent versions of the
162 compiler don't exhibit this bug.
163*/
164#if (__GNUC__==2) && (__GNUC_MINOR__<=91)
165#warning "Please use an up-to-date version of gcc! (>2.91 recommended)"
166#endif
167
Mark Hammondc756bdb2000-08-15 22:33:59 +0000168#define COMPILER "[gcc]"
Mark Hammondc756bdb2000-08-15 22:33:59 +0000169#define hypot _hypot
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000170#define PY_LONG_LONG long long
Mark Hammondc756bdb2000-08-15 22:33:59 +0000171#endif /* GNUC */
172
Mark Hammond8235ea12002-07-19 06:55:41 +0000173/* ------------------------------------------------------------------------*/
Mark Hammondc756bdb2000-08-15 22:33:59 +0000174/* lcc-win32 defines __LCC__ */
Mark Hammondc756bdb2000-08-15 22:33:59 +0000175#if defined(__LCC__)
Tim Petersb26f3632002-03-22 06:32:32 +0000176/* XXX These defines are likely incomplete, but should be easy to fix.
Mark Hammondc756bdb2000-08-15 22:33:59 +0000177 They should be complete enough to build extension modules. */
178
Mark Hammondc756bdb2000-08-15 22:33:59 +0000179#define COMPILER "[lcc-win32]"
Mark Hammondc756bdb2000-08-15 22:33:59 +0000180typedef int pid_t;
Mark Hammond8235ea12002-07-19 06:55:41 +0000181/* __declspec() is supported here too - do nothing to get the defaults */
Mark Hammondc756bdb2000-08-15 22:33:59 +0000182
Mark Hammondc756bdb2000-08-15 22:33:59 +0000183#endif /* LCC */
184
Mark Hammond8235ea12002-07-19 06:55:41 +0000185/* ------------------------------------------------------------------------*/
Guido van Rossum950a1261996-07-30 17:38:17 +0000186/* End of compilers - finish up */
187
Mark Hammond8235ea12002-07-19 06:55:41 +0000188#ifndef NO_STDIO_H
189# include <stdio.h>
Guido van Rossum361b5832000-06-30 22:17:53 +0000190#endif
Fred Drakea3f6e912000-06-29 20:44:47 +0000191
Mark Hammond8235ea12002-07-19 06:55:41 +0000192/* 64 bit ints are usually spelt __int64 unless compiler has overridden */
193#define HAVE_LONG_LONG 1
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000194#ifndef PY_LONG_LONG
195# define PY_LONG_LONG __int64
Mark Hammond8235ea12002-07-19 06:55:41 +0000196#endif
197
Tim Peters06284332002-11-11 19:44:39 +0000198/* For Windows the Python core is in a DLL by default. Test
Mark Hammond8235ea12002-07-19 06:55:41 +0000199Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */
200#if !defined(MS_NO_COREDLL) && !defined(Py_NO_ENABLE_SHARED)
201# define Py_ENABLE_SHARED 1 /* standard symbol for shared library */
202# define MS_COREDLL /* deprecated old symbol */
203#endif /* !MS_NO_COREDLL && ... */
204
205/* Deprecated USE_DL_EXPORT macro - please use Py_BUILD_CORE */
206#ifdef USE_DL_EXPORT
207# define Py_BUILD_CORE
208#endif /* USE_DL_EXPORT */
209
210/* All windows compilers that use this header support __declspec */
211#define HAVE_DECLSPEC_DLL
212
213/* For an MSVC DLL, we can nominate the .lib files used by extensions */
214#ifdef MS_COREDLL
215# ifndef Py_BUILD_CORE /* not building the core - must be an ext */
216# if defined(_MSC_VER)
Tim Peters06284332002-11-11 19:44:39 +0000217 /* So MSVC users need not specify the .lib file in
Mark Hammond8235ea12002-07-19 06:55:41 +0000218 their Makefile (other compilers are generally
219 taken care of by distutils.) */
220# ifdef _DEBUG
Mark Hammond67e55822003-07-31 02:06:22 +0000221# pragma comment(lib,"python24_d.lib")
Mark Hammond8235ea12002-07-19 06:55:41 +0000222# else
Mark Hammond67e55822003-07-31 02:06:22 +0000223# pragma comment(lib,"python24.lib")
Mark Hammond8235ea12002-07-19 06:55:41 +0000224# endif /* _DEBUG */
225# endif /* _MSC_VER */
226# endif /* Py_BUILD_CORE */
227#endif /* MS_COREDLL */
228
Guido van Rossumc66ae962000-05-08 14:14:48 +0000229#if defined(MS_WIN64)
Guido van Rossumda5cc822000-05-10 13:25:32 +0000230/* maintain "win32" sys.platform for backward compatibility of Python code,
231 the Win64 API should be close enough to the Win32 API to make this
232 preferable */
Fred Drakea3f6e912000-06-29 20:44:47 +0000233# define PLATFORM "win32"
234# define SIZEOF_VOID_P 8
235# define SIZEOF_TIME_T 8
236# define SIZEOF_OFF_T 4
237# define SIZEOF_FPOS_T 8
238# define SIZEOF_HKEY 8
239/* configure.in defines HAVE_LARGEFILE_SUPPORT iff HAVE_LONG_LONG,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000240 sizeof(off_t) > sizeof(long), and sizeof(PY_LONG_LONG) >= sizeof(off_t).
Fred Drakea3f6e912000-06-29 20:44:47 +0000241 On Win64 the second condition is not true, but if fpos_t replaces off_t
242 then this is true. The uses of HAVE_LARGEFILE_SUPPORT imply that Win64
243 should define this. */
244# define HAVE_LARGEFILE_SUPPORT
Guido van Rossumc66ae962000-05-08 14:14:48 +0000245#elif defined(MS_WIN32)
Fred Drakea3f6e912000-06-29 20:44:47 +0000246# define PLATFORM "win32"
Tim Peters6e13a562001-09-06 00:32:15 +0000247# define HAVE_LARGEFILE_SUPPORT
Tim Peters06284332002-11-11 19:44:39 +0000248# define SIZEOF_VOID_P 4
249# define SIZEOF_TIME_T 4
250# define SIZEOF_OFF_T 4
251# define SIZEOF_FPOS_T 8
252# define SIZEOF_HKEY 4
Guido van Rossumc66ae962000-05-08 14:14:48 +0000253#endif
254
Mark Hammond8235ea12002-07-19 06:55:41 +0000255#ifdef _DEBUG
256# define Py_DEBUG
257#endif
258
Guido van Rossum950a1261996-07-30 17:38:17 +0000259
Guido van Rossumf4aeb841998-02-19 20:59:23 +0000260#ifdef MS_WIN32
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000261
Tim Peters208efe52001-06-26 22:40:47 +0000262#define SIZEOF_SHORT 2
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000263#define SIZEOF_INT 4
264#define SIZEOF_LONG 4
Guido van Rossumb00d2521998-09-17 13:19:36 +0000265#define SIZEOF_LONG_LONG 8
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000266
Guido van Rossumf4aeb841998-02-19 20:59:23 +0000267#endif
268
Guido van Rossum87d5e701996-05-28 22:50:17 +0000269/* Fairly standard from here! */
270
271/* Define if on AIX 3.
272 System headers sometimes define this.
273 We just want to avoid a redefinition error message. */
274#ifndef _ALL_SOURCE
275/* #undef _ALL_SOURCE */
276#endif
277
278/* Define to empty if the keyword does not work. */
279/* #define const */
280
281/* Define if you have dirent.h. */
282/* #define DIRENT 1 */
283
284/* Define to the type of elements in the array set by `getgroups'.
285 Usually this is either `int' or `gid_t'. */
286/* #undef GETGROUPS_T */
287
288/* Define to `int' if <sys/types.h> doesn't define. */
289/* #undef gid_t */
290
291/* Define if your struct tm has tm_zone. */
292/* #undef HAVE_TM_ZONE */
293
294/* Define if you don't have tm_zone but do have the external array
295 tzname. */
296#define HAVE_TZNAME
297
Guido van Rossum87d5e701996-05-28 22:50:17 +0000298/* Define to `int' if <sys/types.h> doesn't define. */
299/* #undef mode_t */
300
301/* Define if you don't have dirent.h, but have ndir.h. */
302/* #undef NDIR */
303
304/* Define to `long' if <sys/types.h> doesn't define. */
305/* #undef off_t */
306
307/* Define to `int' if <sys/types.h> doesn't define. */
308/* #undef pid_t */
309
310/* Define if the system does not provide POSIX.1 features except
311 with this defined. */
312/* #undef _POSIX_1_SOURCE */
313
314/* Define if you need to in order for stat and other things to work. */
315/* #undef _POSIX_SOURCE */
316
317/* Define as the return type of signal handlers (int or void). */
318#define RETSIGTYPE void
319
320/* Define to `unsigned' if <sys/types.h> doesn't define. */
321/* #undef size_t */
322
Guido van Rossumdb575db2000-04-24 15:37:34 +0000323/* Define to `int' if <sys/types.h> doesn't define. */
Martin v. Löwis272cb402002-03-01 08:31:07 +0000324#if _MSC_VER + 0 >= 1300
325/* VC.NET typedefs socklen_t in ws2tcpip.h. */
326#else
Guido van Rossumdb575db2000-04-24 15:37:34 +0000327#define socklen_t int
Martin v. Löwis272cb402002-03-01 08:31:07 +0000328#endif
Guido van Rossumdb575db2000-04-24 15:37:34 +0000329
Guido van Rossum87d5e701996-05-28 22:50:17 +0000330/* Define if you have the ANSI C header files. */
331#define STDC_HEADERS 1
332
333/* Define if you don't have dirent.h, but have sys/dir.h. */
334/* #undef SYSDIR */
335
336/* Define if you don't have dirent.h, but have sys/ndir.h. */
337/* #undef SYSNDIR */
338
339/* Define if you can safely include both <sys/time.h> and <time.h>. */
340/* #undef TIME_WITH_SYS_TIME */
341
342/* Define if your <sys/time.h> declares struct tm. */
343/* #define TM_IN_SYS_TIME 1 */
344
345/* Define to `int' if <sys/types.h> doesn't define. */
346/* #undef uid_t */
347
348/* Define if the closedir function returns void instead of int. */
349/* #undef VOID_CLOSEDIR */
350
Guido van Rossum87d5e701996-05-28 22:50:17 +0000351/* Define if getpgrp() must be called as getpgrp(0)
352 and (consequently) setpgrp() as setpgrp(0, 0). */
353/* #undef GETPGRP_HAVE_ARGS */
354
355/* Define this if your time.h defines altzone */
356/* #define HAVE_ALTZONE */
357
Guido van Rossumeaf9b6c1996-08-22 00:06:59 +0000358/* Define if you have the putenv function. */
Guido van Rossumeaf9b6c1996-08-22 00:06:59 +0000359#define HAVE_PUTENV
Guido van Rossumeaf9b6c1996-08-22 00:06:59 +0000360
Guido van Rossum87d5e701996-05-28 22:50:17 +0000361/* Define if your compiler supports function prototypes */
362#define HAVE_PROTOTYPES
363
364/* Define if you can safely include both <sys/select.h> and <sys/time.h>
365 (which you can't on SCO ODT 3.0). */
366/* #undef SYS_SELECT_WITH_SYS_TIME */
367
Martin v. Löwis2befa482002-06-09 13:41:37 +0000368/* Define if you want documentation strings in extension modules */
369#define WITH_DOC_STRINGS 1
370
Guido van Rossum87d5e701996-05-28 22:50:17 +0000371/* Define if you want to compile in rudimentary thread support */
372/* #undef WITH_THREAD */
373
374/* Define if you want to use the GNU readline library */
375/* #define WITH_READLINE 1 */
376
Fredrik Lundh9b14ab32001-06-26 22:59:49 +0000377/* Define if you want to have a Unicode type. */
378#define Py_USING_UNICODE
379
380/* Define as the integral type used for Unicode representation. */
381#define PY_UNICODE_TYPE unsigned short
382
383/* Define as the size of the unicode type. */
384#define Py_UNICODE_SIZE SIZEOF_SHORT
385
Fredrik Lundh793c1972001-06-27 19:49:17 +0000386/* Define if you have a useable wchar_t type defined in wchar.h; useable
387 means wchar_t must be 16-bit unsigned type. (see
388 Include/unicodeobject.h). */
389#if Py_UNICODE_SIZE == 2
390#define HAVE_USABLE_WCHAR_T
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000391
392/* Define to indicate that the Python Unicode representation can be passed
393 as-is to Win32 Wide API. */
394#define Py_WIN_WIDE_FILENAMES
Fredrik Lundh793c1972001-06-27 19:49:17 +0000395#endif
396
Tim Petersb26f3632002-03-22 06:32:32 +0000397/* Use Python's own small-block memory-allocator. */
398#define WITH_PYMALLOC 1
399
Guido van Rossum87d5e701996-05-28 22:50:17 +0000400/* Define if you have clock. */
401/* #define HAVE_CLOCK */
402
Guido van Rossum9f9fa6d1999-12-20 22:57:41 +0000403/* Define when any dynamic module loading is enabled */
404#define HAVE_DYNAMIC_LOADING
405
Guido van Rossum87d5e701996-05-28 22:50:17 +0000406/* Define if you have ftime. */
407#define HAVE_FTIME
408
409/* Define if you have getpeername. */
Guido van Rossumc3397531997-05-06 15:58:18 +0000410#define HAVE_GETPEERNAME
Guido van Rossum87d5e701996-05-28 22:50:17 +0000411
412/* Define if you have getpgrp. */
413/* #undef HAVE_GETPGRP */
414
415/* Define if you have getpid. */
Guido van Rossumc3397531997-05-06 15:58:18 +0000416#define HAVE_GETPID
Guido van Rossum87d5e701996-05-28 22:50:17 +0000417
418/* Define if you have gettimeofday. */
419/* #undef HAVE_GETTIMEOFDAY */
420
421/* Define if you have getwd. */
422/* #undef HAVE_GETWD */
423
424/* Define if you have lstat. */
425/* #undef HAVE_LSTAT */
426
Guido van Rossum63096d41998-04-10 21:28:49 +0000427/* Define if you have the mktime function. */
428#define HAVE_MKTIME
429
Guido van Rossum87d5e701996-05-28 22:50:17 +0000430/* Define if you have nice. */
431/* #undef HAVE_NICE */
432
433/* Define if you have readlink. */
434/* #undef HAVE_READLINK */
435
436/* Define if you have select. */
437/* #undef HAVE_SELECT */
438
439/* Define if you have setpgid. */
440/* #undef HAVE_SETPGID */
441
442/* Define if you have setpgrp. */
443/* #undef HAVE_SETPGRP */
444
445/* Define if you have setsid. */
446/* #undef HAVE_SETSID */
447
Guido van Rossumc3397531997-05-06 15:58:18 +0000448/* Define if you have setvbuf. */
449#define HAVE_SETVBUF
450
Guido van Rossum87d5e701996-05-28 22:50:17 +0000451/* Define if you have siginterrupt. */
452/* #undef HAVE_SIGINTERRUPT */
453
454/* Define if you have symlink. */
455/* #undef HAVE_SYMLINK */
456
457/* Define if you have tcgetpgrp. */
458/* #undef HAVE_TCGETPGRP */
459
460/* Define if you have tcsetpgrp. */
461/* #undef HAVE_TCSETPGRP */
462
463/* Define if you have times. */
464/* #undef HAVE_TIMES */
465
466/* Define if you have uname. */
467/* #undef HAVE_UNAME */
468
469/* Define if you have waitpid. */
470/* #undef HAVE_WAITPID */
471
Martin v. Löwis9c36c292002-12-21 18:34:06 +0000472/* Define to 1 if you have the `wcscoll' function. */
473#define HAVE_WCSCOLL 1
474
Guido van Rossum87d5e701996-05-28 22:50:17 +0000475/* Define if you have the <dlfcn.h> header file. */
476/* #undef HAVE_DLFCN_H */
477
478/* Define if you have the <fcntl.h> header file. */
479#define HAVE_FCNTL_H 1
480
481/* Define if you have the <signal.h> header file. */
482#define HAVE_SIGNAL_H 1
483
484/* Define if you have the <stdarg.h> header file. */
485#define HAVE_STDARG_H 1
486
487/* Define if you have the <stdarg.h> prototypes. */
488#define HAVE_STDARG_PROTOTYPES
489
Guido van Rossum4da55f01998-09-23 13:35:45 +0000490/* Define if you have the <stddef.h> header file. */
491#define HAVE_STDDEF_H 1
492
Guido van Rossum87d5e701996-05-28 22:50:17 +0000493/* Define if you have the <stdlib.h> header file. */
494#define HAVE_STDLIB_H 1
495
496/* Define if you have the <sys/audioio.h> header file. */
497/* #undef HAVE_SYS_AUDIOIO_H */
498
499/* Define if you have the <sys/param.h> header file. */
500/* #define HAVE_SYS_PARAM_H 1 */
501
502/* Define if you have the <sys/select.h> header file. */
503/* #define HAVE_SYS_SELECT_H 1 */
504
505/* Define if you have the <sys/time.h> header file. */
506/* #define HAVE_SYS_TIME_H 1 */
507
508/* Define if you have the <sys/times.h> header file. */
509/* #define HAVE_SYS_TIMES_H 1 */
510
511/* Define if you have the <sys/un.h> header file. */
512/* #define HAVE_SYS_UN_H 1 */
513
514/* Define if you have the <sys/utime.h> header file. */
Tim Peters58e0a8c2001-05-14 22:32:33 +0000515/* #define HAVE_SYS_UTIME_H 1 */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000516
517/* Define if you have the <sys/utsname.h> header file. */
518/* #define HAVE_SYS_UTSNAME_H 1 */
519
520/* Define if you have the <thread.h> header file. */
521/* #undef HAVE_THREAD_H */
522
523/* Define if you have the <unistd.h> header file. */
524/* #define HAVE_UNISTD_H 1 */
525
526/* Define if you have the <utime.h> header file. */
527/* #define HAVE_UTIME_H 1 */
528
Martin v. Löwis9c36c292002-12-21 18:34:06 +0000529/* Define if the compiler provides a wchar.h header file. */
530#define HAVE_WCHAR_H 1
531
Guido van Rossum87d5e701996-05-28 22:50:17 +0000532/* Define if you have the dl library (-ldl). */
533/* #undef HAVE_LIBDL */
534
535/* Define if you have the mpc library (-lmpc). */
536/* #undef HAVE_LIBMPC */
537
538/* Define if you have the nsl library (-lnsl). */
539#define HAVE_LIBNSL 1
540
541/* Define if you have the seq library (-lseq). */
542/* #undef HAVE_LIBSEQ */
543
544/* Define if you have the socket library (-lsocket). */
545#define HAVE_LIBSOCKET 1
546
547/* Define if you have the sun library (-lsun). */
548/* #undef HAVE_LIBSUN */
549
550/* Define if you have the termcap library (-ltermcap). */
551/* #undef HAVE_LIBTERMCAP */
552
553/* Define if you have the termlib library (-ltermlib). */
554/* #undef HAVE_LIBTERMLIB */
555
556/* Define if you have the thread library (-lthread). */
557/* #undef HAVE_LIBTHREAD */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000558#endif /* !Py_CONFIG_H */