blob: a1e947cff30729088e64073ed28401d940590420 [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,
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
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
64/* MSVC defines _WINxx to differentiate the windows platform types
65
66 Note that for compatibility reasons _WIN32 is defined on Win32
67 *and* on Win64. For the same reasons, in Python, MS_WIN32 is
68 defined on Win32 *and* Win64. Win32 only code must therefore be
69 guarded as follows:
70 #if defined(MS_WIN32) && !defined(MS_WIN64)
71*/
72#ifdef _WIN64
73#define MS_WIN64
74#endif
Guido van Rossumc66ae962000-05-08 14:14:48 +000075
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
Mark Hammond8235ea12002-07-19 06:55:41 +000097typedef int pid_t;
98#define hypot _hypot
99
Guido van Rossumc66ae962000-05-08 14:14:48 +0000100#endif /* _MSC_VER */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000101
Mark Hammond8235ea12002-07-19 06:55:41 +0000102/* define some ANSI types that are not defined in earlier Win headers */
103#if defined(_MSC_VER) && _MSC_VER >= 1200
104/* This file only exists in VC 6.0 or higher */
105#include <basetsd.h>
Guido van Rossum87d5e701996-05-28 22:50:17 +0000106#endif
Guido van Rossum950a1261996-07-30 17:38:17 +0000107
Mark Hammond8235ea12002-07-19 06:55:41 +0000108/* ------------------------------------------------------------------------*/
Guido van Rossum87d5e701996-05-28 22:50:17 +0000109/* The Borland compiler defines __BORLANDC__ */
Guido van Rossumcf6c0ea1996-10-21 14:52:24 +0000110/* XXX These defines are likely incomplete, but should be easy to fix. */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000111#ifdef __BORLANDC__
112#define COMPILER "[Borland]"
Mark Hammondc756bdb2000-08-15 22:33:59 +0000113
114#ifdef _WIN32
Mark Hammondc756bdb2000-08-15 22:33:59 +0000115/* tested with BCC 5.5 (__BORLANDC__ >= 0x0550)
116 */
Mark Hammondc756bdb2000-08-15 22:33:59 +0000117
Mark Hammondc756bdb2000-08-15 22:33:59 +0000118typedef int pid_t;
Mark Hammondc756bdb2000-08-15 22:33:59 +0000119/* BCC55 seems to understand __declspec(dllimport), it is used in its
Mark Hammond8235ea12002-07-19 06:55:41 +0000120 own header files (winnt.h, ...) - so we can do nothing and get the default*/
Mark Hammondc756bdb2000-08-15 22:33:59 +0000121
Tim Peters58e0a8c2001-05-14 22:32:33 +0000122#undef HAVE_SYS_UTIME_H
123#define HAVE_UTIME_H
124#define HAVE_DIRENT_H
Mark Hammond8235ea12002-07-19 06:55:41 +0000125
126/* rename a few functions for the Borland compiler */
127#include <io.h>
128#define _chsize chsize
129#define _setmode setmode
Tim Peters7f00deb2001-04-21 03:20:47 +0000130
Mark Hammondc756bdb2000-08-15 22:33:59 +0000131#else /* !_WIN32 */
Guido van Rossum60427412000-11-13 17:29:30 +0000132#error "Only Win32 and later are supported"
Mark Hammondc756bdb2000-08-15 22:33:59 +0000133#endif /* !_WIN32 */
134
Guido van Rossum87d5e701996-05-28 22:50:17 +0000135#endif /* BORLANDC */
136
Mark Hammond8235ea12002-07-19 06:55:41 +0000137/* ------------------------------------------------------------------------*/
Mark Hammondc756bdb2000-08-15 22:33:59 +0000138/* egcs/gnu-win32 defines __GNUC__ and _WIN32 */
139#if defined(__GNUC__) && defined(_WIN32)
Tim Petersb26f3632002-03-22 06:32:32 +0000140/* XXX These defines are likely incomplete, but should be easy to fix.
Mark Hammondc756bdb2000-08-15 22:33:59 +0000141 They should be complete enough to build extension modules. */
142/* Suggested by Rene Liebscher <R.Liebscher@gmx.de> to avoid a GCC 2.91.*
143 bug that requires structure imports. More recent versions of the
144 compiler don't exhibit this bug.
145*/
146#if (__GNUC__==2) && (__GNUC_MINOR__<=91)
147#warning "Please use an up-to-date version of gcc! (>2.91 recommended)"
148#endif
149
Mark Hammondc756bdb2000-08-15 22:33:59 +0000150#define COMPILER "[gcc]"
Mark Hammondc756bdb2000-08-15 22:33:59 +0000151#define hypot _hypot
Tim Petersb26f3632002-03-22 06:32:32 +0000152#define LONG_LONG long long
Mark Hammondc756bdb2000-08-15 22:33:59 +0000153#endif /* GNUC */
154
Mark Hammond8235ea12002-07-19 06:55:41 +0000155/* ------------------------------------------------------------------------*/
Mark Hammondc756bdb2000-08-15 22:33:59 +0000156/* lcc-win32 defines __LCC__ */
Mark Hammondc756bdb2000-08-15 22:33:59 +0000157#if defined(__LCC__)
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
Mark Hammondc756bdb2000-08-15 22:33:59 +0000161#define COMPILER "[lcc-win32]"
Mark Hammondc756bdb2000-08-15 22:33:59 +0000162typedef int pid_t;
Mark Hammond8235ea12002-07-19 06:55:41 +0000163/* __declspec() is supported here too - do nothing to get the defaults */
Mark Hammondc756bdb2000-08-15 22:33:59 +0000164
Mark Hammondc756bdb2000-08-15 22:33:59 +0000165#endif /* LCC */
166
Mark Hammond8235ea12002-07-19 06:55:41 +0000167/* ------------------------------------------------------------------------*/
Guido van Rossum950a1261996-07-30 17:38:17 +0000168/* End of compilers - finish up */
169
Mark Hammond8235ea12002-07-19 06:55:41 +0000170#ifndef NO_STDIO_H
171# include <stdio.h>
Guido van Rossum361b5832000-06-30 22:17:53 +0000172#endif
Fred Drakea3f6e912000-06-29 20:44:47 +0000173
Mark Hammond8235ea12002-07-19 06:55:41 +0000174/* 64 bit ints are usually spelt __int64 unless compiler has overridden */
175#define HAVE_LONG_LONG 1
176#ifndef LONG_LONG
177# define LONG_LONG __int64
178#endif
179
180/* For Windows the Python core is in a DLL by default. Test
181Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */
182#if !defined(MS_NO_COREDLL) && !defined(Py_NO_ENABLE_SHARED)
183# define Py_ENABLE_SHARED 1 /* standard symbol for shared library */
184# define MS_COREDLL /* deprecated old symbol */
185#endif /* !MS_NO_COREDLL && ... */
186
187/* Deprecated USE_DL_EXPORT macro - please use Py_BUILD_CORE */
188#ifdef USE_DL_EXPORT
189# define Py_BUILD_CORE
190#endif /* USE_DL_EXPORT */
191
192/* All windows compilers that use this header support __declspec */
193#define HAVE_DECLSPEC_DLL
194
195/* For an MSVC DLL, we can nominate the .lib files used by extensions */
196#ifdef MS_COREDLL
197# ifndef Py_BUILD_CORE /* not building the core - must be an ext */
198# if defined(_MSC_VER)
199 /* So MSVC users need not specify the .lib file in
200 their Makefile (other compilers are generally
201 taken care of by distutils.) */
202# ifdef _DEBUG
203# pragma comment(lib,"python23_d.lib")
204# else
205# pragma comment(lib,"python23.lib")
206# endif /* _DEBUG */
207# endif /* _MSC_VER */
208# endif /* Py_BUILD_CORE */
209#endif /* MS_COREDLL */
210
Guido van Rossumc66ae962000-05-08 14:14:48 +0000211#if defined(MS_WIN64)
Guido van Rossumda5cc822000-05-10 13:25:32 +0000212/* maintain "win32" sys.platform for backward compatibility of Python code,
213 the Win64 API should be close enough to the Win32 API to make this
214 preferable */
Fred Drakea3f6e912000-06-29 20:44:47 +0000215# define PLATFORM "win32"
216# define SIZEOF_VOID_P 8
217# define SIZEOF_TIME_T 8
218# define SIZEOF_OFF_T 4
219# define SIZEOF_FPOS_T 8
220# define SIZEOF_HKEY 8
221/* configure.in defines HAVE_LARGEFILE_SUPPORT iff HAVE_LONG_LONG,
222 sizeof(off_t) > sizeof(long), and sizeof(LONG_LONG) >= sizeof(off_t).
223 On Win64 the second condition is not true, but if fpos_t replaces off_t
224 then this is true. The uses of HAVE_LARGEFILE_SUPPORT imply that Win64
225 should define this. */
226# define HAVE_LARGEFILE_SUPPORT
Guido van Rossumc66ae962000-05-08 14:14:48 +0000227#elif defined(MS_WIN32)
Fred Drakea3f6e912000-06-29 20:44:47 +0000228# define PLATFORM "win32"
Tim Peters6e13a562001-09-06 00:32:15 +0000229# define HAVE_LARGEFILE_SUPPORT
Fred Drakea3f6e912000-06-29 20:44:47 +0000230# ifdef _M_ALPHA
231# define SIZEOF_VOID_P 8
232# define SIZEOF_TIME_T 8
233# else
234# define SIZEOF_VOID_P 4
235# define SIZEOF_TIME_T 4
236# define SIZEOF_OFF_T 4
237# define SIZEOF_FPOS_T 8
238# define SIZEOF_HKEY 4
239# endif
Guido van Rossumc66ae962000-05-08 14:14:48 +0000240#endif
241
Mark Hammond8235ea12002-07-19 06:55:41 +0000242#ifdef _DEBUG
243# define Py_DEBUG
244#endif
245
Guido van Rossum950a1261996-07-30 17:38:17 +0000246
Guido van Rossumf4aeb841998-02-19 20:59:23 +0000247#ifdef MS_WIN32
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000248
Tim Peters208efe52001-06-26 22:40:47 +0000249#define SIZEOF_SHORT 2
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000250#define SIZEOF_INT 4
251#define SIZEOF_LONG 4
Guido van Rossumb00d2521998-09-17 13:19:36 +0000252#define SIZEOF_LONG_LONG 8
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000253
Guido van Rossumf4aeb841998-02-19 20:59:23 +0000254#endif
255
Guido van Rossum87d5e701996-05-28 22:50:17 +0000256/* Fairly standard from here! */
257
258/* Define if on AIX 3.
259 System headers sometimes define this.
260 We just want to avoid a redefinition error message. */
261#ifndef _ALL_SOURCE
262/* #undef _ALL_SOURCE */
263#endif
264
265/* Define to empty if the keyword does not work. */
266/* #define const */
267
268/* Define if you have dirent.h. */
269/* #define DIRENT 1 */
270
271/* Define to the type of elements in the array set by `getgroups'.
272 Usually this is either `int' or `gid_t'. */
273/* #undef GETGROUPS_T */
274
275/* Define to `int' if <sys/types.h> doesn't define. */
276/* #undef gid_t */
277
278/* Define if your struct tm has tm_zone. */
279/* #undef HAVE_TM_ZONE */
280
281/* Define if you don't have tm_zone but do have the external array
282 tzname. */
283#define HAVE_TZNAME
284
285/* Define if on MINIX. */
286/* #undef _MINIX */
287
288/* Define to `int' if <sys/types.h> doesn't define. */
289/* #undef mode_t */
290
291/* Define if you don't have dirent.h, but have ndir.h. */
292/* #undef NDIR */
293
294/* Define to `long' if <sys/types.h> doesn't define. */
295/* #undef off_t */
296
297/* Define to `int' if <sys/types.h> doesn't define. */
298/* #undef pid_t */
299
300/* Define if the system does not provide POSIX.1 features except
301 with this defined. */
302/* #undef _POSIX_1_SOURCE */
303
304/* Define if you need to in order for stat and other things to work. */
305/* #undef _POSIX_SOURCE */
306
307/* Define as the return type of signal handlers (int or void). */
308#define RETSIGTYPE void
309
310/* Define to `unsigned' if <sys/types.h> doesn't define. */
311/* #undef size_t */
312
Guido van Rossumdb575db2000-04-24 15:37:34 +0000313/* Define to `int' if <sys/types.h> doesn't define. */
Martin v. Löwis272cb402002-03-01 08:31:07 +0000314#if _MSC_VER + 0 >= 1300
315/* VC.NET typedefs socklen_t in ws2tcpip.h. */
316#else
Guido van Rossumdb575db2000-04-24 15:37:34 +0000317#define socklen_t int
Martin v. Löwis272cb402002-03-01 08:31:07 +0000318#endif
Guido van Rossumdb575db2000-04-24 15:37:34 +0000319
Guido van Rossum87d5e701996-05-28 22:50:17 +0000320/* Define if you have the ANSI C header files. */
321#define STDC_HEADERS 1
322
323/* Define if you don't have dirent.h, but have sys/dir.h. */
324/* #undef SYSDIR */
325
326/* Define if you don't have dirent.h, but have sys/ndir.h. */
327/* #undef SYSNDIR */
328
329/* Define if you can safely include both <sys/time.h> and <time.h>. */
330/* #undef TIME_WITH_SYS_TIME */
331
332/* Define if your <sys/time.h> declares struct tm. */
333/* #define TM_IN_SYS_TIME 1 */
334
335/* Define to `int' if <sys/types.h> doesn't define. */
336/* #undef uid_t */
337
338/* Define if the closedir function returns void instead of int. */
339/* #undef VOID_CLOSEDIR */
340
341/* Define if your <unistd.h> contains bad prototypes for exec*()
342 (as it does on SGI IRIX 4.x) */
343/* #undef BAD_EXEC_PROTOTYPES */
344
Guido van Rossum87d5e701996-05-28 22:50:17 +0000345/* Define if getpgrp() must be called as getpgrp(0)
346 and (consequently) setpgrp() as setpgrp(0, 0). */
347/* #undef GETPGRP_HAVE_ARGS */
348
349/* Define this if your time.h defines altzone */
350/* #define HAVE_ALTZONE */
351
Guido van Rossumeaf9b6c1996-08-22 00:06:59 +0000352/* Define if you have the putenv function. */
Guido van Rossumeaf9b6c1996-08-22 00:06:59 +0000353#define HAVE_PUTENV
Guido van Rossumeaf9b6c1996-08-22 00:06:59 +0000354
Guido van Rossum87d5e701996-05-28 22:50:17 +0000355/* Define if your compiler supports function prototypes */
356#define HAVE_PROTOTYPES
357
358/* Define if you can safely include both <sys/select.h> and <sys/time.h>
359 (which you can't on SCO ODT 3.0). */
360/* #undef SYS_SELECT_WITH_SYS_TIME */
361
362/* Define if you want to use SGI (IRIX 4) dynamic linking.
363 This requires the "dl" library by Jack Jansen,
364 ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z.
365 Don't bother on IRIX 5, it already has dynamic linking using SunOS
Guido van Rossum950a1261996-07-30 17:38:17 +0000366 style shared libraries */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000367/* #undef WITH_SGI_DL */
368
369/* Define if you want to emulate SGI (IRIX 4) dynamic linking.
370 This is rumoured to work on VAX (Ultrix), Sun3 (SunOS 3.4),
371 Sequent Symmetry (Dynix), and Atari ST.
372 This requires the "dl-dld" library,
373 ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z,
374 as well as the "GNU dld" library,
375 ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z.
376 Don't bother on SunOS 4 or 5, they already have dynamic linking using
Guido van Rossum950a1261996-07-30 17:38:17 +0000377 shared libraries */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000378/* #undef WITH_DL_DLD */
379
Martin v. Löwis2befa482002-06-09 13:41:37 +0000380/* Define if you want documentation strings in extension modules */
381#define WITH_DOC_STRINGS 1
382
Guido van Rossum87d5e701996-05-28 22:50:17 +0000383/* Define if you want to compile in rudimentary thread support */
384/* #undef WITH_THREAD */
385
386/* Define if you want to use the GNU readline library */
387/* #define WITH_READLINE 1 */
388
Fredrik Lundh9b14ab32001-06-26 22:59:49 +0000389/* Define if you want to have a Unicode type. */
390#define Py_USING_UNICODE
391
392/* Define as the integral type used for Unicode representation. */
393#define PY_UNICODE_TYPE unsigned short
394
395/* Define as the size of the unicode type. */
396#define Py_UNICODE_SIZE SIZEOF_SHORT
397
Fredrik Lundh793c1972001-06-27 19:49:17 +0000398/* Define if you have a useable wchar_t type defined in wchar.h; useable
399 means wchar_t must be 16-bit unsigned type. (see
400 Include/unicodeobject.h). */
401#if Py_UNICODE_SIZE == 2
402#define HAVE_USABLE_WCHAR_T
403#endif
404
Tim Petersb26f3632002-03-22 06:32:32 +0000405/* Use Python's own small-block memory-allocator. */
406#define WITH_PYMALLOC 1
407
Tim Peters639295f2002-04-21 07:30:30 +0000408/* Enable \n, \r, \r\n line ends on import; also the 'U' mode flag for open. */
409#define WITH_UNIVERSAL_NEWLINES 1
410
Guido van Rossum87d5e701996-05-28 22:50:17 +0000411/* Define if you have clock. */
412/* #define HAVE_CLOCK */
413
Guido van Rossum9f9fa6d1999-12-20 22:57:41 +0000414/* Define when any dynamic module loading is enabled */
415#define HAVE_DYNAMIC_LOADING
416
Guido van Rossum87d5e701996-05-28 22:50:17 +0000417/* Define if you have ftime. */
418#define HAVE_FTIME
419
420/* Define if you have getpeername. */
Guido van Rossumc3397531997-05-06 15:58:18 +0000421#define HAVE_GETPEERNAME
Guido van Rossum87d5e701996-05-28 22:50:17 +0000422
423/* Define if you have getpgrp. */
424/* #undef HAVE_GETPGRP */
425
426/* Define if you have getpid. */
Guido van Rossumc3397531997-05-06 15:58:18 +0000427#define HAVE_GETPID
Guido van Rossum87d5e701996-05-28 22:50:17 +0000428
429/* Define if you have gettimeofday. */
430/* #undef HAVE_GETTIMEOFDAY */
431
432/* Define if you have getwd. */
433/* #undef HAVE_GETWD */
434
435/* Define if you have lstat. */
436/* #undef HAVE_LSTAT */
437
Guido van Rossum63096d41998-04-10 21:28:49 +0000438/* Define if you have the mktime function. */
439#define HAVE_MKTIME
440
Guido van Rossum87d5e701996-05-28 22:50:17 +0000441/* Define if you have nice. */
442/* #undef HAVE_NICE */
443
444/* Define if you have readlink. */
445/* #undef HAVE_READLINK */
446
447/* Define if you have select. */
448/* #undef HAVE_SELECT */
449
450/* Define if you have setpgid. */
451/* #undef HAVE_SETPGID */
452
453/* Define if you have setpgrp. */
454/* #undef HAVE_SETPGRP */
455
456/* Define if you have setsid. */
457/* #undef HAVE_SETSID */
458
Guido van Rossumc3397531997-05-06 15:58:18 +0000459/* Define if you have setvbuf. */
460#define HAVE_SETVBUF
461
Guido van Rossum87d5e701996-05-28 22:50:17 +0000462/* Define if you have siginterrupt. */
463/* #undef HAVE_SIGINTERRUPT */
464
465/* Define if you have symlink. */
466/* #undef HAVE_SYMLINK */
467
468/* Define if you have tcgetpgrp. */
469/* #undef HAVE_TCGETPGRP */
470
471/* Define if you have tcsetpgrp. */
472/* #undef HAVE_TCSETPGRP */
473
474/* Define if you have times. */
475/* #undef HAVE_TIMES */
476
477/* Define if you have uname. */
478/* #undef HAVE_UNAME */
479
480/* Define if you have waitpid. */
481/* #undef HAVE_WAITPID */
482
483/* Define if you have the <dlfcn.h> header file. */
484/* #undef HAVE_DLFCN_H */
485
486/* Define if you have the <fcntl.h> header file. */
487#define HAVE_FCNTL_H 1
488
489/* Define if you have the <signal.h> header file. */
490#define HAVE_SIGNAL_H 1
491
492/* Define if you have the <stdarg.h> header file. */
493#define HAVE_STDARG_H 1
494
495/* Define if you have the <stdarg.h> prototypes. */
496#define HAVE_STDARG_PROTOTYPES
497
Guido van Rossum4da55f01998-09-23 13:35:45 +0000498/* Define if you have the <stddef.h> header file. */
499#define HAVE_STDDEF_H 1
500
Guido van Rossum87d5e701996-05-28 22:50:17 +0000501/* Define if you have the <stdlib.h> header file. */
502#define HAVE_STDLIB_H 1
503
504/* Define if you have the <sys/audioio.h> header file. */
505/* #undef HAVE_SYS_AUDIOIO_H */
506
507/* Define if you have the <sys/param.h> header file. */
508/* #define HAVE_SYS_PARAM_H 1 */
509
510/* Define if you have the <sys/select.h> header file. */
511/* #define HAVE_SYS_SELECT_H 1 */
512
513/* Define if you have the <sys/time.h> header file. */
514/* #define HAVE_SYS_TIME_H 1 */
515
516/* Define if you have the <sys/times.h> header file. */
517/* #define HAVE_SYS_TIMES_H 1 */
518
519/* Define if you have the <sys/un.h> header file. */
520/* #define HAVE_SYS_UN_H 1 */
521
522/* Define if you have the <sys/utime.h> header file. */
Tim Peters58e0a8c2001-05-14 22:32:33 +0000523/* #define HAVE_SYS_UTIME_H 1 */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000524
525/* Define if you have the <sys/utsname.h> header file. */
526/* #define HAVE_SYS_UTSNAME_H 1 */
527
528/* Define if you have the <thread.h> header file. */
529/* #undef HAVE_THREAD_H */
530
531/* Define if you have the <unistd.h> header file. */
532/* #define HAVE_UNISTD_H 1 */
533
534/* Define if you have the <utime.h> header file. */
535/* #define HAVE_UTIME_H 1 */
536
537/* Define if you have the dl library (-ldl). */
538/* #undef HAVE_LIBDL */
539
540/* Define if you have the mpc library (-lmpc). */
541/* #undef HAVE_LIBMPC */
542
543/* Define if you have the nsl library (-lnsl). */
544#define HAVE_LIBNSL 1
545
546/* Define if you have the seq library (-lseq). */
547/* #undef HAVE_LIBSEQ */
548
549/* Define if you have the socket library (-lsocket). */
550#define HAVE_LIBSOCKET 1
551
552/* Define if you have the sun library (-lsun). */
553/* #undef HAVE_LIBSUN */
554
555/* Define if you have the termcap library (-ltermcap). */
556/* #undef HAVE_LIBTERMCAP */
557
558/* Define if you have the termlib library (-ltermlib). */
559/* #undef HAVE_LIBTERMLIB */
560
561/* Define if you have the thread library (-lthread). */
562/* #undef HAVE_LIBTHREAD */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000563#endif /* !Py_CONFIG_H */