blob: 43bb35f137b7fdc7aedd18faa1282d4db69909d5 [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 */
246#include <basetsd.h>
247#if defined(MS_WINDOWS) && !defined(MS_WIN64)
248typedef long intptr_t;
249#endif
250
Guido van Rossumc66ae962000-05-08 14:14:48 +0000251#if defined(MS_WIN64)
Guido van Rossumda5cc822000-05-10 13:25:32 +0000252/* maintain "win32" sys.platform for backward compatibility of Python code,
253 the Win64 API should be close enough to the Win32 API to make this
254 preferable */
Fred Drakea3f6e912000-06-29 20:44:47 +0000255# define PLATFORM "win32"
256# define SIZEOF_VOID_P 8
257# define SIZEOF_TIME_T 8
258# define SIZEOF_OFF_T 4
259# define SIZEOF_FPOS_T 8
260# define SIZEOF_HKEY 8
261/* configure.in defines HAVE_LARGEFILE_SUPPORT iff HAVE_LONG_LONG,
262 sizeof(off_t) > sizeof(long), and sizeof(LONG_LONG) >= sizeof(off_t).
263 On Win64 the second condition is not true, but if fpos_t replaces off_t
264 then this is true. The uses of HAVE_LARGEFILE_SUPPORT imply that Win64
265 should define this. */
266# define HAVE_LARGEFILE_SUPPORT
Guido van Rossumc66ae962000-05-08 14:14:48 +0000267#elif defined(MS_WIN32)
Fred Drakea3f6e912000-06-29 20:44:47 +0000268# define PLATFORM "win32"
269# ifdef _M_ALPHA
270# define SIZEOF_VOID_P 8
271# define SIZEOF_TIME_T 8
272# else
273# define SIZEOF_VOID_P 4
274# define SIZEOF_TIME_T 4
275# define SIZEOF_OFF_T 4
276# define SIZEOF_FPOS_T 8
277# define SIZEOF_HKEY 4
278# endif
Guido van Rossumc66ae962000-05-08 14:14:48 +0000279#elif defined(MS_WIN16)
Fred Drakea3f6e912000-06-29 20:44:47 +0000280# define PLATFORM "win16"
Guido van Rossum950a1261996-07-30 17:38:17 +0000281#else
Fred Drakea3f6e912000-06-29 20:44:47 +0000282# define PLATFORM "dos"
Guido van Rossumc66ae962000-05-08 14:14:48 +0000283#endif
284
Guido van Rossum950a1261996-07-30 17:38:17 +0000285
Guido van Rossumf4aeb841998-02-19 20:59:23 +0000286#ifdef MS_WIN32
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000287
Guido van Rossum1a87be11998-08-08 18:25:43 +0000288#ifndef USE_DL_EXPORT
Guido van Rossum446f0331998-08-07 15:32:00 +0000289/* So nobody needs to specify the .lib in their Makefile any more */
290#ifdef _DEBUG
Guido van Rossum436364c2000-03-29 01:48:29 +0000291#pragma comment(lib,"python16_d.lib")
Guido van Rossum446f0331998-08-07 15:32:00 +0000292#else
Guido van Rossum436364c2000-03-29 01:48:29 +0000293#pragma comment(lib,"python16.lib")
Guido van Rossum446f0331998-08-07 15:32:00 +0000294#endif
Guido van Rossum1a87be11998-08-08 18:25:43 +0000295#endif /* USE_DL_EXPORT */
Guido van Rossum446f0331998-08-07 15:32:00 +0000296
Guido van Rossumbffd6832000-01-20 22:32:56 +0000297#ifdef _DEBUG
298#define Py_DEBUG
299#endif
300
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000301#define SIZEOF_INT 4
302#define SIZEOF_LONG 4
Guido van Rossumb00d2521998-09-17 13:19:36 +0000303#define SIZEOF_LONG_LONG 8
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000304
Guido van Rossumc87f5f41999-06-09 15:36:37 +0000305/* Smaller stack size limit. (9500 would work too, but we're conservative.) */
306
307#ifndef MAX_RECURSION_DEPTH
308#define MAX_RECURSION_DEPTH 5000
309#endif
310
311
Guido van Rossumf4aeb841998-02-19 20:59:23 +0000312/* EXPERIMENTAL FEATURE: When CHECK_IMPORT_CASE is defined, check case of
313 imported modules against case of file; this causes "import String" to fail
314 with a NameError exception when it finds "string.py". Normally, you set
315 the environment variable PYTHONCASEOK (to anything) to disable this
316 feature; to permanently disable it, #undef it here. This only works on
317 case-preserving filesystems; otherwise you definitely want it off. */
318#define CHECK_IMPORT_CASE
319#endif
320
Guido van Rossum87d5e701996-05-28 22:50:17 +0000321/* Fairly standard from here! */
322
323/* Define if on AIX 3.
324 System headers sometimes define this.
325 We just want to avoid a redefinition error message. */
326#ifndef _ALL_SOURCE
327/* #undef _ALL_SOURCE */
328#endif
329
330/* Define to empty if the keyword does not work. */
331/* #define const */
332
333/* Define if you have dirent.h. */
334/* #define DIRENT 1 */
335
336/* Define to the type of elements in the array set by `getgroups'.
337 Usually this is either `int' or `gid_t'. */
338/* #undef GETGROUPS_T */
339
340/* Define to `int' if <sys/types.h> doesn't define. */
341/* #undef gid_t */
342
343/* Define if your struct tm has tm_zone. */
344/* #undef HAVE_TM_ZONE */
345
346/* Define if you don't have tm_zone but do have the external array
347 tzname. */
348#define HAVE_TZNAME
349
350/* Define if on MINIX. */
351/* #undef _MINIX */
352
353/* Define to `int' if <sys/types.h> doesn't define. */
354/* #undef mode_t */
355
356/* Define if you don't have dirent.h, but have ndir.h. */
357/* #undef NDIR */
358
359/* Define to `long' if <sys/types.h> doesn't define. */
360/* #undef off_t */
361
362/* Define to `int' if <sys/types.h> doesn't define. */
363/* #undef pid_t */
364
365/* Define if the system does not provide POSIX.1 features except
366 with this defined. */
367/* #undef _POSIX_1_SOURCE */
368
369/* Define if you need to in order for stat and other things to work. */
370/* #undef _POSIX_SOURCE */
371
372/* Define as the return type of signal handlers (int or void). */
373#define RETSIGTYPE void
374
375/* Define to `unsigned' if <sys/types.h> doesn't define. */
376/* #undef size_t */
377
Guido van Rossumdb575db2000-04-24 15:37:34 +0000378/* Define to `int' if <sys/types.h> doesn't define. */
379#define socklen_t int
380
Guido van Rossum87d5e701996-05-28 22:50:17 +0000381/* Define if you have the ANSI C header files. */
382#define STDC_HEADERS 1
383
384/* Define if you don't have dirent.h, but have sys/dir.h. */
385/* #undef SYSDIR */
386
387/* Define if you don't have dirent.h, but have sys/ndir.h. */
388/* #undef SYSNDIR */
389
390/* Define if you can safely include both <sys/time.h> and <time.h>. */
391/* #undef TIME_WITH_SYS_TIME */
392
393/* Define if your <sys/time.h> declares struct tm. */
394/* #define TM_IN_SYS_TIME 1 */
395
396/* Define to `int' if <sys/types.h> doesn't define. */
397/* #undef uid_t */
398
399/* Define if the closedir function returns void instead of int. */
400/* #undef VOID_CLOSEDIR */
401
402/* Define if your <unistd.h> contains bad prototypes for exec*()
403 (as it does on SGI IRIX 4.x) */
404/* #undef BAD_EXEC_PROTOTYPES */
405
406/* Define if your compiler botches static forward declarations
407 (as it does on SCI ODT 3.0) */
408#define BAD_STATIC_FORWARD 1
409
410/* Define if getpgrp() must be called as getpgrp(0)
411 and (consequently) setpgrp() as setpgrp(0, 0). */
412/* #undef GETPGRP_HAVE_ARGS */
413
414/* Define this if your time.h defines altzone */
415/* #define HAVE_ALTZONE */
416
Guido van Rossumeaf9b6c1996-08-22 00:06:59 +0000417/* Define if you have the putenv function. */
418#ifdef MS_WIN32
419/* Does this exist on Win16? */
420#define HAVE_PUTENV
421#endif
422
Guido van Rossum87d5e701996-05-28 22:50:17 +0000423/* Define if your compiler supports function prototypes */
424#define HAVE_PROTOTYPES
425
426/* Define if you can safely include both <sys/select.h> and <sys/time.h>
427 (which you can't on SCO ODT 3.0). */
428/* #undef SYS_SELECT_WITH_SYS_TIME */
429
430/* Define if you want to use SGI (IRIX 4) dynamic linking.
431 This requires the "dl" library by Jack Jansen,
432 ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z.
433 Don't bother on IRIX 5, it already has dynamic linking using SunOS
Guido van Rossum950a1261996-07-30 17:38:17 +0000434 style shared libraries */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000435/* #undef WITH_SGI_DL */
436
437/* Define if you want to emulate SGI (IRIX 4) dynamic linking.
438 This is rumoured to work on VAX (Ultrix), Sun3 (SunOS 3.4),
439 Sequent Symmetry (Dynix), and Atari ST.
440 This requires the "dl-dld" library,
441 ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z,
442 as well as the "GNU dld" library,
443 ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z.
444 Don't bother on SunOS 4 or 5, they already have dynamic linking using
Guido van Rossum950a1261996-07-30 17:38:17 +0000445 shared libraries */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000446/* #undef WITH_DL_DLD */
447
448/* Define if you want to compile in rudimentary thread support */
449/* #undef WITH_THREAD */
450
451/* Define if you want to use the GNU readline library */
452/* #define WITH_READLINE 1 */
453
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000454/* Define if you want cycle garbage collection */
455/* #define WITH_CYCLE_GC 1 */
456
Guido van Rossum87d5e701996-05-28 22:50:17 +0000457/* Define if you have clock. */
458/* #define HAVE_CLOCK */
459
Guido van Rossum9f9fa6d1999-12-20 22:57:41 +0000460/* Define when any dynamic module loading is enabled */
461#define HAVE_DYNAMIC_LOADING
462
Guido van Rossum87d5e701996-05-28 22:50:17 +0000463/* Define if you have ftime. */
464#define HAVE_FTIME
465
466/* Define if you have getpeername. */
Guido van Rossumc3397531997-05-06 15:58:18 +0000467#define HAVE_GETPEERNAME
Guido van Rossum87d5e701996-05-28 22:50:17 +0000468
469/* Define if you have getpgrp. */
470/* #undef HAVE_GETPGRP */
471
472/* Define if you have getpid. */
Guido van Rossumc3397531997-05-06 15:58:18 +0000473#define HAVE_GETPID
Guido van Rossum87d5e701996-05-28 22:50:17 +0000474
475/* Define if you have gettimeofday. */
476/* #undef HAVE_GETTIMEOFDAY */
477
478/* Define if you have getwd. */
479/* #undef HAVE_GETWD */
480
481/* Define if you have lstat. */
482/* #undef HAVE_LSTAT */
483
Guido van Rossum63096d41998-04-10 21:28:49 +0000484/* Define if you have the mktime function. */
485#define HAVE_MKTIME
486
Guido van Rossum87d5e701996-05-28 22:50:17 +0000487/* Define if you have nice. */
488/* #undef HAVE_NICE */
489
490/* Define if you have readlink. */
491/* #undef HAVE_READLINK */
492
493/* Define if you have select. */
494/* #undef HAVE_SELECT */
495
496/* Define if you have setpgid. */
497/* #undef HAVE_SETPGID */
498
499/* Define if you have setpgrp. */
500/* #undef HAVE_SETPGRP */
501
502/* Define if you have setsid. */
503/* #undef HAVE_SETSID */
504
Guido van Rossumc3397531997-05-06 15:58:18 +0000505/* Define if you have setvbuf. */
506#define HAVE_SETVBUF
507
Guido van Rossum87d5e701996-05-28 22:50:17 +0000508/* Define if you have siginterrupt. */
509/* #undef HAVE_SIGINTERRUPT */
510
511/* Define if you have symlink. */
512/* #undef HAVE_SYMLINK */
513
514/* Define if you have tcgetpgrp. */
515/* #undef HAVE_TCGETPGRP */
516
517/* Define if you have tcsetpgrp. */
518/* #undef HAVE_TCSETPGRP */
519
520/* Define if you have times. */
521/* #undef HAVE_TIMES */
522
523/* Define if you have uname. */
524/* #undef HAVE_UNAME */
525
526/* Define if you have waitpid. */
527/* #undef HAVE_WAITPID */
528
529/* Define if you have the <dlfcn.h> header file. */
530/* #undef HAVE_DLFCN_H */
531
532/* Define if you have the <fcntl.h> header file. */
533#define HAVE_FCNTL_H 1
534
535/* Define if you have the <signal.h> header file. */
536#define HAVE_SIGNAL_H 1
537
538/* Define if you have the <stdarg.h> header file. */
539#define HAVE_STDARG_H 1
540
541/* Define if you have the <stdarg.h> prototypes. */
542#define HAVE_STDARG_PROTOTYPES
543
Guido van Rossum4da55f01998-09-23 13:35:45 +0000544/* Define if you have the <stddef.h> header file. */
545#define HAVE_STDDEF_H 1
546
Guido van Rossum87d5e701996-05-28 22:50:17 +0000547/* Define if you have the <stdlib.h> header file. */
548#define HAVE_STDLIB_H 1
549
550/* Define if you have the <sys/audioio.h> header file. */
551/* #undef HAVE_SYS_AUDIOIO_H */
552
553/* Define if you have the <sys/param.h> header file. */
554/* #define HAVE_SYS_PARAM_H 1 */
555
556/* Define if you have the <sys/select.h> header file. */
557/* #define HAVE_SYS_SELECT_H 1 */
558
559/* Define if you have the <sys/time.h> header file. */
560/* #define HAVE_SYS_TIME_H 1 */
561
562/* Define if you have the <sys/times.h> header file. */
563/* #define HAVE_SYS_TIMES_H 1 */
564
565/* Define if you have the <sys/un.h> header file. */
566/* #define HAVE_SYS_UN_H 1 */
567
568/* Define if you have the <sys/utime.h> header file. */
569#define HAVE_SYS_UTIME_H 1
570
571/* Define if you have the <sys/utsname.h> header file. */
572/* #define HAVE_SYS_UTSNAME_H 1 */
573
574/* Define if you have the <thread.h> header file. */
575/* #undef HAVE_THREAD_H */
576
577/* Define if you have the <unistd.h> header file. */
578/* #define HAVE_UNISTD_H 1 */
579
580/* Define if you have the <utime.h> header file. */
581/* #define HAVE_UTIME_H 1 */
582
583/* Define if you have the dl library (-ldl). */
584/* #undef HAVE_LIBDL */
585
586/* Define if you have the mpc library (-lmpc). */
587/* #undef HAVE_LIBMPC */
588
589/* Define if you have the nsl library (-lnsl). */
590#define HAVE_LIBNSL 1
591
592/* Define if you have the seq library (-lseq). */
593/* #undef HAVE_LIBSEQ */
594
595/* Define if you have the socket library (-lsocket). */
596#define HAVE_LIBSOCKET 1
597
598/* Define if you have the sun library (-lsun). */
599/* #undef HAVE_LIBSUN */
600
601/* Define if you have the termcap library (-ltermcap). */
602/* #undef HAVE_LIBTERMCAP */
603
604/* Define if you have the termlib library (-ltermlib). */
605/* #undef HAVE_LIBTERMLIB */
606
607/* Define if you have the thread library (-lthread). */
608/* #undef HAVE_LIBTHREAD */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000609#endif /* !Py_CONFIG_H */