blob: 6a1e4c101b1d9db6a4f8f00929dde22a0f606fad [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
Guido van Rossumc66ae962000-05-08 14:14:48 +0000244#if defined(MS_WIN64)
Guido van Rossumda5cc822000-05-10 13:25:32 +0000245/* maintain "win32" sys.platform for backward compatibility of Python code,
246 the Win64 API should be close enough to the Win32 API to make this
247 preferable */
248#define PLATFORM "win32"
Guido van Rossumc66ae962000-05-08 14:14:48 +0000249#define SIZEOF_VOID_P 8
250#elif defined(MS_WIN32)
Guido van Rossum950a1261996-07-30 17:38:17 +0000251#define PLATFORM "win32"
Guido van Rossumc66ae962000-05-08 14:14:48 +0000252#ifdef _M_ALPHA
253#define SIZEOF_VOID_P 8
Guido van Rossum950a1261996-07-30 17:38:17 +0000254#else
Guido van Rossumc66ae962000-05-08 14:14:48 +0000255#define SIZEOF_VOID_P 4
256#endif
257#elif defined(MS_WIN16)
Guido van Rossum950a1261996-07-30 17:38:17 +0000258#define PLATFORM "win16"
259#else
260#define PLATFORM "dos"
Guido van Rossumc66ae962000-05-08 14:14:48 +0000261#endif
262
Guido van Rossum950a1261996-07-30 17:38:17 +0000263
Guido van Rossumf4aeb841998-02-19 20:59:23 +0000264#ifdef MS_WIN32
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000265
Guido van Rossum1a87be11998-08-08 18:25:43 +0000266#ifndef USE_DL_EXPORT
Guido van Rossum446f0331998-08-07 15:32:00 +0000267/* So nobody needs to specify the .lib in their Makefile any more */
268#ifdef _DEBUG
Guido van Rossum436364c2000-03-29 01:48:29 +0000269#pragma comment(lib,"python16_d.lib")
Guido van Rossum446f0331998-08-07 15:32:00 +0000270#else
Guido van Rossum436364c2000-03-29 01:48:29 +0000271#pragma comment(lib,"python16.lib")
Guido van Rossum446f0331998-08-07 15:32:00 +0000272#endif
Guido van Rossum1a87be11998-08-08 18:25:43 +0000273#endif /* USE_DL_EXPORT */
Guido van Rossum446f0331998-08-07 15:32:00 +0000274
Guido van Rossumbffd6832000-01-20 22:32:56 +0000275#ifdef _DEBUG
276#define Py_DEBUG
277#endif
278
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000279#define SIZEOF_INT 4
280#define SIZEOF_LONG 4
Guido van Rossumb00d2521998-09-17 13:19:36 +0000281#define SIZEOF_LONG_LONG 8
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000282
Guido van Rossumc87f5f41999-06-09 15:36:37 +0000283/* Smaller stack size limit. (9500 would work too, but we're conservative.) */
284
285#ifndef MAX_RECURSION_DEPTH
286#define MAX_RECURSION_DEPTH 5000
287#endif
288
289
Guido van Rossumf4aeb841998-02-19 20:59:23 +0000290/* EXPERIMENTAL FEATURE: When CHECK_IMPORT_CASE is defined, check case of
291 imported modules against case of file; this causes "import String" to fail
292 with a NameError exception when it finds "string.py". Normally, you set
293 the environment variable PYTHONCASEOK (to anything) to disable this
294 feature; to permanently disable it, #undef it here. This only works on
295 case-preserving filesystems; otherwise you definitely want it off. */
296#define CHECK_IMPORT_CASE
297#endif
298
Guido van Rossum87d5e701996-05-28 22:50:17 +0000299/* Fairly standard from here! */
300
301/* Define if on AIX 3.
302 System headers sometimes define this.
303 We just want to avoid a redefinition error message. */
304#ifndef _ALL_SOURCE
305/* #undef _ALL_SOURCE */
306#endif
307
308/* Define to empty if the keyword does not work. */
309/* #define const */
310
311/* Define if you have dirent.h. */
312/* #define DIRENT 1 */
313
314/* Define to the type of elements in the array set by `getgroups'.
315 Usually this is either `int' or `gid_t'. */
316/* #undef GETGROUPS_T */
317
318/* Define to `int' if <sys/types.h> doesn't define. */
319/* #undef gid_t */
320
321/* Define if your struct tm has tm_zone. */
322/* #undef HAVE_TM_ZONE */
323
324/* Define if you don't have tm_zone but do have the external array
325 tzname. */
326#define HAVE_TZNAME
327
328/* Define if on MINIX. */
329/* #undef _MINIX */
330
331/* Define to `int' if <sys/types.h> doesn't define. */
332/* #undef mode_t */
333
334/* Define if you don't have dirent.h, but have ndir.h. */
335/* #undef NDIR */
336
337/* Define to `long' if <sys/types.h> doesn't define. */
338/* #undef off_t */
339
340/* Define to `int' if <sys/types.h> doesn't define. */
341/* #undef pid_t */
342
343/* Define if the system does not provide POSIX.1 features except
344 with this defined. */
345/* #undef _POSIX_1_SOURCE */
346
347/* Define if you need to in order for stat and other things to work. */
348/* #undef _POSIX_SOURCE */
349
350/* Define as the return type of signal handlers (int or void). */
351#define RETSIGTYPE void
352
353/* Define to `unsigned' if <sys/types.h> doesn't define. */
354/* #undef size_t */
355
Guido van Rossumdb575db2000-04-24 15:37:34 +0000356/* Define to `int' if <sys/types.h> doesn't define. */
357#define socklen_t int
358
Guido van Rossum87d5e701996-05-28 22:50:17 +0000359/* Define if you have the ANSI C header files. */
360#define STDC_HEADERS 1
361
362/* Define if you don't have dirent.h, but have sys/dir.h. */
363/* #undef SYSDIR */
364
365/* Define if you don't have dirent.h, but have sys/ndir.h. */
366/* #undef SYSNDIR */
367
368/* Define if you can safely include both <sys/time.h> and <time.h>. */
369/* #undef TIME_WITH_SYS_TIME */
370
371/* Define if your <sys/time.h> declares struct tm. */
372/* #define TM_IN_SYS_TIME 1 */
373
374/* Define to `int' if <sys/types.h> doesn't define. */
375/* #undef uid_t */
376
377/* Define if the closedir function returns void instead of int. */
378/* #undef VOID_CLOSEDIR */
379
380/* Define if your <unistd.h> contains bad prototypes for exec*()
381 (as it does on SGI IRIX 4.x) */
382/* #undef BAD_EXEC_PROTOTYPES */
383
384/* Define if your compiler botches static forward declarations
385 (as it does on SCI ODT 3.0) */
386#define BAD_STATIC_FORWARD 1
387
388/* Define if getpgrp() must be called as getpgrp(0)
389 and (consequently) setpgrp() as setpgrp(0, 0). */
390/* #undef GETPGRP_HAVE_ARGS */
391
392/* Define this if your time.h defines altzone */
393/* #define HAVE_ALTZONE */
394
Guido van Rossumeaf9b6c1996-08-22 00:06:59 +0000395/* Define if you have the putenv function. */
396#ifdef MS_WIN32
397/* Does this exist on Win16? */
398#define HAVE_PUTENV
399#endif
400
Guido van Rossum87d5e701996-05-28 22:50:17 +0000401/* Define if your compiler supports function prototypes */
402#define HAVE_PROTOTYPES
403
404/* Define if you can safely include both <sys/select.h> and <sys/time.h>
405 (which you can't on SCO ODT 3.0). */
406/* #undef SYS_SELECT_WITH_SYS_TIME */
407
408/* Define if you want to use SGI (IRIX 4) dynamic linking.
409 This requires the "dl" library by Jack Jansen,
410 ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z.
411 Don't bother on IRIX 5, it already has dynamic linking using SunOS
Guido van Rossum950a1261996-07-30 17:38:17 +0000412 style shared libraries */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000413/* #undef WITH_SGI_DL */
414
415/* Define if you want to emulate SGI (IRIX 4) dynamic linking.
416 This is rumoured to work on VAX (Ultrix), Sun3 (SunOS 3.4),
417 Sequent Symmetry (Dynix), and Atari ST.
418 This requires the "dl-dld" library,
419 ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z,
420 as well as the "GNU dld" library,
421 ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z.
422 Don't bother on SunOS 4 or 5, they already have dynamic linking using
Guido van Rossum950a1261996-07-30 17:38:17 +0000423 shared libraries */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000424/* #undef WITH_DL_DLD */
425
426/* Define if you want to compile in rudimentary thread support */
427/* #undef WITH_THREAD */
428
429/* Define if you want to use the GNU readline library */
430/* #define WITH_READLINE 1 */
431
432/* Define if you have clock. */
433/* #define HAVE_CLOCK */
434
Guido van Rossum9f9fa6d1999-12-20 22:57:41 +0000435/* Define when any dynamic module loading is enabled */
436#define HAVE_DYNAMIC_LOADING
437
Guido van Rossum87d5e701996-05-28 22:50:17 +0000438/* Define if you have ftime. */
439#define HAVE_FTIME
440
441/* Define if you have getpeername. */
Guido van Rossumc3397531997-05-06 15:58:18 +0000442#define HAVE_GETPEERNAME
Guido van Rossum87d5e701996-05-28 22:50:17 +0000443
444/* Define if you have getpgrp. */
445/* #undef HAVE_GETPGRP */
446
447/* Define if you have getpid. */
Guido van Rossumc3397531997-05-06 15:58:18 +0000448#define HAVE_GETPID
Guido van Rossum87d5e701996-05-28 22:50:17 +0000449
450/* Define if you have gettimeofday. */
451/* #undef HAVE_GETTIMEOFDAY */
452
453/* Define if you have getwd. */
454/* #undef HAVE_GETWD */
455
456/* Define if you have lstat. */
457/* #undef HAVE_LSTAT */
458
Guido van Rossum63096d41998-04-10 21:28:49 +0000459/* Define if you have the mktime function. */
460#define HAVE_MKTIME
461
Guido van Rossum87d5e701996-05-28 22:50:17 +0000462/* Define if you have nice. */
463/* #undef HAVE_NICE */
464
465/* Define if you have readlink. */
466/* #undef HAVE_READLINK */
467
468/* Define if you have select. */
469/* #undef HAVE_SELECT */
470
471/* Define if you have setpgid. */
472/* #undef HAVE_SETPGID */
473
474/* Define if you have setpgrp. */
475/* #undef HAVE_SETPGRP */
476
477/* Define if you have setsid. */
478/* #undef HAVE_SETSID */
479
Guido van Rossumc3397531997-05-06 15:58:18 +0000480/* Define if you have setvbuf. */
481#define HAVE_SETVBUF
482
Guido van Rossum87d5e701996-05-28 22:50:17 +0000483/* Define if you have siginterrupt. */
484/* #undef HAVE_SIGINTERRUPT */
485
486/* Define if you have symlink. */
487/* #undef HAVE_SYMLINK */
488
489/* Define if you have tcgetpgrp. */
490/* #undef HAVE_TCGETPGRP */
491
492/* Define if you have tcsetpgrp. */
493/* #undef HAVE_TCSETPGRP */
494
495/* Define if you have times. */
496/* #undef HAVE_TIMES */
497
498/* Define if you have uname. */
499/* #undef HAVE_UNAME */
500
501/* Define if you have waitpid. */
502/* #undef HAVE_WAITPID */
503
504/* Define if you have the <dlfcn.h> header file. */
505/* #undef HAVE_DLFCN_H */
506
507/* Define if you have the <fcntl.h> header file. */
508#define HAVE_FCNTL_H 1
509
510/* Define if you have the <signal.h> header file. */
511#define HAVE_SIGNAL_H 1
512
513/* Define if you have the <stdarg.h> header file. */
514#define HAVE_STDARG_H 1
515
516/* Define if you have the <stdarg.h> prototypes. */
517#define HAVE_STDARG_PROTOTYPES
518
Guido van Rossum4da55f01998-09-23 13:35:45 +0000519/* Define if you have the <stddef.h> header file. */
520#define HAVE_STDDEF_H 1
521
Guido van Rossum87d5e701996-05-28 22:50:17 +0000522/* Define if you have the <stdlib.h> header file. */
523#define HAVE_STDLIB_H 1
524
525/* Define if you have the <sys/audioio.h> header file. */
526/* #undef HAVE_SYS_AUDIOIO_H */
527
528/* Define if you have the <sys/param.h> header file. */
529/* #define HAVE_SYS_PARAM_H 1 */
530
531/* Define if you have the <sys/select.h> header file. */
532/* #define HAVE_SYS_SELECT_H 1 */
533
534/* Define if you have the <sys/time.h> header file. */
535/* #define HAVE_SYS_TIME_H 1 */
536
537/* Define if you have the <sys/times.h> header file. */
538/* #define HAVE_SYS_TIMES_H 1 */
539
540/* Define if you have the <sys/un.h> header file. */
541/* #define HAVE_SYS_UN_H 1 */
542
543/* Define if you have the <sys/utime.h> header file. */
544#define HAVE_SYS_UTIME_H 1
545
546/* Define if you have the <sys/utsname.h> header file. */
547/* #define HAVE_SYS_UTSNAME_H 1 */
548
549/* Define if you have the <thread.h> header file. */
550/* #undef HAVE_THREAD_H */
551
552/* Define if you have the <unistd.h> header file. */
553/* #define HAVE_UNISTD_H 1 */
554
555/* Define if you have the <utime.h> header file. */
556/* #define HAVE_UTIME_H 1 */
557
558/* Define if you have the dl library (-ldl). */
559/* #undef HAVE_LIBDL */
560
561/* Define if you have the mpc library (-lmpc). */
562/* #undef HAVE_LIBMPC */
563
564/* Define if you have the nsl library (-lnsl). */
565#define HAVE_LIBNSL 1
566
567/* Define if you have the seq library (-lseq). */
568/* #undef HAVE_LIBSEQ */
569
570/* Define if you have the socket library (-lsocket). */
571#define HAVE_LIBSOCKET 1
572
573/* Define if you have the sun library (-lsun). */
574/* #undef HAVE_LIBSUN */
575
576/* Define if you have the termcap library (-ltermcap). */
577/* #undef HAVE_LIBTERMCAP */
578
579/* Define if you have the termlib library (-ltermlib). */
580/* #undef HAVE_LIBTERMLIB */
581
582/* Define if you have the thread library (-lthread). */
583/* #undef HAVE_LIBTHREAD */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000584#endif /* !Py_CONFIG_H */