blob: f057a75654b749a0ff2ae1f425ebd6be7fd0b02e [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
4/* config.h. NOT Generated automatically by configure.
5
6This is a manually maintained version used for the Watcom,
7Borland and and Microsoft Visual C++ compilers. It is a
8standard 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
15MS_WIN32 - Code specific to the MS Win32 (and Win64) API
Guido van Rossum950a1261996-07-30 17:38:17 +000016MS_WIN16 - Code specific to the old 16 bit Windows API.
17MS_WINDOWS - Code specific to Windows, but all versions.
18MS_COREDLL - Code if the Python core is built as a DLL.
19
20Note that the old defines "NT" and "WIN32" are still supported, but
21will soon be dropped.
22
23Also note that neither "_M_IX86" or "_MSC_VER" should be used for
24any purpose other than "Windows Intel x86 specific" and "Microsoft
25compiler specific". Therefore, these should be very rare.
26
Guido van Rossum87d5e701996-05-28 22:50:17 +000027*/
28
Fred Drake91c4e2b2000-06-19 13:41:54 +000029/* Suggested by Rene Liebscher <R.Liebscher@gmx.de> to avoid a GCC 2.91.*
30 bug that requires structure imports. More recent versions of the
31 compiler don't exhibit this bug.
32*/
33#if (__GNUC__==2) && (__GNUC_MINOR__<=91)
Fred Drakee39607f2000-06-28 03:54:48 +000034#warning "Please use an up-to-date version of gcc! (>2.91 recommended)"
Fred Drake91c4e2b2000-06-19 13:41:54 +000035#endif
36
Guido van Rossum87d5e701996-05-28 22:50:17 +000037/*
38 Some systems require special declarations for data items imported
39 or exported from dynamic link libraries. Note that the definition
40 of DL_IMPORT covers both cases. Define USE_DL_IMPORT for the client
41 of a DLL. Define USE_DL_EXPORT when making a DLL.
42*/
43
44#include <io.h>
45#define HAVE_LIMITS_H
46#define HAVE_HYPOT
47#define DONT_HAVE_SIG_ALARM
48#define DONT_HAVE_SIG_PAUSE
Guido van Rossum1bc716f1996-06-28 19:12:06 +000049#define LONG_BIT 32
Guido van Rossum950a1261996-07-30 17:38:17 +000050#define PREFIX ""
51#define EXEC_PREFIX ""
Guido van Rossum87d5e701996-05-28 22:50:17 +000052
53/* Microsoft C defines _MSC_VER */
Guido van Rossumc66ae962000-05-08 14:14:48 +000054#ifdef _MSC_VER
55
56/* MSVC defines _WINxx to differentiate the windows platform types
57
58 Note that for compatibility reasons _WIN32 is defined on Win32
59 *and* on Win64. For the same reasons, in Python, MS_WIN32 is
60 defined on Win32 *and* Win64. Win32 only code must therefore be
61 guarded as follows:
62 #if defined(MS_WIN32) && !defined(MS_WIN64)
63*/
64#ifdef _WIN64
65#define MS_WIN64
66#endif
67#ifdef _WIN32
68#define NT /* NT is obsolete - please use MS_WIN32 instead */
69#define MS_WIN32
70#endif
71#ifdef _WIN16
72#define MS_WIN16
73#endif
74#define MS_WINDOWS
75
76/* set the COMPILER */
77#ifdef MS_WIN64
78#ifdef _M_IX86
79#define COMPILER "[MSC 64 bit (Intel)]"
80#elif defined(_M_ALPHA)
81#define COMPILER "[MSC 64 bit (Alpha)]"
82#else
83#define COMPILER "[MSC 64 bit (Unknown)]"
84#endif
85#endif /* MS_WIN64 */
86
87#if defined(MS_WIN32) && !defined(MS_WIN64)
88#ifdef _M_IX86
89#define COMPILER "[MSC 32 bit (Intel)]"
90#elif defined(_M_ALPHA)
91#define COMPILER "[MSC 32 bit (Alpha)]"
92#else
93#define COMPILER "[MSC (Unknown)]"
94#endif
95#endif /* MS_WIN32 && !MS_WIN64 */
96
97#endif /* _MSC_VER */
Guido van Rossum87d5e701996-05-28 22:50:17 +000098
99#if defined(_MSC_VER) && _MSC_VER > 850
Guido van Rossum1bc716f1996-06-28 19:12:06 +0000100/* Start of defines for MS_WIN32 using VC++ 2.0 and up */
Guido van Rossum950a1261996-07-30 17:38:17 +0000101
Guido van Rossumeaf9b6c1996-08-22 00:06:59 +0000102/* For NT the Python core is in a DLL by default. Test the
103standard macro MS_COREDLL to find out. If you have an exception
104you must define MS_NO_COREDLL (do not test this macro) */
105#ifndef MS_NO_COREDLL
106#define MS_COREDLL /* Python core is in a DLL */
Guido van Rossum950a1261996-07-30 17:38:17 +0000107#ifndef USE_DL_EXPORT
108#define USE_DL_IMPORT
109#endif /* !USE_DL_EXPORT */
Guido van Rossumeaf9b6c1996-08-22 00:06:59 +0000110#endif /* !MS_NO_COREDLL */
Guido van Rossum950a1261996-07-30 17:38:17 +0000111
Guido van Rossum52f49151998-04-11 02:31:30 +0000112#define PYTHONPATH ".\\DLLs;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk"
Guido van Rossum87d5e701996-05-28 22:50:17 +0000113typedef int pid_t;
Guido van Rossum1bc716f1996-06-28 19:12:06 +0000114#define WORD_BIT 32
Guido van Rossum87d5e701996-05-28 22:50:17 +0000115#pragma warning(disable:4113)
116#define hypot _hypot
117#include <stdio.h>
118#define HAVE_CLOCK
119#define HAVE_STRFTIME
Guido van Rossum9b499d21998-08-12 02:10:05 +0000120#define HAVE_STRERROR
Guido van Rossum87d5e701996-05-28 22:50:17 +0000121#define NT_THREADS
122#define WITH_THREAD
123#ifndef NETSCAPE_PI
124#define USE_SOCKET
Guido van Rossum87d5e701996-05-28 22:50:17 +0000125#endif
126#ifdef USE_DL_IMPORT
127#define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE
128#endif
129#ifdef USE_DL_EXPORT
130#define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE
Guido van Rossum9df827f1998-12-10 16:50:49 +0000131#define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE
Guido van Rossum87d5e701996-05-28 22:50:17 +0000132#endif
Guido van Rossum950a1261996-07-30 17:38:17 +0000133
Guido van Rossum3293b071998-08-25 16:07:15 +0000134#define HAVE_LONG_LONG 1
135#define LONG_LONG __int64
Guido van Rossum950a1261996-07-30 17:38:17 +0000136#endif /* _MSC_VER && > 850 */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000137
Guido van Rossumc66ae962000-05-08 14:14:48 +0000138#if defined(_MSC_VER) && _MSC_VER <= 850 /* presume this implies Win16 */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000139/* Start of defines for 16-bit Windows using VC++ 1.5 */
140#define COMPILER "[MSC 16-bit]"
Guido van Rossumd3af2f31997-11-22 21:56:10 +0000141#define PYTHONPATH ".;.\\lib;.\\lib\\plat-win;.\\lib\\dos-8x3"
Guido van Rossum87d5e701996-05-28 22:50:17 +0000142#define IMPORT_8x3_NAMES
143typedef int pid_t;
Guido van Rossum1bc716f1996-06-28 19:12:06 +0000144#define WORD_BIT 16
Guido van Rossum3d37f431999-01-14 18:51:53 +0000145#define SIZEOF_INT 2
146#define SIZEOF_LONG 4
147#define SIZEOF_VOID_P 4
Guido van Rossum87d5e701996-05-28 22:50:17 +0000148#pragma warning(disable:4113)
149#define memcpy memmove /* memcpy dangerous pointer wrap in Win 3.1 */
150#define hypot _hypot
151#define SIGINT 2
152#include <stdio.h>
153/* Windows 3.1 will not tolerate any console io in a dll */
154#ifdef _USRDLL
155#include <time.h>
Guido van Rossumf57c1701997-09-29 23:36:42 +0000156#ifdef __cplusplus
157extern "C" {
158#endif
Guido van Rossum87d5e701996-05-28 22:50:17 +0000159#define stdin ((FILE *)0)
160#define stdout ((FILE *)1)
161#define stderr ((FILE *)2)
162#define fflush Py_fflush
163int Py_fflush(FILE *);
164#define fgets Py_fgets
165char *Py_fgets(char *, int, FILE *);
166#define fileno Py_fileno
167int Py_fileno(FILE *);
168#define fprintf Py_fprintf
169int Py_fprintf(FILE *, const char *, ...);
170#define printf Py_printf
171int Py_printf(const char *, ...);
172#define sscanf Py_sscanf
173int Py_sscanf(const char *, const char *, ...);
174clock_t clock();
175void _exit(int);
176void exit(int);
177int sscanf(const char *, const char *, ...);
Guido van Rossumf57c1701997-09-29 23:36:42 +0000178#ifdef __cplusplus
179}
180#endif
Guido van Rossum87d5e701996-05-28 22:50:17 +0000181#endif /* _USRDLL */
182#ifndef NETSCAPE_PI
183/* use sockets, but not in a Netscape dll */
184#define USE_SOCKET
185#endif
186#endif /* MS_WIN16 */
187
188/* The Watcom compiler defines __WATCOMC__ */
189#ifdef __WATCOMC__
190#define COMPILER "[Watcom]"
Guido van Rossumd3af2f31997-11-22 21:56:10 +0000191#define PYTHONPATH ".;.\\lib;.\\lib\\plat-win;.\\lib\\dos-8x3"
Guido van Rossum87d5e701996-05-28 22:50:17 +0000192#define IMPORT_8x3_NAMES
193#include <ctype.h>
194#include <direct.h>
195typedef int mode_t;
196typedef int uid_t;
197typedef int gid_t;
Guido van Rossum1bc716f1996-06-28 19:12:06 +0000198typedef int pid_t;
199#if defined(__NT__)
200#define NT /* NT is obsolete - please use MS_WIN32 instead */
201#define MS_WIN32
202#define MS_WINDOWS
203#define NT_THREADS
204#define USE_SOCKET
205#define WITH_THREAD
206#elif defined(__WINDOWS__)
207#define MS_WIN16
208#define MS_WINDOWS
209#endif
210#ifdef M_I386
211#define WORD_BIT 32
Guido van Rossum3d37f431999-01-14 18:51:53 +0000212#define SIZEOF_INT 4
213#define SIZEOF_LONG 4
214#define SIZEOF_VOID_P 4
Guido van Rossum1bc716f1996-06-28 19:12:06 +0000215#else
216#define WORD_BIT 16
Guido van Rossum3d37f431999-01-14 18:51:53 +0000217#define SIZEOF_INT 2
218#define SIZEOF_LONG 4
219#define SIZEOF_VOID_P 4
Guido van Rossum1bc716f1996-06-28 19:12:06 +0000220#endif
Guido van Rossum87d5e701996-05-28 22:50:17 +0000221#define VA_LIST_IS_ARRAY
222#define HAVE_CLOCK
223#define HAVE_STRFTIME
224#ifdef USE_DL_EXPORT
225#define DL_IMPORT(RTYPE) RTYPE __export
226#endif
227#endif /* __WATCOMC__ */
228
229/* The Borland compiler defines __BORLANDC__ */
Guido van Rossumcf6c0ea1996-10-21 14:52:24 +0000230/* XXX These defines are likely incomplete, but should be easy to fix. */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000231#ifdef __BORLANDC__
232#define COMPILER "[Borland]"
Guido van Rossumd3af2f31997-11-22 21:56:10 +0000233#define PYTHONPATH ".;.\\lib;.\\lib\\plat-win;.\\lib\\dos-8x3"
Guido van Rossum87d5e701996-05-28 22:50:17 +0000234#define IMPORT_8x3_NAMES
235#define HAVE_CLOCK
236#define HAVE_STRFTIME
237#ifdef USE_DL_IMPORT
238#define DL_IMPORT(RTYPE) RTYPE __import
239#endif
240#endif /* BORLANDC */
241
Guido van Rossum950a1261996-07-30 17:38:17 +0000242/* End of compilers - finish up */
243
Fred Drakea3f6e912000-06-29 20:44:47 +0000244/* define the ANSI intptr_t type for portable use of a pointer sized
245 integer */
Guido van Rossum361b5832000-06-30 22:17:53 +0000246#if _MSC_VER >= 1200 /* This file only exists in VC 6.0 or higher */
Fred Drakea3f6e912000-06-29 20:44:47 +0000247#include <basetsd.h>
Guido van Rossum361b5832000-06-30 22:17:53 +0000248#endif
Fred Drakea3f6e912000-06-29 20:44:47 +0000249#if defined(MS_WINDOWS) && !defined(MS_WIN64)
250typedef long intptr_t;
251#endif
252
Guido van Rossumc66ae962000-05-08 14:14:48 +0000253#if defined(MS_WIN64)
Guido van Rossumda5cc822000-05-10 13:25:32 +0000254/* maintain "win32" sys.platform for backward compatibility of Python code,
255 the Win64 API should be close enough to the Win32 API to make this
256 preferable */
Fred Drakea3f6e912000-06-29 20:44:47 +0000257# define PLATFORM "win32"
258# define SIZEOF_VOID_P 8
259# define SIZEOF_TIME_T 8
260# define SIZEOF_OFF_T 4
261# define SIZEOF_FPOS_T 8
262# define SIZEOF_HKEY 8
263/* configure.in defines HAVE_LARGEFILE_SUPPORT iff HAVE_LONG_LONG,
264 sizeof(off_t) > sizeof(long), and sizeof(LONG_LONG) >= sizeof(off_t).
265 On Win64 the second condition is not true, but if fpos_t replaces off_t
266 then this is true. The uses of HAVE_LARGEFILE_SUPPORT imply that Win64
267 should define this. */
268# define HAVE_LARGEFILE_SUPPORT
Guido van Rossumc66ae962000-05-08 14:14:48 +0000269#elif defined(MS_WIN32)
Fred Drakea3f6e912000-06-29 20:44:47 +0000270# define PLATFORM "win32"
271# ifdef _M_ALPHA
272# define SIZEOF_VOID_P 8
273# define SIZEOF_TIME_T 8
274# else
275# define SIZEOF_VOID_P 4
276# define SIZEOF_TIME_T 4
277# define SIZEOF_OFF_T 4
278# define SIZEOF_FPOS_T 8
279# define SIZEOF_HKEY 4
280# endif
Guido van Rossumc66ae962000-05-08 14:14:48 +0000281#elif defined(MS_WIN16)
Fred Drakea3f6e912000-06-29 20:44:47 +0000282# define PLATFORM "win16"
Guido van Rossum950a1261996-07-30 17:38:17 +0000283#else
Fred Drakea3f6e912000-06-29 20:44:47 +0000284# define PLATFORM "dos"
Guido van Rossumc66ae962000-05-08 14:14:48 +0000285#endif
286
Guido van Rossum950a1261996-07-30 17:38:17 +0000287
Guido van Rossumf4aeb841998-02-19 20:59:23 +0000288#ifdef MS_WIN32
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000289
Guido van Rossum1a87be11998-08-08 18:25:43 +0000290#ifndef USE_DL_EXPORT
Guido van Rossum446f0331998-08-07 15:32:00 +0000291/* So nobody needs to specify the .lib in their Makefile any more */
292#ifdef _DEBUG
Mark Hammond306e2402000-06-30 15:47:02 +0000293#pragma comment(lib,"python20_d.lib")
Guido van Rossum446f0331998-08-07 15:32:00 +0000294#else
Mark Hammond306e2402000-06-30 15:47:02 +0000295#pragma comment(lib,"python20.lib")
Guido van Rossum446f0331998-08-07 15:32:00 +0000296#endif
Guido van Rossum1a87be11998-08-08 18:25:43 +0000297#endif /* USE_DL_EXPORT */
Guido van Rossum446f0331998-08-07 15:32:00 +0000298
Guido van Rossumbffd6832000-01-20 22:32:56 +0000299#ifdef _DEBUG
300#define Py_DEBUG
301#endif
302
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000303#define SIZEOF_INT 4
304#define SIZEOF_LONG 4
Guido van Rossumb00d2521998-09-17 13:19:36 +0000305#define SIZEOF_LONG_LONG 8
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000306
Guido van Rossumc87f5f41999-06-09 15:36:37 +0000307/* Smaller stack size limit. (9500 would work too, but we're conservative.) */
308
309#ifndef MAX_RECURSION_DEPTH
310#define MAX_RECURSION_DEPTH 5000
311#endif
312
313
Guido van Rossumf4aeb841998-02-19 20:59:23 +0000314/* EXPERIMENTAL FEATURE: When CHECK_IMPORT_CASE is defined, check case of
315 imported modules against case of file; this causes "import String" to fail
316 with a NameError exception when it finds "string.py". Normally, you set
317 the environment variable PYTHONCASEOK (to anything) to disable this
318 feature; to permanently disable it, #undef it here. This only works on
319 case-preserving filesystems; otherwise you definitely want it off. */
320#define CHECK_IMPORT_CASE
321#endif
322
Guido van Rossum87d5e701996-05-28 22:50:17 +0000323/* Fairly standard from here! */
324
325/* Define if on AIX 3.
326 System headers sometimes define this.
327 We just want to avoid a redefinition error message. */
328#ifndef _ALL_SOURCE
329/* #undef _ALL_SOURCE */
330#endif
331
332/* Define to empty if the keyword does not work. */
333/* #define const */
334
335/* Define if you have dirent.h. */
336/* #define DIRENT 1 */
337
338/* Define to the type of elements in the array set by `getgroups'.
339 Usually this is either `int' or `gid_t'. */
340/* #undef GETGROUPS_T */
341
342/* Define to `int' if <sys/types.h> doesn't define. */
343/* #undef gid_t */
344
345/* Define if your struct tm has tm_zone. */
346/* #undef HAVE_TM_ZONE */
347
348/* Define if you don't have tm_zone but do have the external array
349 tzname. */
350#define HAVE_TZNAME
351
352/* Define if on MINIX. */
353/* #undef _MINIX */
354
355/* Define to `int' if <sys/types.h> doesn't define. */
356/* #undef mode_t */
357
358/* Define if you don't have dirent.h, but have ndir.h. */
359/* #undef NDIR */
360
361/* Define to `long' if <sys/types.h> doesn't define. */
362/* #undef off_t */
363
364/* Define to `int' if <sys/types.h> doesn't define. */
365/* #undef pid_t */
366
367/* Define if the system does not provide POSIX.1 features except
368 with this defined. */
369/* #undef _POSIX_1_SOURCE */
370
371/* Define if you need to in order for stat and other things to work. */
372/* #undef _POSIX_SOURCE */
373
374/* Define as the return type of signal handlers (int or void). */
375#define RETSIGTYPE void
376
377/* Define to `unsigned' if <sys/types.h> doesn't define. */
378/* #undef size_t */
379
Guido van Rossumdb575db2000-04-24 15:37:34 +0000380/* Define to `int' if <sys/types.h> doesn't define. */
381#define socklen_t int
382
Guido van Rossum87d5e701996-05-28 22:50:17 +0000383/* Define if you have the ANSI C header files. */
384#define STDC_HEADERS 1
385
386/* Define if you don't have dirent.h, but have sys/dir.h. */
387/* #undef SYSDIR */
388
389/* Define if you don't have dirent.h, but have sys/ndir.h. */
390/* #undef SYSNDIR */
391
392/* Define if you can safely include both <sys/time.h> and <time.h>. */
393/* #undef TIME_WITH_SYS_TIME */
394
395/* Define if your <sys/time.h> declares struct tm. */
396/* #define TM_IN_SYS_TIME 1 */
397
398/* Define to `int' if <sys/types.h> doesn't define. */
399/* #undef uid_t */
400
401/* Define if the closedir function returns void instead of int. */
402/* #undef VOID_CLOSEDIR */
403
404/* Define if your <unistd.h> contains bad prototypes for exec*()
405 (as it does on SGI IRIX 4.x) */
406/* #undef BAD_EXEC_PROTOTYPES */
407
408/* Define if your compiler botches static forward declarations
409 (as it does on SCI ODT 3.0) */
410#define BAD_STATIC_FORWARD 1
411
412/* Define if getpgrp() must be called as getpgrp(0)
413 and (consequently) setpgrp() as setpgrp(0, 0). */
414/* #undef GETPGRP_HAVE_ARGS */
415
416/* Define this if your time.h defines altzone */
417/* #define HAVE_ALTZONE */
418
Guido van Rossumeaf9b6c1996-08-22 00:06:59 +0000419/* Define if you have the putenv function. */
420#ifdef MS_WIN32
421/* Does this exist on Win16? */
422#define HAVE_PUTENV
423#endif
424
Guido van Rossum87d5e701996-05-28 22:50:17 +0000425/* Define if your compiler supports function prototypes */
426#define HAVE_PROTOTYPES
427
428/* Define if you can safely include both <sys/select.h> and <sys/time.h>
429 (which you can't on SCO ODT 3.0). */
430/* #undef SYS_SELECT_WITH_SYS_TIME */
431
432/* Define if you want to use SGI (IRIX 4) dynamic linking.
433 This requires the "dl" library by Jack Jansen,
434 ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z.
435 Don't bother on IRIX 5, it already has dynamic linking using SunOS
Guido van Rossum950a1261996-07-30 17:38:17 +0000436 style shared libraries */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000437/* #undef WITH_SGI_DL */
438
439/* Define if you want to emulate SGI (IRIX 4) dynamic linking.
440 This is rumoured to work on VAX (Ultrix), Sun3 (SunOS 3.4),
441 Sequent Symmetry (Dynix), and Atari ST.
442 This requires the "dl-dld" library,
443 ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z,
444 as well as the "GNU dld" library,
445 ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z.
446 Don't bother on SunOS 4 or 5, they already have dynamic linking using
Guido van Rossum950a1261996-07-30 17:38:17 +0000447 shared libraries */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000448/* #undef WITH_DL_DLD */
449
450/* Define if you want to compile in rudimentary thread support */
451/* #undef WITH_THREAD */
452
453/* Define if you want to use the GNU readline library */
454/* #define WITH_READLINE 1 */
455
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000456/* Define if you want cycle garbage collection */
Guido van Rossum47674022000-06-30 20:31:50 +0000457#define WITH_CYCLE_GC 1
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000458
Guido van Rossum87d5e701996-05-28 22:50:17 +0000459/* Define if you have clock. */
460/* #define HAVE_CLOCK */
461
Guido van Rossum9f9fa6d1999-12-20 22:57:41 +0000462/* Define when any dynamic module loading is enabled */
463#define HAVE_DYNAMIC_LOADING
464
Guido van Rossum87d5e701996-05-28 22:50:17 +0000465/* Define if you have ftime. */
466#define HAVE_FTIME
467
468/* Define if you have getpeername. */
Guido van Rossumc3397531997-05-06 15:58:18 +0000469#define HAVE_GETPEERNAME
Guido van Rossum87d5e701996-05-28 22:50:17 +0000470
471/* Define if you have getpgrp. */
472/* #undef HAVE_GETPGRP */
473
474/* Define if you have getpid. */
Guido van Rossumc3397531997-05-06 15:58:18 +0000475#define HAVE_GETPID
Guido van Rossum87d5e701996-05-28 22:50:17 +0000476
477/* Define if you have gettimeofday. */
478/* #undef HAVE_GETTIMEOFDAY */
479
480/* Define if you have getwd. */
481/* #undef HAVE_GETWD */
482
483/* Define if you have lstat. */
484/* #undef HAVE_LSTAT */
485
Guido van Rossum63096d41998-04-10 21:28:49 +0000486/* Define if you have the mktime function. */
487#define HAVE_MKTIME
488
Guido van Rossum87d5e701996-05-28 22:50:17 +0000489/* Define if you have nice. */
490/* #undef HAVE_NICE */
491
492/* Define if you have readlink. */
493/* #undef HAVE_READLINK */
494
495/* Define if you have select. */
496/* #undef HAVE_SELECT */
497
498/* Define if you have setpgid. */
499/* #undef HAVE_SETPGID */
500
501/* Define if you have setpgrp. */
502/* #undef HAVE_SETPGRP */
503
504/* Define if you have setsid. */
505/* #undef HAVE_SETSID */
506
Guido van Rossumc3397531997-05-06 15:58:18 +0000507/* Define if you have setvbuf. */
508#define HAVE_SETVBUF
509
Guido van Rossum87d5e701996-05-28 22:50:17 +0000510/* Define if you have siginterrupt. */
511/* #undef HAVE_SIGINTERRUPT */
512
513/* Define if you have symlink. */
514/* #undef HAVE_SYMLINK */
515
516/* Define if you have tcgetpgrp. */
517/* #undef HAVE_TCGETPGRP */
518
519/* Define if you have tcsetpgrp. */
520/* #undef HAVE_TCSETPGRP */
521
522/* Define if you have times. */
523/* #undef HAVE_TIMES */
524
525/* Define if you have uname. */
526/* #undef HAVE_UNAME */
527
528/* Define if you have waitpid. */
529/* #undef HAVE_WAITPID */
530
531/* Define if you have the <dlfcn.h> header file. */
532/* #undef HAVE_DLFCN_H */
533
534/* Define if you have the <fcntl.h> header file. */
535#define HAVE_FCNTL_H 1
536
537/* Define if you have the <signal.h> header file. */
538#define HAVE_SIGNAL_H 1
539
540/* Define if you have the <stdarg.h> header file. */
541#define HAVE_STDARG_H 1
542
543/* Define if you have the <stdarg.h> prototypes. */
544#define HAVE_STDARG_PROTOTYPES
545
Guido van Rossum4da55f01998-09-23 13:35:45 +0000546/* Define if you have the <stddef.h> header file. */
547#define HAVE_STDDEF_H 1
548
Guido van Rossum87d5e701996-05-28 22:50:17 +0000549/* Define if you have the <stdlib.h> header file. */
550#define HAVE_STDLIB_H 1
551
552/* Define if you have the <sys/audioio.h> header file. */
553/* #undef HAVE_SYS_AUDIOIO_H */
554
555/* Define if you have the <sys/param.h> header file. */
556/* #define HAVE_SYS_PARAM_H 1 */
557
558/* Define if you have the <sys/select.h> header file. */
559/* #define HAVE_SYS_SELECT_H 1 */
560
561/* Define if you have the <sys/time.h> header file. */
562/* #define HAVE_SYS_TIME_H 1 */
563
564/* Define if you have the <sys/times.h> header file. */
565/* #define HAVE_SYS_TIMES_H 1 */
566
567/* Define if you have the <sys/un.h> header file. */
568/* #define HAVE_SYS_UN_H 1 */
569
570/* Define if you have the <sys/utime.h> header file. */
571#define HAVE_SYS_UTIME_H 1
572
573/* Define if you have the <sys/utsname.h> header file. */
574/* #define HAVE_SYS_UTSNAME_H 1 */
575
576/* Define if you have the <thread.h> header file. */
577/* #undef HAVE_THREAD_H */
578
579/* Define if you have the <unistd.h> header file. */
580/* #define HAVE_UNISTD_H 1 */
581
582/* Define if you have the <utime.h> header file. */
583/* #define HAVE_UTIME_H 1 */
584
585/* Define if you have the dl library (-ldl). */
586/* #undef HAVE_LIBDL */
587
588/* Define if you have the mpc library (-lmpc). */
589/* #undef HAVE_LIBMPC */
590
591/* Define if you have the nsl library (-lnsl). */
592#define HAVE_LIBNSL 1
593
594/* Define if you have the seq library (-lseq). */
595/* #undef HAVE_LIBSEQ */
596
597/* Define if you have the socket library (-lsocket). */
598#define HAVE_LIBSOCKET 1
599
600/* Define if you have the sun library (-lsun). */
601/* #undef HAVE_LIBSUN */
602
603/* Define if you have the termcap library (-ltermcap). */
604/* #undef HAVE_LIBTERMCAP */
605
606/* Define if you have the termlib library (-ltermlib). */
607/* #undef HAVE_LIBTERMLIB */
608
609/* Define if you have the thread library (-lthread). */
610/* #undef HAVE_LIBTHREAD */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000611#endif /* !Py_CONFIG_H */