blob: 3b6e5440197168e298df07a6379389ac5505b3f1 [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
14MS_WIN32 - Code specific to the MS Win32 API
15MS_WIN16 - Code specific to the old 16 bit Windows API.
16MS_WINDOWS - Code specific to Windows, but all versions.
17MS_COREDLL - Code if the Python core is built as a DLL.
18
19Note that the old defines "NT" and "WIN32" are still supported, but
20will soon be dropped.
21
22Also note that neither "_M_IX86" or "_MSC_VER" should be used for
23any purpose other than "Windows Intel x86 specific" and "Microsoft
24compiler specific". Therefore, these should be very rare.
25
Guido van Rossum87d5e701996-05-28 22:50:17 +000026*/
27
28/*
29 Some systems require special declarations for data items imported
30 or exported from dynamic link libraries. Note that the definition
31 of DL_IMPORT covers both cases. Define USE_DL_IMPORT for the client
32 of a DLL. Define USE_DL_EXPORT when making a DLL.
33*/
34
35#include <io.h>
36#define HAVE_LIMITS_H
37#define HAVE_HYPOT
38#define DONT_HAVE_SIG_ALARM
39#define DONT_HAVE_SIG_PAUSE
Guido van Rossum1bc716f1996-06-28 19:12:06 +000040#define LONG_BIT 32
Guido van Rossum950a1261996-07-30 17:38:17 +000041#define PREFIX ""
42#define EXEC_PREFIX ""
Guido van Rossum87d5e701996-05-28 22:50:17 +000043
44/* Microsoft C defines _MSC_VER */
45
46#if defined(_MSC_VER) && _MSC_VER > 850
Guido van Rossum1bc716f1996-06-28 19:12:06 +000047/* Start of defines for MS_WIN32 using VC++ 2.0 and up */
48#define NT /* NT is obsolete - please use MS_WIN32 instead */
49#define MS_WIN32
50#define MS_WINDOWS
Guido van Rossum950a1261996-07-30 17:38:17 +000051
Guido van Rossumeaf9b6c1996-08-22 00:06:59 +000052/* For NT the Python core is in a DLL by default. Test the
53standard macro MS_COREDLL to find out. If you have an exception
54you must define MS_NO_COREDLL (do not test this macro) */
55#ifndef MS_NO_COREDLL
56#define MS_COREDLL /* Python core is in a DLL */
Guido van Rossum950a1261996-07-30 17:38:17 +000057#ifndef USE_DL_EXPORT
58#define USE_DL_IMPORT
59#endif /* !USE_DL_EXPORT */
Guido van Rossumeaf9b6c1996-08-22 00:06:59 +000060#endif /* !MS_NO_COREDLL */
Guido van Rossum950a1261996-07-30 17:38:17 +000061
Guido van Rossum87d5e701996-05-28 22:50:17 +000062#ifdef _M_IX86
63#define COMPILER "[MSC 32 bit (Intel)]"
64#else
65#define COMPILER "[MSC (Unknown)]"
66#endif
Guido van Rossum52f49151998-04-11 02:31:30 +000067#define PYTHONPATH ".\\DLLs;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk"
Guido van Rossum87d5e701996-05-28 22:50:17 +000068typedef int pid_t;
Guido van Rossum1bc716f1996-06-28 19:12:06 +000069#define WORD_BIT 32
Guido van Rossum87d5e701996-05-28 22:50:17 +000070#pragma warning(disable:4113)
71#define hypot _hypot
72#include <stdio.h>
73#define HAVE_CLOCK
74#define HAVE_STRFTIME
Guido van Rossum9b499d21998-08-12 02:10:05 +000075#define HAVE_STRERROR
Guido van Rossum87d5e701996-05-28 22:50:17 +000076#define NT_THREADS
77#define WITH_THREAD
78#ifndef NETSCAPE_PI
79#define USE_SOCKET
Guido van Rossum87d5e701996-05-28 22:50:17 +000080#endif
81#ifdef USE_DL_IMPORT
82#define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE
83#endif
84#ifdef USE_DL_EXPORT
85#define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE
Guido van Rossum9df827f1998-12-10 16:50:49 +000086#define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE
Guido van Rossum87d5e701996-05-28 22:50:17 +000087#endif
Guido van Rossum950a1261996-07-30 17:38:17 +000088
Guido van Rossum3293b071998-08-25 16:07:15 +000089#define HAVE_LONG_LONG 1
90#define LONG_LONG __int64
Guido van Rossum950a1261996-07-30 17:38:17 +000091#endif /* _MSC_VER && > 850 */
Guido van Rossum87d5e701996-05-28 22:50:17 +000092
93#if defined(_MSC_VER) && _MSC_VER <= 850
94/* Start of defines for 16-bit Windows using VC++ 1.5 */
95#define COMPILER "[MSC 16-bit]"
96#define MS_WIN16
Guido van Rossum1bc716f1996-06-28 19:12:06 +000097#define MS_WINDOWS
Guido van Rossumd3af2f31997-11-22 21:56:10 +000098#define PYTHONPATH ".;.\\lib;.\\lib\\plat-win;.\\lib\\dos-8x3"
Guido van Rossum87d5e701996-05-28 22:50:17 +000099#define IMPORT_8x3_NAMES
100typedef int pid_t;
Guido van Rossum1bc716f1996-06-28 19:12:06 +0000101#define WORD_BIT 16
Guido van Rossum3d37f431999-01-14 18:51:53 +0000102#define SIZEOF_INT 2
103#define SIZEOF_LONG 4
104#define SIZEOF_VOID_P 4
Guido van Rossum87d5e701996-05-28 22:50:17 +0000105#pragma warning(disable:4113)
106#define memcpy memmove /* memcpy dangerous pointer wrap in Win 3.1 */
107#define hypot _hypot
108#define SIGINT 2
109#include <stdio.h>
110/* Windows 3.1 will not tolerate any console io in a dll */
111#ifdef _USRDLL
112#include <time.h>
Guido van Rossumf57c1701997-09-29 23:36:42 +0000113#ifdef __cplusplus
114extern "C" {
115#endif
Guido van Rossum87d5e701996-05-28 22:50:17 +0000116#define stdin ((FILE *)0)
117#define stdout ((FILE *)1)
118#define stderr ((FILE *)2)
119#define fflush Py_fflush
120int Py_fflush(FILE *);
121#define fgets Py_fgets
122char *Py_fgets(char *, int, FILE *);
123#define fileno Py_fileno
124int Py_fileno(FILE *);
125#define fprintf Py_fprintf
126int Py_fprintf(FILE *, const char *, ...);
127#define printf Py_printf
128int Py_printf(const char *, ...);
129#define sscanf Py_sscanf
130int Py_sscanf(const char *, const char *, ...);
131clock_t clock();
132void _exit(int);
133void exit(int);
134int sscanf(const char *, const char *, ...);
Guido van Rossumf57c1701997-09-29 23:36:42 +0000135#ifdef __cplusplus
136}
137#endif
Guido van Rossum87d5e701996-05-28 22:50:17 +0000138#endif /* _USRDLL */
139#ifndef NETSCAPE_PI
140/* use sockets, but not in a Netscape dll */
141#define USE_SOCKET
142#endif
143#endif /* MS_WIN16 */
144
145/* The Watcom compiler defines __WATCOMC__ */
146#ifdef __WATCOMC__
147#define COMPILER "[Watcom]"
Guido van Rossumd3af2f31997-11-22 21:56:10 +0000148#define PYTHONPATH ".;.\\lib;.\\lib\\plat-win;.\\lib\\dos-8x3"
Guido van Rossum87d5e701996-05-28 22:50:17 +0000149#define IMPORT_8x3_NAMES
150#include <ctype.h>
151#include <direct.h>
152typedef int mode_t;
153typedef int uid_t;
154typedef int gid_t;
Guido van Rossum1bc716f1996-06-28 19:12:06 +0000155typedef int pid_t;
156#if defined(__NT__)
157#define NT /* NT is obsolete - please use MS_WIN32 instead */
158#define MS_WIN32
159#define MS_WINDOWS
160#define NT_THREADS
161#define USE_SOCKET
162#define WITH_THREAD
163#elif defined(__WINDOWS__)
164#define MS_WIN16
165#define MS_WINDOWS
166#endif
167#ifdef M_I386
168#define WORD_BIT 32
Guido van Rossum3d37f431999-01-14 18:51:53 +0000169#define SIZEOF_INT 4
170#define SIZEOF_LONG 4
171#define SIZEOF_VOID_P 4
Guido van Rossum1bc716f1996-06-28 19:12:06 +0000172#else
173#define WORD_BIT 16
Guido van Rossum3d37f431999-01-14 18:51:53 +0000174#define SIZEOF_INT 2
175#define SIZEOF_LONG 4
176#define SIZEOF_VOID_P 4
Guido van Rossum1bc716f1996-06-28 19:12:06 +0000177#endif
Guido van Rossum87d5e701996-05-28 22:50:17 +0000178#define VA_LIST_IS_ARRAY
179#define HAVE_CLOCK
180#define HAVE_STRFTIME
181#ifdef USE_DL_EXPORT
182#define DL_IMPORT(RTYPE) RTYPE __export
183#endif
184#endif /* __WATCOMC__ */
185
186/* The Borland compiler defines __BORLANDC__ */
Guido van Rossumcf6c0ea1996-10-21 14:52:24 +0000187/* XXX These defines are likely incomplete, but should be easy to fix. */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000188#ifdef __BORLANDC__
189#define COMPILER "[Borland]"
Guido van Rossumd3af2f31997-11-22 21:56:10 +0000190#define PYTHONPATH ".;.\\lib;.\\lib\\plat-win;.\\lib\\dos-8x3"
Guido van Rossum87d5e701996-05-28 22:50:17 +0000191#define IMPORT_8x3_NAMES
192#define HAVE_CLOCK
193#define HAVE_STRFTIME
194#ifdef USE_DL_IMPORT
195#define DL_IMPORT(RTYPE) RTYPE __import
196#endif
197#endif /* BORLANDC */
198
Guido van Rossum950a1261996-07-30 17:38:17 +0000199/* End of compilers - finish up */
200
201#ifdef MS_WIN32
202#define PLATFORM "win32"
203#else
204#ifdef MS_WIN16
205#define PLATFORM "win16"
206#else
207#define PLATFORM "dos"
208#endif /* !MS_WIN16 */
209#endif /* !MS_WIN32 */
210
Guido van Rossumf4aeb841998-02-19 20:59:23 +0000211#ifdef MS_WIN32
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000212
Guido van Rossum1a87be11998-08-08 18:25:43 +0000213#ifndef USE_DL_EXPORT
Guido van Rossum446f0331998-08-07 15:32:00 +0000214/* So nobody needs to specify the .lib in their Makefile any more */
215#ifdef _DEBUG
216#pragma comment(lib,"python15_d.lib")
217#else
218#pragma comment(lib,"python15.lib")
219#endif
Guido van Rossum1a87be11998-08-08 18:25:43 +0000220#endif /* USE_DL_EXPORT */
Guido van Rossum446f0331998-08-07 15:32:00 +0000221
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000222#define SIZEOF_INT 4
223#define SIZEOF_LONG 4
Guido van Rossumb00d2521998-09-17 13:19:36 +0000224#define SIZEOF_LONG_LONG 8
Guido van Rossumd3ab1011998-05-29 02:53:29 +0000225
Guido van Rossum78694d91998-09-18 14:14:13 +0000226#ifdef _M_ALPHA
227#define SIZEOF_VOID_P 8
228#else
229#define SIZEOF_VOID_P 4
230#endif
231
Guido van Rossumf4aeb841998-02-19 20:59:23 +0000232/* EXPERIMENTAL FEATURE: When CHECK_IMPORT_CASE is defined, check case of
233 imported modules against case of file; this causes "import String" to fail
234 with a NameError exception when it finds "string.py". Normally, you set
235 the environment variable PYTHONCASEOK (to anything) to disable this
236 feature; to permanently disable it, #undef it here. This only works on
237 case-preserving filesystems; otherwise you definitely want it off. */
238#define CHECK_IMPORT_CASE
239#endif
240
Guido van Rossum87d5e701996-05-28 22:50:17 +0000241/* Fairly standard from here! */
242
243/* Define if on AIX 3.
244 System headers sometimes define this.
245 We just want to avoid a redefinition error message. */
246#ifndef _ALL_SOURCE
247/* #undef _ALL_SOURCE */
248#endif
249
250/* Define to empty if the keyword does not work. */
251/* #define const */
252
253/* Define if you have dirent.h. */
254/* #define DIRENT 1 */
255
256/* Define to the type of elements in the array set by `getgroups'.
257 Usually this is either `int' or `gid_t'. */
258/* #undef GETGROUPS_T */
259
260/* Define to `int' if <sys/types.h> doesn't define. */
261/* #undef gid_t */
262
263/* Define if your struct tm has tm_zone. */
264/* #undef HAVE_TM_ZONE */
265
266/* Define if you don't have tm_zone but do have the external array
267 tzname. */
268#define HAVE_TZNAME
269
270/* Define if on MINIX. */
271/* #undef _MINIX */
272
273/* Define to `int' if <sys/types.h> doesn't define. */
274/* #undef mode_t */
275
276/* Define if you don't have dirent.h, but have ndir.h. */
277/* #undef NDIR */
278
279/* Define to `long' if <sys/types.h> doesn't define. */
280/* #undef off_t */
281
282/* Define to `int' if <sys/types.h> doesn't define. */
283/* #undef pid_t */
284
285/* Define if the system does not provide POSIX.1 features except
286 with this defined. */
287/* #undef _POSIX_1_SOURCE */
288
289/* Define if you need to in order for stat and other things to work. */
290/* #undef _POSIX_SOURCE */
291
292/* Define as the return type of signal handlers (int or void). */
293#define RETSIGTYPE void
294
295/* Define to `unsigned' if <sys/types.h> doesn't define. */
296/* #undef size_t */
297
298/* Define if you have the ANSI C header files. */
299#define STDC_HEADERS 1
300
301/* Define if you don't have dirent.h, but have sys/dir.h. */
302/* #undef SYSDIR */
303
304/* Define if you don't have dirent.h, but have sys/ndir.h. */
305/* #undef SYSNDIR */
306
307/* Define if you can safely include both <sys/time.h> and <time.h>. */
308/* #undef TIME_WITH_SYS_TIME */
309
310/* Define if your <sys/time.h> declares struct tm. */
311/* #define TM_IN_SYS_TIME 1 */
312
313/* Define to `int' if <sys/types.h> doesn't define. */
314/* #undef uid_t */
315
316/* Define if the closedir function returns void instead of int. */
317/* #undef VOID_CLOSEDIR */
318
319/* Define if your <unistd.h> contains bad prototypes for exec*()
320 (as it does on SGI IRIX 4.x) */
321/* #undef BAD_EXEC_PROTOTYPES */
322
323/* Define if your compiler botches static forward declarations
324 (as it does on SCI ODT 3.0) */
325#define BAD_STATIC_FORWARD 1
326
327/* Define if getpgrp() must be called as getpgrp(0)
328 and (consequently) setpgrp() as setpgrp(0, 0). */
329/* #undef GETPGRP_HAVE_ARGS */
330
331/* Define this if your time.h defines altzone */
332/* #define HAVE_ALTZONE */
333
Guido van Rossumeaf9b6c1996-08-22 00:06:59 +0000334/* Define if you have the putenv function. */
335#ifdef MS_WIN32
336/* Does this exist on Win16? */
337#define HAVE_PUTENV
338#endif
339
Guido van Rossum87d5e701996-05-28 22:50:17 +0000340/* Define if your compiler supports function prototypes */
341#define HAVE_PROTOTYPES
342
343/* Define if you can safely include both <sys/select.h> and <sys/time.h>
344 (which you can't on SCO ODT 3.0). */
345/* #undef SYS_SELECT_WITH_SYS_TIME */
346
347/* Define if you want to use SGI (IRIX 4) dynamic linking.
348 This requires the "dl" library by Jack Jansen,
349 ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z.
350 Don't bother on IRIX 5, it already has dynamic linking using SunOS
Guido van Rossum950a1261996-07-30 17:38:17 +0000351 style shared libraries */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000352/* #undef WITH_SGI_DL */
353
354/* Define if you want to emulate SGI (IRIX 4) dynamic linking.
355 This is rumoured to work on VAX (Ultrix), Sun3 (SunOS 3.4),
356 Sequent Symmetry (Dynix), and Atari ST.
357 This requires the "dl-dld" library,
358 ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z,
359 as well as the "GNU dld" library,
360 ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z.
361 Don't bother on SunOS 4 or 5, they already have dynamic linking using
Guido van Rossum950a1261996-07-30 17:38:17 +0000362 shared libraries */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000363/* #undef WITH_DL_DLD */
364
365/* Define if you want to compile in rudimentary thread support */
366/* #undef WITH_THREAD */
367
368/* Define if you want to use the GNU readline library */
369/* #define WITH_READLINE 1 */
370
371/* Define if you have clock. */
372/* #define HAVE_CLOCK */
373
374/* Define if you have ftime. */
375#define HAVE_FTIME
376
377/* Define if you have getpeername. */
Guido van Rossumc3397531997-05-06 15:58:18 +0000378#define HAVE_GETPEERNAME
Guido van Rossum87d5e701996-05-28 22:50:17 +0000379
380/* Define if you have getpgrp. */
381/* #undef HAVE_GETPGRP */
382
383/* Define if you have getpid. */
Guido van Rossumc3397531997-05-06 15:58:18 +0000384#define HAVE_GETPID
Guido van Rossum87d5e701996-05-28 22:50:17 +0000385
386/* Define if you have gettimeofday. */
387/* #undef HAVE_GETTIMEOFDAY */
388
389/* Define if you have getwd. */
390/* #undef HAVE_GETWD */
391
392/* Define if you have lstat. */
393/* #undef HAVE_LSTAT */
394
Guido van Rossum63096d41998-04-10 21:28:49 +0000395/* Define if you have the mktime function. */
396#define HAVE_MKTIME
397
Guido van Rossum87d5e701996-05-28 22:50:17 +0000398/* Define if you have nice. */
399/* #undef HAVE_NICE */
400
401/* Define if you have readlink. */
402/* #undef HAVE_READLINK */
403
404/* Define if you have select. */
405/* #undef HAVE_SELECT */
406
407/* Define if you have setpgid. */
408/* #undef HAVE_SETPGID */
409
410/* Define if you have setpgrp. */
411/* #undef HAVE_SETPGRP */
412
413/* Define if you have setsid. */
414/* #undef HAVE_SETSID */
415
Guido van Rossumc3397531997-05-06 15:58:18 +0000416/* Define if you have setvbuf. */
417#define HAVE_SETVBUF
418
Guido van Rossum87d5e701996-05-28 22:50:17 +0000419/* Define if you have siginterrupt. */
420/* #undef HAVE_SIGINTERRUPT */
421
422/* Define if you have symlink. */
423/* #undef HAVE_SYMLINK */
424
425/* Define if you have tcgetpgrp. */
426/* #undef HAVE_TCGETPGRP */
427
428/* Define if you have tcsetpgrp. */
429/* #undef HAVE_TCSETPGRP */
430
431/* Define if you have times. */
432/* #undef HAVE_TIMES */
433
434/* Define if you have uname. */
435/* #undef HAVE_UNAME */
436
437/* Define if you have waitpid. */
438/* #undef HAVE_WAITPID */
439
440/* Define if you have the <dlfcn.h> header file. */
441/* #undef HAVE_DLFCN_H */
442
443/* Define if you have the <fcntl.h> header file. */
444#define HAVE_FCNTL_H 1
445
446/* Define if you have the <signal.h> header file. */
447#define HAVE_SIGNAL_H 1
448
449/* Define if you have the <stdarg.h> header file. */
450#define HAVE_STDARG_H 1
451
452/* Define if you have the <stdarg.h> prototypes. */
453#define HAVE_STDARG_PROTOTYPES
454
Guido van Rossum4da55f01998-09-23 13:35:45 +0000455/* Define if you have the <stddef.h> header file. */
456#define HAVE_STDDEF_H 1
457
Guido van Rossum87d5e701996-05-28 22:50:17 +0000458/* Define if you have the <stdlib.h> header file. */
459#define HAVE_STDLIB_H 1
460
461/* Define if you have the <sys/audioio.h> header file. */
462/* #undef HAVE_SYS_AUDIOIO_H */
463
464/* Define if you have the <sys/param.h> header file. */
465/* #define HAVE_SYS_PARAM_H 1 */
466
467/* Define if you have the <sys/select.h> header file. */
468/* #define HAVE_SYS_SELECT_H 1 */
469
470/* Define if you have the <sys/time.h> header file. */
471/* #define HAVE_SYS_TIME_H 1 */
472
473/* Define if you have the <sys/times.h> header file. */
474/* #define HAVE_SYS_TIMES_H 1 */
475
476/* Define if you have the <sys/un.h> header file. */
477/* #define HAVE_SYS_UN_H 1 */
478
479/* Define if you have the <sys/utime.h> header file. */
480#define HAVE_SYS_UTIME_H 1
481
482/* Define if you have the <sys/utsname.h> header file. */
483/* #define HAVE_SYS_UTSNAME_H 1 */
484
485/* Define if you have the <thread.h> header file. */
486/* #undef HAVE_THREAD_H */
487
488/* Define if you have the <unistd.h> header file. */
489/* #define HAVE_UNISTD_H 1 */
490
491/* Define if you have the <utime.h> header file. */
492/* #define HAVE_UTIME_H 1 */
493
494/* Define if you have the dl library (-ldl). */
495/* #undef HAVE_LIBDL */
496
497/* Define if you have the mpc library (-lmpc). */
498/* #undef HAVE_LIBMPC */
499
500/* Define if you have the nsl library (-lnsl). */
501#define HAVE_LIBNSL 1
502
503/* Define if you have the seq library (-lseq). */
504/* #undef HAVE_LIBSEQ */
505
506/* Define if you have the socket library (-lsocket). */
507#define HAVE_LIBSOCKET 1
508
509/* Define if you have the sun library (-lsun). */
510/* #undef HAVE_LIBSUN */
511
512/* Define if you have the termcap library (-ltermcap). */
513/* #undef HAVE_LIBTERMCAP */
514
515/* Define if you have the termlib library (-ltermlib). */
516/* #undef HAVE_LIBTERMLIB */
517
518/* Define if you have the thread library (-lthread). */
519/* #undef HAVE_LIBTHREAD */
Guido van Rossum87d5e701996-05-28 22:50:17 +0000520#endif /* !Py_CONFIG_H */