blob: 74625f21528eb3371f00e023c4d889ad48906b0a [file] [log] [blame]
Martin v. Löwis11437992002-04-12 09:54:03 +00001/* pyconfig.h.in. Generated from configure.in by autoheader. */
Guido van Rossum91168a81994-01-03 03:59:44 +00002
Martin v. Löwis11437992002-04-12 09:54:03 +00003/* Define for AIX if your compiler is a genuine IBM xlC/xlC_r and you want
4 support for AIX C++ shared extension modules. */
5#undef AIX_GENUINE_CPLUSPLUS
Guido van Rossum91168a81994-01-03 03:59:44 +00006
Martin v. Löwisf90ae202002-06-11 06:22:31 +00007/* Define this if you have AtheOS threads. */
8#undef ATHEOS_THREADS
9
Martin v. Löwis11437992002-04-12 09:54:03 +000010/* Define if your <unistd.h> contains bad prototypes for exec*() (as it does
11 on SGI IRIX 4.x) */
12#undef BAD_EXEC_PROTOTYPES
Guido van Rossum91168a81994-01-03 03:59:44 +000013
Martin v. Löwis11437992002-04-12 09:54:03 +000014/* Define this if you have BeOS threads. */
15#undef BEOS_THREADS
Guido van Rossumef2255b2000-03-10 22:30:29 +000016
Guido van Rossum7b3853f1996-07-30 18:09:35 +000017/* Define if you have the Mach cthreads package */
18#undef C_THREADS
19
Martin v. Löwis01dfdb32001-06-23 16:30:13 +000020/* Define if --enable-ipv6 is specified */
21#undef ENABLE_IPV6
22
Martin v. Löwis11437992002-04-12 09:54:03 +000023/* Define if getpgrp() must be called as getpgrp(0). */
24#undef GETPGRP_HAVE_ARG
25
26/* Define if gettimeofday() does not have second (timezone) argument This is
27 the case on Motorola V4 (R40V4.2) */
28#undef GETTIMEOFDAY_NO_TZ
29
30/* struct addrinfo (netdb.h) */
31#undef HAVE_ADDRINFO
32
33/* Define to 1 if you have the `alarm' function. */
34#undef HAVE_ALARM
35
36/* Define this if your time.h defines altzone. */
37#undef HAVE_ALTZONE
38
39/* Define if nice() returns success/failure instead of the new priority. */
40#undef HAVE_BROKEN_NICE
41
42/* Define to 1 if you have the `chown' function. */
43#undef HAVE_CHOWN
44
45/* Define to 1 if you have the `chroot' function. */
46#undef HAVE_CHROOT
47
48/* Define to 1 if you have the `clock' function. */
49#undef HAVE_CLOCK
50
51/* Define to 1 if you have the `confstr' function. */
52#undef HAVE_CONFSTR
53
54/* Define to 1 if you have the `ctermid' function. */
55#undef HAVE_CTERMID
56
57/* Define to 1 if you have the `ctermid_r' function. */
58#undef HAVE_CTERMID_R
59
Martin v. Löwis11437992002-04-12 09:54:03 +000060/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
61 */
62#undef HAVE_DIRENT_H
63
64/* Define to 1 if you have the <dlfcn.h> header file. */
65#undef HAVE_DLFCN_H
66
67/* Define to 1 if you have the `dlopen' function. */
68#undef HAVE_DLOPEN
69
70/* Define to 1 if you have the `dup2' function. */
71#undef HAVE_DUP2
72
73/* Defined when any dynamic module loading is enabled. */
74#undef HAVE_DYNAMIC_LOADING
75
76/* Define to 1 if you have the `execv' function. */
77#undef HAVE_EXECV
78
Fred Drake6b3cc522002-04-15 19:20:27 +000079/* Define to 1 if you have the `fchdir' function. */
80#undef HAVE_FCHDIR
81
Martin v. Löwis11437992002-04-12 09:54:03 +000082/* Define to 1 if you have the <fcntl.h> header file. */
83#undef HAVE_FCNTL_H
84
85/* Define to 1 if you have the `fdatasync' function. */
86#undef HAVE_FDATASYNC
87
88/* Define to 1 if you have the `flock' function. */
89#undef HAVE_FLOCK
90
91/* Define to 1 if you have the `fork' function. */
92#undef HAVE_FORK
93
94/* Define to 1 if you have the `forkpty' function. */
95#undef HAVE_FORKPTY
96
97/* Define to 1 if you have the `fpathconf' function. */
98#undef HAVE_FPATHCONF
99
100/* Define to 1 if you have the `fseek64' function. */
101#undef HAVE_FSEEK64
102
103/* Define to 1 if you have the `fseeko' function. */
104#undef HAVE_FSEEKO
105
106/* Define to 1 if you have the `fstatvfs' function. */
107#undef HAVE_FSTATVFS
108
109/* Define to 1 if you have the `fsync' function. */
110#undef HAVE_FSYNC
111
112/* Define to 1 if you have the `ftell64' function. */
113#undef HAVE_FTELL64
114
115/* Define to 1 if you have the `ftello' function. */
116#undef HAVE_FTELLO
117
118/* Define to 1 if you have the `ftime' function. */
119#undef HAVE_FTIME
120
121/* Define to 1 if you have the `ftruncate' function. */
122#undef HAVE_FTRUNCATE
123
124/* Define to 1 if you have the `gai_strerror' function. */
125#undef HAVE_GAI_STRERROR
126
Martin v. Löwis11437992002-04-12 09:54:03 +0000127/* Define if you have the getaddrinfo function. */
128#undef HAVE_GETADDRINFO
129
130/* Define to 1 if you have the `getcwd' function. */
131#undef HAVE_GETCWD
132
133/* Define this if you have flockfile(), getc_unlocked(), and funlockfile() */
134#undef HAVE_GETC_UNLOCKED
135
136/* Define to 1 if you have the `getgroups' function. */
137#undef HAVE_GETGROUPS
138
139/* Define to 1 if you have the `gethostbyname' function. */
140#undef HAVE_GETHOSTBYNAME
141
Guido van Rossum7152e9b1999-03-22 21:46:06 +0000142/* Define this if you have some version of gethostbyname_r() */
143#undef HAVE_GETHOSTBYNAME_R
144
Martin v. Löwis11437992002-04-12 09:54:03 +0000145/* Define this if you have the 3-arg version of gethostbyname_r(). */
146#undef HAVE_GETHOSTBYNAME_R_3_ARG
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +0000147
Martin v. Löwis11437992002-04-12 09:54:03 +0000148/* Define this if you have the 5-arg version of gethostbyname_r(). */
149#undef HAVE_GETHOSTBYNAME_R_5_ARG
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +0000150
Martin v. Löwis11437992002-04-12 09:54:03 +0000151/* Define this if you have the 6-arg version of gethostbyname_r(). */
152#undef HAVE_GETHOSTBYNAME_R_6_ARG
Guido van Rossum9caf77a1996-08-01 00:52:26 +0000153
Martin v. Löwis11437992002-04-12 09:54:03 +0000154/* Define to 1 if you have the `getlogin' function. */
Fred Drake3bb3e571999-12-14 20:48:17 +0000155#undef HAVE_GETLOGIN
156
Martin v. Löwis11437992002-04-12 09:54:03 +0000157/* Define to 1 if you have the `getnameinfo' function. */
Martin v. Löwis01dfdb32001-06-23 16:30:13 +0000158#undef HAVE_GETNAMEINFO
159
Martin v. Löwis11437992002-04-12 09:54:03 +0000160/* Define to 1 if you have the `getpeername' function. */
Fred Drakef581db11999-12-14 21:11:47 +0000161#undef HAVE_GETPEERNAME
Fred Drake3bb3e571999-12-14 20:48:17 +0000162
Martin v. Löwis606edc12002-06-13 21:09:11 +0000163/* Define to 1 if you have the `getpgid' function. */
164#undef HAVE_GETPGID
165
Martin v. Löwis11437992002-04-12 09:54:03 +0000166/* Define to 1 if you have the `getpgrp' function. */
Guido van Rossum61fe8611994-01-03 14:56:37 +0000167#undef HAVE_GETPGRP
168
Martin v. Löwis11437992002-04-12 09:54:03 +0000169/* Define to 1 if you have the `getpid' function. */
Guido van Rossumf1328521994-05-03 14:43:56 +0000170#undef HAVE_GETPID
171
Martin v. Löwis11437992002-04-12 09:54:03 +0000172/* Define to 1 if you have the `getpriority' function. */
Thomas Woutersc2c12dc2001-07-11 14:45:34 +0000173#undef HAVE_GETPRIORITY
Guido van Rossum353ae582001-07-10 16:45:32 +0000174
Martin v. Löwis11437992002-04-12 09:54:03 +0000175/* Define to 1 if you have the `getpwent' function. */
Guido van Rossum1171ee61997-08-22 20:42:00 +0000176#undef HAVE_GETPWENT
177
Martin v. Löwis11437992002-04-12 09:54:03 +0000178/* Define to 1 if you have the `gettimeofday' function. */
Guido van Rossum61fe8611994-01-03 14:56:37 +0000179#undef HAVE_GETTIMEOFDAY
180
Martin v. Löwis11437992002-04-12 09:54:03 +0000181/* Define to 1 if you have the `getwd' function. */
Guido van Rossum61fe8611994-01-03 14:56:37 +0000182#undef HAVE_GETWD
183
Martin v. Löwis11437992002-04-12 09:54:03 +0000184/* Define to 1 if you have the <grp.h> header file. */
Guido van Rossuma6535fd2001-10-18 19:44:10 +0000185#undef HAVE_GRP_H
186
Martin v. Löwis11437992002-04-12 09:54:03 +0000187/* Define to 1 if you have the `hstrerror' function. */
188#undef HAVE_HSTRERROR
189
190/* Define to 1 if you have the `hypot' function. */
191#undef HAVE_HYPOT
192
193/* Define to 1 if you have the `inet_pton' function. */
194#undef HAVE_INET_PTON
195
196/* Define to 1 if you have the <inttypes.h> header file. */
197#undef HAVE_INTTYPES_H
198
199/* Define to 1 if you have the `kill' function. */
200#undef HAVE_KILL
201
202/* Define to 1 if you have the `killpg' function. */
203#undef HAVE_KILLPG
204
205/* Define to 1 if you have the <langinfo.h> header file. */
Martin v. Löwis9b75dca2001-08-10 13:58:50 +0000206#undef HAVE_LANGINFO_H
207
Martin v. Löwis11437992002-04-12 09:54:03 +0000208/* Defined to enable large file support when an off_t is bigger than a long
209 and long long is available and at least as big as an off_t. You may need to
210 add some flags for configuration and compilation to enable this mode. (For
211 Solaris and Linux, the necessary defines are already defined.) */
212#undef HAVE_LARGEFILE_SUPPORT
Martin v. Löwis2e64c342002-03-27 18:49:02 +0000213
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +0000214/* Define to 1 if you have the `lchown' function. */
215#undef HAVE_LCHOWN
216
Martin v. Löwis11437992002-04-12 09:54:03 +0000217/* Define to 1 if you have the `dl' library (-ldl). */
Guido van Rossum61fe8611994-01-03 14:56:37 +0000218#undef HAVE_LIBDL
219
Martin v. Löwis11437992002-04-12 09:54:03 +0000220/* Define to 1 if you have the `dld' library (-ldld). */
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000221#undef HAVE_LIBDLD
Guido van Rossumf1328521994-05-03 14:43:56 +0000222
Martin v. Löwis11437992002-04-12 09:54:03 +0000223/* Define to 1 if you have the `ieee' library (-lieee). */
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000224#undef HAVE_LIBIEEE
Guido van Rossumaef734b2001-01-10 21:09:12 +0000225
Martin v. Löwis11437992002-04-12 09:54:03 +0000226/* Define to 1 if you have the <libintl.h> header file. */
227#undef HAVE_LIBINTL_H
228
229/* Define to 1 if you have the `rt' library (-lrt). */
Martin v. Löwis41933dd2002-03-21 15:10:58 +0000230#undef HAVE_LIBRT
231
Martin v. Löwis11437992002-04-12 09:54:03 +0000232/* Define to 1 if you have the <libutil.h> header file. */
233#undef HAVE_LIBUTIL_H
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000234
Martin v. Löwis11437992002-04-12 09:54:03 +0000235/* Define to 1 if you have the <limits.h> header file. */
236#undef HAVE_LIMITS_H
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000237
Martin v. Löwis11437992002-04-12 09:54:03 +0000238/* Define to 1 if you have the `link' function. */
239#undef HAVE_LINK
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000240
Martin v. Löwis11437992002-04-12 09:54:03 +0000241/* Define to 1 if you have the <locale.h> header file. */
242#undef HAVE_LOCALE_H
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000243
244/* Define this if you have the type long long. */
245#undef HAVE_LONG_LONG
246
Martin v. Löwis11437992002-04-12 09:54:03 +0000247/* Define to 1 if you have the `lstat' function. */
248#undef HAVE_LSTAT
249
Neal Norwitz11690112002-07-30 01:08:28 +0000250/* Define this if you have the makedev macro. */
251#undef HAVE_MAKEDEV
252
Martin v. Löwis11437992002-04-12 09:54:03 +0000253/* Define to 1 if you have the `memmove' function. */
254#undef HAVE_MEMMOVE
255
256/* Define to 1 if you have the <memory.h> header file. */
257#undef HAVE_MEMORY_H
258
259/* Define to 1 if you have the `mkfifo' function. */
260#undef HAVE_MKFIFO
261
Martin v. Löwis06a83e92002-04-14 10:19:44 +0000262/* Define to 1 if you have the `mknod' function. */
263#undef HAVE_MKNOD
264
Martin v. Löwis11437992002-04-12 09:54:03 +0000265/* Define to 1 if you have the `mktime' function. */
266#undef HAVE_MKTIME
267
268/* Define to 1 if you have the `mremap' function. */
269#undef HAVE_MREMAP
270
271/* Define to 1 if you have the <ncurses.h> header file. */
272#undef HAVE_NCURSES_H
273
Martin v. Löwis11437992002-04-12 09:54:03 +0000274/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
275#undef HAVE_NDIR_H
276
277/* Define to 1 if you have the <netpacket/packet.h> header file. */
278#undef HAVE_NETPACKET_PACKET_H
279
280/* Define to 1 if you have the `nice' function. */
281#undef HAVE_NICE
282
283/* Define to 1 if you have the `openpty' function. */
284#undef HAVE_OPENPTY
285
286/* Define to 1 if you have the `pathconf' function. */
287#undef HAVE_PATHCONF
288
289/* Define to 1 if you have the `pause' function. */
290#undef HAVE_PAUSE
291
292/* Define to 1 if you have the `plock' function. */
293#undef HAVE_PLOCK
294
295/* Define to 1 if you have the `poll' function. */
296#undef HAVE_POLL
297
298/* Define to 1 if you have the <poll.h> header file. */
299#undef HAVE_POLL_H
300
301/* Define if your compiler supports function prototype */
302#undef HAVE_PROTOTYPES
303
304/* Define if you have GNU PTH threads. */
305#undef HAVE_PTH
306
307/* Define to 1 if you have the <pthread.h> header file. */
308#undef HAVE_PTHREAD_H
309
310/* Define to 1 if you have the `pthread_init' function. */
311#undef HAVE_PTHREAD_INIT
312
313/* Define to 1 if you have the `pthread_sigmask' function. */
314#undef HAVE_PTHREAD_SIGMASK
315
316/* Define to 1 if you have the <pty.h> header file. */
317#undef HAVE_PTY_H
318
319/* Define to 1 if you have the `putenv' function. */
320#undef HAVE_PUTENV
321
322/* Define to 1 if you have the `readlink' function. */
323#undef HAVE_READLINK
324
325/* Define if you have readline 4.2 */
326#undef HAVE_RL_COMPLETION_MATCHES
327
328/* Define if you have readline 4.0 */
329#undef HAVE_RL_PRE_INPUT_HOOK
330
331/* Define to 1 if you have the `select' function. */
332#undef HAVE_SELECT
333
334/* Define to 1 if you have the `setegid' function. */
335#undef HAVE_SETEGID
336
337/* Define to 1 if you have the `seteuid' function. */
338#undef HAVE_SETEUID
339
340/* Define to 1 if you have the `setgid' function. */
341#undef HAVE_SETGID
342
343/* Define to 1 if you have the `setgroups' function. */
344#undef HAVE_SETGROUPS
345
346/* Define to 1 if you have the `setlocale' function. */
347#undef HAVE_SETLOCALE
348
349/* Define to 1 if you have the `setpgid' function. */
350#undef HAVE_SETPGID
351
Martin v. Löwis11437992002-04-12 09:54:03 +0000352/* Define to 1 if you have the `setregid' function. */
353#undef HAVE_SETREGID
354
355/* Define to 1 if you have the `setreuid' function. */
356#undef HAVE_SETREUID
357
358/* Define to 1 if you have the `setsid' function. */
359#undef HAVE_SETSID
360
361/* Define to 1 if you have the `setuid' function. */
362#undef HAVE_SETUID
363
364/* Define to 1 if you have the `setvbuf' function. */
365#undef HAVE_SETVBUF
366
367/* Define to 1 if you have the `sigaction' function. */
368#undef HAVE_SIGACTION
369
370/* Define to 1 if you have the `siginterrupt' function. */
371#undef HAVE_SIGINTERRUPT
372
373/* Define to 1 if you have the <signal.h> header file. */
374#undef HAVE_SIGNAL_H
375
376/* Define to 1 if you have the `sigrelse' function. */
377#undef HAVE_SIGRELSE
378
379/* Define to 1 if you have the `snprintf' function. */
380#undef HAVE_SNPRINTF
381
382/* Define if sockaddr has sa_len member */
383#undef HAVE_SOCKADDR_SA_LEN
384
385/* struct sockaddr_storage (sys/socket.h) */
386#undef HAVE_SOCKADDR_STORAGE
387
388/* Define to 1 if you have the `statvfs' function. */
389#undef HAVE_STATVFS
390
391/* Define to 1 if you have the <stdarg.h> header file. */
392#undef HAVE_STDARG_H
393
394/* Define if your compiler supports variable length function prototypes (e.g.
395 void fprintf(FILE *, char *, ...);) *and* <stdarg.h> */
396#undef HAVE_STDARG_PROTOTYPES
397
398/* Define to 1 if you have the <stddef.h> header file. */
399#undef HAVE_STDDEF_H
400
401/* Define to 1 if you have the <stdint.h> header file. */
402#undef HAVE_STDINT_H
403
404/* Define to 1 if you have the <stdlib.h> header file. */
405#undef HAVE_STDLIB_H
406
407/* Define to 1 if you have the `strdup' function. */
408#undef HAVE_STRDUP
409
410/* Define to 1 if you have the `strerror' function. */
411#undef HAVE_STRERROR
412
413/* Define to 1 if you have the `strftime' function. */
414#undef HAVE_STRFTIME
415
416/* Define to 1 if you have the <strings.h> header file. */
417#undef HAVE_STRINGS_H
418
419/* Define to 1 if you have the <string.h> header file. */
420#undef HAVE_STRING_H
421
422/* Define to 1 if you have the `strptime' function. */
423#undef HAVE_STRPTIME
424
425/* Define to 1 if `st_blksize' is member of `struct stat'. */
426#undef HAVE_STRUCT_STAT_ST_BLKSIZE
427
428/* Define to 1 if `st_blocks' is member of `struct stat'. */
429#undef HAVE_STRUCT_STAT_ST_BLOCKS
430
431/* Define to 1 if `st_rdev' is member of `struct stat'. */
432#undef HAVE_STRUCT_STAT_ST_RDEV
433
434/* Define to 1 if `tm_zone' is member of `struct tm'. */
435#undef HAVE_STRUCT_TM_TM_ZONE
436
437/* Define to 1 if your `struct stat' has `st_blksize'. Deprecated, use
438 `HAVE_STRUCT_STAT_ST_BLKSIZE' instead. */
439#undef HAVE_ST_BLKSIZE
440
441/* Define to 1 if your `struct stat' has `st_blocks'. Deprecated, use
442 `HAVE_STRUCT_STAT_ST_BLOCKS' instead. */
443#undef HAVE_ST_BLOCKS
444
445/* Define to 1 if your `struct stat' has `st_rdev'. Deprecated, use
446 `HAVE_STRUCT_STAT_ST_RDEV' instead. */
447#undef HAVE_ST_RDEV
448
449/* Define to 1 if you have the `symlink' function. */
450#undef HAVE_SYMLINK
451
452/* Define to 1 if you have the `sysconf' function. */
453#undef HAVE_SYSCONF
454
455/* Define to 1 if you have the <sys/audioio.h> header file. */
456#undef HAVE_SYS_AUDIOIO_H
457
458/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
459 */
460#undef HAVE_SYS_DIR_H
461
462/* Define to 1 if you have the <sys/file.h> header file. */
463#undef HAVE_SYS_FILE_H
464
465/* Define to 1 if you have the <sys/lock.h> header file. */
466#undef HAVE_SYS_LOCK_H
467
Neal Norwitz3d949422002-04-20 13:46:43 +0000468/* Define to 1 if you have the <sys/mkdev.h> header file. */
469#undef HAVE_SYS_MKDEV_H
470
Martin v. Löwis11437992002-04-12 09:54:03 +0000471/* Define to 1 if you have the <sys/modem.h> header file. */
472#undef HAVE_SYS_MODEM_H
473
474/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
475 */
476#undef HAVE_SYS_NDIR_H
477
478/* Define to 1 if you have the <sys/param.h> header file. */
479#undef HAVE_SYS_PARAM_H
480
481/* Define to 1 if you have the <sys/poll.h> header file. */
482#undef HAVE_SYS_POLL_H
483
484/* Define to 1 if you have the <sys/resource.h> header file. */
485#undef HAVE_SYS_RESOURCE_H
486
487/* Define to 1 if you have the <sys/select.h> header file. */
488#undef HAVE_SYS_SELECT_H
489
490/* Define to 1 if you have the <sys/socket.h> header file. */
491#undef HAVE_SYS_SOCKET_H
492
493/* Define to 1 if you have the <sys/stat.h> header file. */
494#undef HAVE_SYS_STAT_H
495
496/* Define to 1 if you have the <sys/times.h> header file. */
497#undef HAVE_SYS_TIMES_H
498
499/* Define to 1 if you have the <sys/time.h> header file. */
500#undef HAVE_SYS_TIME_H
501
502/* Define to 1 if you have the <sys/types.h> header file. */
503#undef HAVE_SYS_TYPES_H
504
505/* Define to 1 if you have the <sys/un.h> header file. */
506#undef HAVE_SYS_UN_H
507
508/* Define to 1 if you have the <sys/utsname.h> header file. */
509#undef HAVE_SYS_UTSNAME_H
510
511/* Define to 1 if you have the <sys/wait.h> header file. */
512#undef HAVE_SYS_WAIT_H
513
514/* Define to 1 if you have the `tcgetpgrp' function. */
515#undef HAVE_TCGETPGRP
516
517/* Define to 1 if you have the `tcsetpgrp' function. */
518#undef HAVE_TCSETPGRP
519
520/* Define to 1 if you have the `tempnam' function. */
521#undef HAVE_TEMPNAM
522
523/* Define to 1 if you have the <termios.h> header file. */
524#undef HAVE_TERMIOS_H
525
526/* Define to 1 if you have the <term.h> header file. */
527#undef HAVE_TERM_H
528
529/* Define to 1 if you have the <thread.h> header file. */
530#undef HAVE_THREAD_H
531
532/* Define to 1 if you have the `timegm' function. */
533#undef HAVE_TIMEGM
534
535/* Define to 1 if you have the `times' function. */
536#undef HAVE_TIMES
537
538/* Define to 1 if you have the `tmpfile' function. */
539#undef HAVE_TMPFILE
540
541/* Define to 1 if you have the `tmpnam' function. */
542#undef HAVE_TMPNAM
543
544/* Define to 1 if you have the `tmpnam_r' function. */
545#undef HAVE_TMPNAM_R
546
547/* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use
548 `HAVE_STRUCT_TM_TM_ZONE' instead. */
549#undef HAVE_TM_ZONE
550
551/* Define to 1 if you have the `truncate' function. */
552#undef HAVE_TRUNCATE
553
554/* Define to 1 if you don't have `tm_zone' but do have the external array
555 `tzname'. */
556#undef HAVE_TZNAME
557
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000558/* Define this if you have the type uintptr_t. */
559#undef HAVE_UINTPTR_T
560
Martin v. Löwis11437992002-04-12 09:54:03 +0000561/* Define to 1 if you have the `uname' function. */
562#undef HAVE_UNAME
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000563
Martin v. Löwis11437992002-04-12 09:54:03 +0000564/* Define to 1 if you have the <unistd.h> header file. */
565#undef HAVE_UNISTD_H
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000566
Martin v. Löwis11437992002-04-12 09:54:03 +0000567/* Define to 1 if you have the `unsetenv' function. */
568#undef HAVE_UNSETENV
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000569
Martin v. Löwis11437992002-04-12 09:54:03 +0000570/* Define if you have a useable wchar_t type defined in wchar.h; useable means
571 wchar_t must be 16-bit unsigned type. (see Include/unicodeobject.h). */
572#undef HAVE_USABLE_WCHAR_T
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000573
Martin v. Löwis11437992002-04-12 09:54:03 +0000574/* Define to 1 if you have the <utime.h> header file. */
575#undef HAVE_UTIME_H
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000576
Martin v. Löwis11437992002-04-12 09:54:03 +0000577/* Define to 1 if you have the `waitpid' function. */
578#undef HAVE_WAITPID
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000579
Martin v. Löwis11437992002-04-12 09:54:03 +0000580/* Define if the compiler provides a wchar.h header file. */
581#undef HAVE_WCHAR_H
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000582
Martin v. Löwis11437992002-04-12 09:54:03 +0000583/* Define to 1 if you have the `_getpty' function. */
584#undef HAVE__GETPTY
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000585
586/* Define if you are using Mach cthreads directly under /include */
587#undef HURD_C_THREADS
588
589/* Define if you are using Mach cthreads under mach / */
590#undef MACH_C_THREADS
591
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000592/* Define if malloc(0) returns a NULL pointer. */
593#undef MALLOC_ZERO_RETURNS_NULL
594
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000595/* Define if mvwdelch in curses.h is an expression. */
596#undef MVWDELCH_IS_EXPRESSION
597
Martin v. Löwis11437992002-04-12 09:54:03 +0000598/* Define to the address where bug reports for this package should be sent. */
599#undef PACKAGE_BUGREPORT
600
601/* Define to the full name of this package. */
602#undef PACKAGE_NAME
603
604/* Define to the full name and version of this package. */
605#undef PACKAGE_STRING
606
607/* Define to the one symbol short name of this package. */
608#undef PACKAGE_TARNAME
609
610/* Define to the version of this package. */
611#undef PACKAGE_VERSION
612
613/* Defined if PTHREAD_SCOPE_SYSTEM supported. */
614#undef PTHREAD_SYSTEM_SCHED_SUPPORTED
615
616/* Define as the integral type used for Unicode representation. */
617#undef PY_UNICODE_TYPE
618
619/* Define if you want to build an interpreter with many run-time checks. */
620#undef Py_DEBUG
621
Mark Hammond8235ea12002-07-19 06:55:41 +0000622/* Defined if Python is built as a shared library. */
623#undef Py_ENABLE_SHARED
624
Martin v. Löwis0036cba2002-04-12 09:58:45 +0000625/* Define as the size of the unicode type. */
626#undef Py_UNICODE_SIZE
627
Martin v. Löwis11437992002-04-12 09:54:03 +0000628/* Define if you want to have a Unicode type. */
629#undef Py_USING_UNICODE
630
631/* Define as the return type of signal handlers (`int' or `void'). */
632#undef RETSIGTYPE
633
634/* Define if setpgrp() must be called as setpgrp(0, 0). */
635#undef SETPGRP_HAVE_ARG
636
Mark Hammond8235ea12002-07-19 06:55:41 +0000637/* Define to 1 if the `setpgrp' function takes no argument. */
638#undef SETPGRP_VOID
639
Martin v. Löwis11437992002-04-12 09:54:03 +0000640/* Define if i>>j for signed int i does not extend the sign bit when i < 0 */
641#undef SIGNED_RIGHT_SHIFT_ZERO_FILLS
642
643/* The size of a `char', as computed by sizeof. */
644#undef SIZEOF_CHAR
645
646/* The size of a `double', as computed by sizeof. */
647#undef SIZEOF_DOUBLE
648
649/* The size of a `float', as computed by sizeof. */
650#undef SIZEOF_FLOAT
651
652/* The size of a `fpos_t', as computed by sizeof. */
653#undef SIZEOF_FPOS_T
654
655/* The size of a `int', as computed by sizeof. */
656#undef SIZEOF_INT
657
658/* The size of a `long', as computed by sizeof. */
659#undef SIZEOF_LONG
660
661/* The size of a `long long', as computed by sizeof. */
662#undef SIZEOF_LONG_LONG
663
664/* The number of bytes in an off_t. */
665#undef SIZEOF_OFF_T
666
667/* The number of bytes in a pthread_t. */
668#undef SIZEOF_PTHREAD_T
669
670/* The size of a `short', as computed by sizeof. */
671#undef SIZEOF_SHORT
672
673/* The number of bytes in a time_t. */
674#undef SIZEOF_TIME_T
675
676/* The size of a `uintptr_t', as computed by sizeof. */
677#undef SIZEOF_UINTPTR_T
678
679/* The size of a `void *', as computed by sizeof. */
680#undef SIZEOF_VOID_P
681
682/* The size of a `wchar_t', as computed by sizeof. */
683#undef SIZEOF_WCHAR_T
684
685/* Define to 1 if you have the ANSI C header files. */
686#undef STDC_HEADERS
687
688/* Define if you can safely include both <sys/select.h> and <sys/time.h>
689 (which you can't on SCO ODT 3.0). */
690#undef SYS_SELECT_WITH_SYS_TIME
691
692/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
693#undef TIME_WITH_SYS_TIME
694
695/* Define to 1 if your <sys/time.h> declares `struct tm'. */
696#undef TM_IN_SYS_TIME
697
698/* Define if you want to use MacPython modules on MacOSX in unix-Python. */
699#undef USE_TOOLBOX_OBJECT_GLUE
700
701/* Define if a va_list is an array of some kind */
702#undef VA_LIST_IS_ARRAY
703
704/* Define if you want SIGFPE handled (see Include/pyfpe.h). */
705#undef WANT_SIGFPE_HANDLER
706
707/* Define if you want wctype.h functions to be used instead of the one
708 supplied by Python itself. (see Include/unicodectype.h). */
709#undef WANT_WCTYPE_FUNCTIONS
710
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000711/* Define if WINDOW in curses.h offers a field _flags. */
712#undef WINDOW_HAS_FLAGS
713
Martin v. Löwis11437992002-04-12 09:54:03 +0000714/* Define if you want to emulate SGI (IRIX 4) dynamic linking. This is
715 rumoured to work on VAX (Ultrix), Sun3 (SunOS 3.4), Sequent Symmetry
716 (Dynix), and Atari ST. This requires the 'dl-dld' library,
717 ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z, as well as the 'GNU dld'
718 library, ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z. Do not bother on
719 SunOS 4 or 5, they already have dynamic linking using shared libraries. */
720#undef WITH_DL_DLD
721
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000722/* Define if you want documentation strings in extension modules */
723#undef WITH_DOC_STRINGS
724
Martin v. Löwis11437992002-04-12 09:54:03 +0000725/* Define if you want to use the new-style (Openstep, Rhapsody, MacOS) dynamic
726 linker (dyld) instead of the old-style (NextStep) dynamic linker (rld).
727 Dyld is necessary to support frameworks. */
728#undef WITH_DYLD
729
730/* Define if you want to produce an OpenStep/Rhapsody framework (shared
731 library plus accessory files). */
732#undef WITH_NEXT_FRAMEWORK
733
734/* Define if you want to compile in Python-specific mallocs */
735#undef WITH_PYMALLOC
736
737/* Define if you want to use SGI (IRIX 4) dynamic linking. This requires the
738 "dl" library by Jack Jansen, ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z. Do
739 not bother on IRIX 5, it already has dynamic linking using SunOS style
740 shared libraries */
741#undef WITH_SGI_DL
742
743/* Define if you want to compile in rudimentary thread support */
744#undef WITH_THREAD
745
Martin v. Löwise8aea582002-04-16 05:51:02 +0000746/* Define if you want to read files with foreign newlines. */
747#undef WITH_UNIVERSAL_NEWLINES
748
Martin v. Löwis11437992002-04-12 09:54:03 +0000749/* Define to 1 if your processor stores words with the most significant byte
750 first (like Motorola and SPARC, unlike Intel and VAX). */
751#undef WORDS_BIGENDIAN
752
753/* Define to 1 if on AIX 3.
754 System headers sometimes define this.
755 We just want to avoid a redefinition error message. */
756#ifndef _ALL_SOURCE
757# undef _ALL_SOURCE
758#endif
759
760/* This must be set to 64 on some systems to enable large file support. */
761#undef _FILE_OFFSET_BITS
762
Martin v. Löwis6f18a3c2002-07-20 08:51:52 +0000763/* Define on Linux to activate all library features */
764#undef _GNU_SOURCE
765
Martin v. Löwis11437992002-04-12 09:54:03 +0000766/* This must be defined on some systems to enable large file support. */
767#undef _LARGEFILE_SOURCE
768
769/* Define to 1 if on MINIX. */
770#undef _MINIX
771
Neal Norwitz11690112002-07-30 01:08:28 +0000772/* Define _OSF_SOURCE to get the makedev macro. */
773#undef _OSF_SOURCE
774
Martin v. Löwis11437992002-04-12 09:54:03 +0000775/* Define to 2 if the system does not provide POSIX.1 features except with
776 this defined. */
777#undef _POSIX_1_SOURCE
778
779/* Define to 1 if you need to in order for `stat' and other things to work. */
780#undef _POSIX_SOURCE
781
782/* Define if you have POSIX threads, and your system does not define that. */
783#undef _POSIX_THREADS
784
785/* Define to force use of thread-safe errno, h_errno, and other functions */
786#undef _REENTRANT
787
Martin v. Löwis6f18a3c2002-07-20 08:51:52 +0000788/* Define on UNIX to activate XPG/5 features. */
789#ifndef _XOPEN_SOURCE
790# define _XOPEN_SOURCE 500
791#endif
792
Martin v. Löwis11437992002-04-12 09:54:03 +0000793/* Define to 1 if type `char' is unsigned and you are not using gcc. */
794#ifndef __CHAR_UNSIGNED__
795# undef __CHAR_UNSIGNED__
796#endif
797
798/* Defined on Solaris to see additional function prototypes. */
799#undef __EXTENSIONS__
800
801/* Define to 'long' if <time.h> doesn't define. */
802#undef clock_t
803
804/* Define to empty if `const' does not conform to ANSI C. */
805#undef const
806
807/* Define to `int' if <sys/types.h> doesn't define. */
808#undef gid_t
809
810/* Define to `int' if <sys/types.h> does not define. */
811#undef mode_t
812
813/* Define to `long' if <sys/types.h> does not define. */
814#undef off_t
815
816/* Define to `int' if <sys/types.h> does not define. */
817#undef pid_t
818
819/* Define to empty if the keyword does not work. */
820#undef signed
821
822/* Define to `unsigned' if <sys/types.h> does not define. */
823#undef size_t
824
825/* Define to `int' if <sys/types.h> does not define. */
826#undef socklen_t
827
828/* Define to `int' if <sys/types.h> doesn't define. */
829#undef uid_t
830
831/* Define to empty if the keyword does not work. */
832#undef volatile
833
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000834
Martin v. Löwis28341ce2001-09-05 15:18:00 +0000835/* Define the macros needed if on a UnixWare 7.x system. */
836#if defined(__USLC__) && defined(__SCO_VERSION__)
Martin v. Löwis28341ce2001-09-05 15:18:00 +0000837#define STRICT_SYSV_CURSES /* Don't use ncurses extensions */
838#endif
839