pyconfig.h.in 29 KB
Newer Older
1
/* pyconfig.h.in.  Generated from configure.in by autoheader.  */
2

3 4 5 6 7

#ifndef Py_PYCONFIG_H
#define Py_PYCONFIG_H


8 9 10
/* Define for AIX if your compiler is a genuine IBM xlC/xlC_r and you want
   support for AIX C++ shared extension modules. */
#undef AIX_GENUINE_CPLUSPLUS
11

12 13 14
/* Define this if you have AtheOS threads. */
#undef ATHEOS_THREADS

15 16 17
/* Define if you have the Mach cthreads package */
#undef C_THREADS

18 19 20
/* Define if --enable-ipv6 is specified */
#undef ENABLE_IPV6

21 22
/* Define if getpgrp() must be called as getpgrp(0). */
#undef GETPGRP_HAVE_ARG
23

24 25 26
/* Define if gettimeofday() does not have second (timezone) argument This is
   the case on Motorola V4 (R40V4.2) */
#undef GETTIMEOFDAY_NO_TZ
27

28 29 30
/* Define to 1 if you have the `acosh' function. */
#undef HAVE_ACOSH

31 32
/* struct addrinfo (netdb.h) */
#undef HAVE_ADDRINFO
Guido van Rossum's avatar
Guido van Rossum committed
33

34 35
/* Define to 1 if you have the `alarm' function. */
#undef HAVE_ALARM
36

37 38
/* Define this if your time.h defines altzone. */
#undef HAVE_ALTZONE
39

40 41 42
/* Define to 1 if you have the `asinh' function. */
#undef HAVE_ASINH

43 44 45
/* Define to 1 if you have the <asm/types.h> header file. */
#undef HAVE_ASM_TYPES_H

46 47 48
/* Define to 1 if you have the `atanh' function. */
#undef HAVE_ATANH

49 50 51
/* Define if GCC supports __attribute__((format(PyArg_ParseTuple, 2, 3))) */
#undef HAVE_ATTRIBUTE_FORMAT_PARSETUPLE

52 53 54
/* Define to 1 if you have the `bind_textdomain_codeset' function. */
#undef HAVE_BIND_TEXTDOMAIN_CODESET

55 56 57
/* Define to 1 if you have the <bluetooth/bluetooth.h> header file. */
#undef HAVE_BLUETOOTH_BLUETOOTH_H

58 59 60
/* Define to 1 if you have the <bluetooth.h> header file. */
#undef HAVE_BLUETOOTH_H

61 62 63 64
/* Define if mbstowcs(NULL, "text", 0) does not return the number of wide
   chars that would be converted. */
#undef HAVE_BROKEN_MBSTOWCS

65 66
/* Define if nice() returns success/failure instead of the new priority. */
#undef HAVE_BROKEN_NICE
67

68 69 70
/* Define if poll() sets errno on invalid file descriptors. */
#undef HAVE_BROKEN_POLL

71 72 73
/* Define if the Posix semaphores do not work on your system */
#undef HAVE_BROKEN_POSIX_SEMAPHORES

74 75 76
/* Define if pthread_sigmask() does not work on your system. */
#undef HAVE_BROKEN_PTHREAD_SIGMASK

77 78 79
/* Define this if you have the type _Bool. */
#undef HAVE_C99_BOOL

80 81 82
/* Define to 1 if you have the `chflags' function. */
#undef HAVE_CHFLAGS

83
/* Define to 1 if you have the `chown' function. */
84 85
#undef HAVE_CHOWN

86
/* Define if you have the 'chroot' function. */
87 88
#undef HAVE_CHROOT

89
/* Define to 1 if you have the `clock' function. */
90 91
#undef HAVE_CLOCK

92
/* Define to 1 if you have the `confstr' function. */
93 94
#undef HAVE_CONFSTR

95 96 97
/* Define to 1 if you have the <conio.h> header file. */
#undef HAVE_CONIO_H

98 99 100
/* Define to 1 if you have the `copysign' function. */
#undef HAVE_COPYSIGN

101
/* Define to 1 if you have the `ctermid' function. */
102 103
#undef HAVE_CTERMID

104
/* Define if you have the 'ctermid_r' function. */
105 106
#undef HAVE_CTERMID_R

107 108 109
/* Define to 1 if you have the <curses.h> header file. */
#undef HAVE_CURSES_H

110 111 112 113 114 115 116 117 118
/* Define if you have the 'is_term_resized' function. */
#undef HAVE_CURSES_IS_TERM_RESIZED

/* Define if you have the 'resizeterm' function. */
#undef HAVE_CURSES_RESIZETERM

/* Define if you have the 'resize_term' function. */
#undef HAVE_CURSES_RESIZE_TERM

119 120 121 122 123 124 125 126 127 128 129 130
/* Define to 1 if you have the declaration of `isfinite', and to 0 if you
   don't. */
#undef HAVE_DECL_ISFINITE

/* Define to 1 if you have the declaration of `isinf', and to 0 if you don't.
   */
#undef HAVE_DECL_ISINF

/* Define to 1 if you have the declaration of `isnan', and to 0 if you don't.
   */
#undef HAVE_DECL_ISNAN

131 132 133 134
/* Define to 1 if you have the declaration of `tzname', and to 0 if you don't.
   */
#undef HAVE_DECL_TZNAME

135 136 137
/* Define to 1 if you have the device macros. */
#undef HAVE_DEVICE_MACROS

138 139 140
/* Define if we have /dev/ptc. */
#undef HAVE_DEV_PTC

141 142 143
/* Define if we have /dev/ptmx. */
#undef HAVE_DEV_PTMX

144 145 146
/* Define to 1 if you have the <direct.h> header file. */
#undef HAVE_DIRECT_H

147 148 149 150 151 152 153 154
/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
   */
#undef HAVE_DIRENT_H

/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H

/* Define to 1 if you have the `dlopen' function. */
155 156
#undef HAVE_DLOPEN

157
/* Define to 1 if you have the `dup2' function. */
158 159
#undef HAVE_DUP2

160 161 162
/* Defined when any dynamic module loading is enabled. */
#undef HAVE_DYNAMIC_LOADING

Christian Heimes's avatar
Christian Heimes committed
163 164 165
/* Define if you have the 'epoll' functions. */
#undef HAVE_EPOLL

166 167 168
/* Define to 1 if you have the <errno.h> header file. */
#undef HAVE_ERRNO_H

169
/* Define to 1 if you have the `execv' function. */
170 171
#undef HAVE_EXECV

172 173 174
/* Define to 1 if you have the `expm1' function. */
#undef HAVE_EXPM1

175
/* Define if you have the 'fchdir' function. */
Fred Drake's avatar
Fred Drake committed
176 177
#undef HAVE_FCHDIR

178 179 180 181 182 183
/* Define to 1 if you have the `fchmod' function. */
#undef HAVE_FCHMOD

/* Define to 1 if you have the `fchown' function. */
#undef HAVE_FCHOWN

184 185 186
/* Define to 1 if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H

187
/* Define if you have the 'fdatasync' function. */
188 189
#undef HAVE_FDATASYNC

190 191 192
/* Define to 1 if you have the `finite' function. */
#undef HAVE_FINITE

193
/* Define if you have the 'flock' function. */
Guido van Rossum's avatar
Guido van Rossum committed
194 195
#undef HAVE_FLOCK

196
/* Define to 1 if you have the `fork' function. */
197 198
#undef HAVE_FORK

199
/* Define to 1 if you have the `forkpty' function. */
200 201
#undef HAVE_FORKPTY

202
/* Define to 1 if you have the `fpathconf' function. */
203 204
#undef HAVE_FPATHCONF

205
/* Define to 1 if you have the `fseek64' function. */
206 207
#undef HAVE_FSEEK64

208
/* Define to 1 if you have the `fseeko' function. */
209 210
#undef HAVE_FSEEKO

211
/* Define to 1 if you have the `fstatvfs' function. */
212 213
#undef HAVE_FSTATVFS

214 215 216
/* Define if you have the 'fsync' function. */
#undef HAVE_FSYNC

217
/* Define to 1 if you have the `ftell64' function. */
218 219
#undef HAVE_FTELL64

220
/* Define to 1 if you have the `ftello' function. */
221 222
#undef HAVE_FTELLO

223
/* Define to 1 if you have the `ftime' function. */
224 225
#undef HAVE_FTIME

226
/* Define to 1 if you have the `ftruncate' function. */
227 228
#undef HAVE_FTRUNCATE

229
/* Define to 1 if you have the `gai_strerror' function. */
230 231
#undef HAVE_GAI_STRERROR

232 233 234 235
/* Define if you have the getaddrinfo function. */
#undef HAVE_GETADDRINFO

/* Define to 1 if you have the `getcwd' function. */
236 237
#undef HAVE_GETCWD

238 239 240 241
/* Define this if you have flockfile(), getc_unlocked(), and funlockfile() */
#undef HAVE_GETC_UNLOCKED

/* Define to 1 if you have the `getgroups' function. */
242 243
#undef HAVE_GETGROUPS

244
/* Define to 1 if you have the `gethostbyname' function. */
245 246
#undef HAVE_GETHOSTBYNAME

247 248 249 250 251 252 253 254 255 256 257 258
/* Define this if you have some version of gethostbyname_r() */
#undef HAVE_GETHOSTBYNAME_R

/* Define this if you have the 3-arg version of gethostbyname_r(). */
#undef HAVE_GETHOSTBYNAME_R_3_ARG

/* Define this if you have the 5-arg version of gethostbyname_r(). */
#undef HAVE_GETHOSTBYNAME_R_5_ARG

/* Define this if you have the 6-arg version of gethostbyname_r(). */
#undef HAVE_GETHOSTBYNAME_R_6_ARG

259 260 261
/* Define to 1 if you have the `getitimer' function. */
#undef HAVE_GETITIMER

262 263 264
/* Define to 1 if you have the `getloadavg' function. */
#undef HAVE_GETLOADAVG

265
/* Define to 1 if you have the `getlogin' function. */
266 267
#undef HAVE_GETLOGIN

268
/* Define to 1 if you have the `getnameinfo' function. */
269 270
#undef HAVE_GETNAMEINFO

271 272 273
/* Define if you have the 'getpagesize' function. */
#undef HAVE_GETPAGESIZE

274
/* Define to 1 if you have the `getpeername' function. */
275
#undef HAVE_GETPEERNAME
276

277 278 279
/* Define to 1 if you have the `getpgid' function. */
#undef HAVE_GETPGID

280
/* Define to 1 if you have the `getpgrp' function. */
281 282
#undef HAVE_GETPGRP

283
/* Define to 1 if you have the `getpid' function. */
284 285
#undef HAVE_GETPID

286
/* Define to 1 if you have the `getpriority' function. */
287
#undef HAVE_GETPRIORITY
288

289
/* Define to 1 if you have the `getpwent' function. */
290 291
#undef HAVE_GETPWENT

292 293 294
/* Define to 1 if you have the `getsid' function. */
#undef HAVE_GETSID

295 296 297 298 299 300
/* Define to 1 if you have the `getspent' function. */
#undef HAVE_GETSPENT

/* Define to 1 if you have the `getspnam' function. */
#undef HAVE_GETSPNAM

301
/* Define to 1 if you have the `gettimeofday' function. */
302 303
#undef HAVE_GETTIMEOFDAY

304
/* Define to 1 if you have the `getwd' function. */
305 306
#undef HAVE_GETWD

307 308 309
/* Define to 1 if you have the <grp.h> header file. */
#undef HAVE_GRP_H

310
/* Define if you have the 'hstrerror' function. */
311 312
#undef HAVE_HSTRERROR

313
/* Define to 1 if you have the `hypot' function. */
314 315
#undef HAVE_HYPOT

316 317 318
/* Define to 1 if you have the <ieeefp.h> header file. */
#undef HAVE_IEEEFP_H

319
/* Define if you have the 'inet_aton' function. */
320 321
#undef HAVE_INET_ATON

322
/* Define if you have the 'inet_pton' function. */
323 324
#undef HAVE_INET_PTON

325 326 327
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H

328 329 330
/* Define to 1 if you have the <io.h> header file. */
#undef HAVE_IO_H

331
/* Define to 1 if you have the `kill' function. */
332 333
#undef HAVE_KILL

334
/* Define to 1 if you have the `killpg' function. */
335 336
#undef HAVE_KILLPG

Christian Heimes's avatar
Christian Heimes committed
337 338 339
/* Define if you have the 'kqueue' functions. */
#undef HAVE_KQUEUE

340 341 342 343 344 345 346 347 348
/* Define to 1 if you have the <langinfo.h> header file. */
#undef HAVE_LANGINFO_H

/* Defined to enable large file support when an off_t is bigger than a long
   and long long is available and at least as big as an off_t. You may need to
   add some flags for configuration and compilation to enable this mode. (For
   Solaris and Linux, the necessary defines are already defined.) */
#undef HAVE_LARGEFILE_SUPPORT

349 350 351
/* Define to 1 if you have the `lchflags' function. */
#undef HAVE_LCHFLAGS

352 353 354
/* Define to 1 if you have the `lchmod' function. */
#undef HAVE_LCHMOD

355 356 357
/* Define to 1 if you have the `lchown' function. */
#undef HAVE_LCHOWN

358 359 360 361 362 363 364 365 366 367 368 369
/* Define to 1 if you have the `dl' library (-ldl). */
#undef HAVE_LIBDL

/* Define to 1 if you have the `dld' library (-ldld). */
#undef HAVE_LIBDLD

/* Define to 1 if you have the `ieee' library (-lieee). */
#undef HAVE_LIBIEEE

/* Define to 1 if you have the <libintl.h> header file. */
#undef HAVE_LIBINTL_H

370
/* Define if you have the readline library (-lreadline). */
371 372
#undef HAVE_LIBREADLINE

373 374 375
/* Define to 1 if you have the `resolv' library (-lresolv). */
#undef HAVE_LIBRESOLV

376 377 378
/* Define to 1 if you have the <libutil.h> header file. */
#undef HAVE_LIBUTIL_H

379
/* Define if you have the 'link' function. */
380 381
#undef HAVE_LINK

382 383 384
/* Define to 1 if you have the <linux/netlink.h> header file. */
#undef HAVE_LINUX_NETLINK_H

385 386 387
/* Define to 1 if you have the <linux/tipc.h> header file. */
#undef HAVE_LINUX_TIPC_H

388 389 390
/* Define to 1 if you have the `log1p' function. */
#undef HAVE_LOG1P

391 392 393
/* Define this if you have the type long double. */
#undef HAVE_LONG_DOUBLE

394 395 396 397
/* Define this if you have the type long long. */
#undef HAVE_LONG_LONG

/* Define to 1 if you have the `lstat' function. */
398 399
#undef HAVE_LSTAT

400 401 402
/* Define this if you have the makedev macro. */
#undef HAVE_MAKEDEV

403
/* Define to 1 if you have the `memmove' function. */
404 405
#undef HAVE_MEMMOVE

406 407 408 409
/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H

/* Define to 1 if you have the `mkfifo' function. */
410 411
#undef HAVE_MKFIFO

412 413 414
/* Define to 1 if you have the `mknod' function. */
#undef HAVE_MKNOD

415
/* Define to 1 if you have the `mktime' function. */
416 417
#undef HAVE_MKTIME

418
/* Define to 1 if you have the `mremap' function. */
419 420
#undef HAVE_MREMAP

421 422 423 424 425 426 427 428 429 430
/* Define to 1 if you have the <ncurses.h> header file. */
#undef HAVE_NCURSES_H

/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
#undef HAVE_NDIR_H

/* Define to 1 if you have the <netpacket/packet.h> header file. */
#undef HAVE_NETPACKET_PACKET_H

/* Define to 1 if you have the `nice' function. */
431
#undef HAVE_NICE
432

433
/* Define to 1 if you have the `openpty' function. */
434 435
#undef HAVE_OPENPTY

436 437 438
/* Define if compiling using MacOS X 10.5 SDK or later. */
#undef HAVE_OSX105_SDK

439
/* Define to 1 if you have the `pathconf' function. */
440 441
#undef HAVE_PATHCONF

442
/* Define to 1 if you have the `pause' function. */
443 444
#undef HAVE_PAUSE

445
/* Define to 1 if you have the `plock' function. */
Guido van Rossum's avatar
Guido van Rossum committed
446 447
#undef HAVE_PLOCK

448
/* Define to 1 if you have the `poll' function. */
449 450
#undef HAVE_POLL

451 452 453
/* Define to 1 if you have the <poll.h> header file. */
#undef HAVE_POLL_H

454 455 456
/* Define to 1 if you have the <process.h> header file. */
#undef HAVE_PROCESS_H

457 458 459 460 461 462
/* Define if your compiler supports function prototype */
#undef HAVE_PROTOTYPES

/* Define if you have GNU PTH threads. */
#undef HAVE_PTH

463 464 465
/* Defined for Solaris 2.6 bug in pthread header. */
#undef HAVE_PTHREAD_DESTRUCTOR

466 467 468 469
/* Define to 1 if you have the <pthread.h> header file. */
#undef HAVE_PTHREAD_H

/* Define to 1 if you have the `pthread_init' function. */
Guido van Rossum's avatar
Guido van Rossum committed
470 471
#undef HAVE_PTHREAD_INIT

472
/* Define to 1 if you have the `pthread_sigmask' function. */
473 474
#undef HAVE_PTHREAD_SIGMASK

475 476 477 478
/* Define to 1 if you have the <pty.h> header file. */
#undef HAVE_PTY_H

/* Define to 1 if you have the `putenv' function. */
Guido van Rossum's avatar
Guido van Rossum committed
479 480
#undef HAVE_PUTENV

481
/* Define to 1 if you have the `readlink' function. */
482 483
#undef HAVE_READLINK

484 485 486
/* Define to 1 if you have the `realpath' function. */
#undef HAVE_REALPATH

Michael W. Hudson's avatar
Michael W. Hudson committed
487 488 489 490 491 492
/* Define if you have readline 2.1 */
#undef HAVE_RL_CALLBACK

/* Define if you can turn off readline's signal handling. */
#undef HAVE_RL_CATCH_SIGNAL

493 494 495
/* Define if you have readline 2.2 */
#undef HAVE_RL_COMPLETION_APPEND_CHARACTER

496 497 498
/* Define if you have readline 4.0 */
#undef HAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK

499 500 501 502 503 504 505
/* Define if you have readline 4.2 */
#undef HAVE_RL_COMPLETION_MATCHES

/* Define if you have readline 4.0 */
#undef HAVE_RL_PRE_INPUT_HOOK

/* Define to 1 if you have the `select' function. */
506 507
#undef HAVE_SELECT

508
/* Define to 1 if you have the `setegid' function. */
509 510
#undef HAVE_SETEGID

511
/* Define to 1 if you have the `seteuid' function. */
512 513
#undef HAVE_SETEUID

514
/* Define to 1 if you have the `setgid' function. */
515 516
#undef HAVE_SETGID

517
/* Define if you have the 'setgroups' function. */
518 519
#undef HAVE_SETGROUPS

520 521 522
/* Define to 1 if you have the `setitimer' function. */
#undef HAVE_SETITIMER

523
/* Define to 1 if you have the `setlocale' function. */
524 525
#undef HAVE_SETLOCALE

526
/* Define to 1 if you have the `setpgid' function. */
527 528
#undef HAVE_SETPGID

529 530 531
/* Define to 1 if you have the `setpgrp' function. */
#undef HAVE_SETPGRP

532
/* Define to 1 if you have the `setregid' function. */
533 534
#undef HAVE_SETREGID

535
/* Define to 1 if you have the `setreuid' function. */
536 537
#undef HAVE_SETREUID

538
/* Define to 1 if you have the `setsid' function. */
539 540
#undef HAVE_SETSID

541
/* Define to 1 if you have the `setuid' function. */
542 543
#undef HAVE_SETUID

544
/* Define to 1 if you have the `setvbuf' function. */
545 546
#undef HAVE_SETVBUF

547 548 549
/* Define to 1 if you have the <shadow.h> header file. */
#undef HAVE_SHADOW_H

550
/* Define to 1 if you have the `sigaction' function. */
551 552
#undef HAVE_SIGACTION

553
/* Define to 1 if you have the `siginterrupt' function. */
554 555
#undef HAVE_SIGINTERRUPT

556 557 558
/* Define to 1 if you have the <signal.h> header file. */
#undef HAVE_SIGNAL_H

559
/* Define to 1 if you have the `sigrelse' function. */
560 561
#undef HAVE_SIGRELSE

562
/* Define to 1 if you have the `snprintf' function. */
563 564
#undef HAVE_SNPRINTF

565 566 567 568 569 570
/* Define if sockaddr has sa_len member */
#undef HAVE_SOCKADDR_SA_LEN

/* struct sockaddr_storage (sys/socket.h) */
#undef HAVE_SOCKADDR_STORAGE

571 572 573
/* Define if you have the 'socketpair' function. */
#undef HAVE_SOCKETPAIR

Martin v. Löwis's avatar
Martin v. Löwis committed
574 575 576
/* Define if your compiler provides ssize_t */
#undef HAVE_SSIZE_T

577
/* Define to 1 if you have the `statvfs' function. */
578 579
#undef HAVE_STATVFS

580 581 582
/* Define if you have struct stat.st_mtim.tv_nsec */
#undef HAVE_STAT_TV_NSEC

583 584 585
/* Define if you have struct stat.st_mtimensec */
#undef HAVE_STAT_TV_NSEC2

586 587 588 589 590 591 592
/* Define if your compiler supports variable length function prototypes (e.g.
   void fprintf(FILE *, char *, ...);) *and* <stdarg.h> */
#undef HAVE_STDARG_PROTOTYPES

/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H

593 594 595 596 597 598
/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H

/* Define to 1 if you have the `strdup' function. */
#undef HAVE_STRDUP

599
/* Define to 1 if you have the `strftime' function. */
Guido van Rossum's avatar
Guido van Rossum committed
600 601
#undef HAVE_STRFTIME

602 603
/* Define to 1 if you have the <strings.h> header file. */
#undef HAVE_STRINGS_H
604

605 606 607
/* Define to 1 if you have the <string.h> header file. */
#undef HAVE_STRING_H

608 609 610
/* Define to 1 if you have the `strlcpy' function. */
#undef HAVE_STRLCPY

611 612 613
/* Define to 1 if you have the <stropts.h> header file. */
#undef HAVE_STROPTS_H

614 615 616
/* Define to 1 if `st_birthtime' is member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_BIRTHTIME

617 618
/* Define to 1 if `st_blksize' is member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_BLKSIZE
619

620 621
/* Define to 1 if `st_blocks' is member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_BLOCKS
622

623 624 625
/* Define to 1 if `st_flags' is member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_FLAGS

626 627 628
/* Define to 1 if `st_gen' is member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_GEN

629 630
/* Define to 1 if `st_rdev' is member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_RDEV
631

632 633
/* Define to 1 if `tm_zone' is member of `struct tm'. */
#undef HAVE_STRUCT_TM_TM_ZONE
634

635 636 637
/* Define to 1 if your `struct stat' has `st_blocks'. Deprecated, use
   `HAVE_STRUCT_STAT_ST_BLOCKS' instead. */
#undef HAVE_ST_BLOCKS
638

639
/* Define if you have the 'symlink' function. */
640
#undef HAVE_SYMLINK
641

642 643
/* Define to 1 if you have the `sysconf' function. */
#undef HAVE_SYSCONF
644

645 646 647
/* Define to 1 if you have the <sysexits.h> header file. */
#undef HAVE_SYSEXITS_H

648 649
/* Define to 1 if you have the <sys/audioio.h> header file. */
#undef HAVE_SYS_AUDIOIO_H
650

651 652 653
/* Define to 1 if you have the <sys/bsdtty.h> header file. */
#undef HAVE_SYS_BSDTTY_H

654 655 656
/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
   */
#undef HAVE_SYS_DIR_H
657

Christian Heimes's avatar
Christian Heimes committed
658 659 660 661 662 663
/* Define to 1 if you have the <sys/epoll.h> header file. */
#undef HAVE_SYS_EPOLL_H

/* Define to 1 if you have the <sys/event.h> header file. */
#undef HAVE_SYS_EVENT_H

664 665
/* Define to 1 if you have the <sys/file.h> header file. */
#undef HAVE_SYS_FILE_H
666

667 668 669
/* Define to 1 if you have the <sys/loadavg.h> header file. */
#undef HAVE_SYS_LOADAVG_H

670 671
/* Define to 1 if you have the <sys/lock.h> header file. */
#undef HAVE_SYS_LOCK_H
672

673 674 675
/* Define to 1 if you have the <sys/mkdev.h> header file. */
#undef HAVE_SYS_MKDEV_H

676 677
/* Define to 1 if you have the <sys/modem.h> header file. */
#undef HAVE_SYS_MODEM_H
678

679 680 681
/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
   */
#undef HAVE_SYS_NDIR_H
682

683 684
/* Define to 1 if you have the <sys/param.h> header file. */
#undef HAVE_SYS_PARAM_H
685

686 687
/* Define to 1 if you have the <sys/poll.h> header file. */
#undef HAVE_SYS_POLL_H
688

689 690
/* Define to 1 if you have the <sys/resource.h> header file. */
#undef HAVE_SYS_RESOURCE_H
691

692 693
/* Define to 1 if you have the <sys/select.h> header file. */
#undef HAVE_SYS_SELECT_H
694

695 696
/* Define to 1 if you have the <sys/socket.h> header file. */
#undef HAVE_SYS_SOCKET_H
697

698 699 700
/* Define to 1 if you have the <sys/statvfs.h> header file. */
#undef HAVE_SYS_STATVFS_H

701 702
/* Define to 1 if you have the <sys/stat.h> header file. */
#undef HAVE_SYS_STAT_H
703

Georg Brandl's avatar
Georg Brandl committed
704 705 706
/* Define to 1 if you have the <sys/termio.h> header file. */
#undef HAVE_SYS_TERMIO_H

707 708
/* Define to 1 if you have the <sys/times.h> header file. */
#undef HAVE_SYS_TIMES_H
709

710 711
/* Define to 1 if you have the <sys/time.h> header file. */
#undef HAVE_SYS_TIME_H
712

713 714
/* Define to 1 if you have the <sys/types.h> header file. */
#undef HAVE_SYS_TYPES_H
715

716 717
/* Define to 1 if you have the <sys/un.h> header file. */
#undef HAVE_SYS_UN_H
718

719 720
/* Define to 1 if you have the <sys/utsname.h> header file. */
#undef HAVE_SYS_UTSNAME_H
721

722 723
/* Define to 1 if you have the <sys/wait.h> header file. */
#undef HAVE_SYS_WAIT_H
724

725 726
/* Define to 1 if you have the `tcgetpgrp' function. */
#undef HAVE_TCGETPGRP
727

728 729
/* Define to 1 if you have the `tcsetpgrp' function. */
#undef HAVE_TCSETPGRP
730

731 732
/* Define to 1 if you have the `tempnam' function. */
#undef HAVE_TEMPNAM
733

734 735
/* Define to 1 if you have the <termios.h> header file. */
#undef HAVE_TERMIOS_H
736

737 738
/* Define to 1 if you have the <term.h> header file. */
#undef HAVE_TERM_H
739

740 741
/* Define to 1 if you have the <thread.h> header file. */
#undef HAVE_THREAD_H
742

743 744
/* Define to 1 if you have the `timegm' function. */
#undef HAVE_TIMEGM
745

746 747
/* Define to 1 if you have the `times' function. */
#undef HAVE_TIMES
748

749 750
/* Define to 1 if you have the `tmpfile' function. */
#undef HAVE_TMPFILE
751

752 753
/* Define to 1 if you have the `tmpnam' function. */
#undef HAVE_TMPNAM
754

755 756
/* Define to 1 if you have the `tmpnam_r' function. */
#undef HAVE_TMPNAM_R
Guido van Rossum's avatar
Guido van Rossum committed
757

758 759 760
/* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use
   `HAVE_STRUCT_TM_TM_ZONE' instead. */
#undef HAVE_TM_ZONE
Guido van Rossum's avatar
Guido van Rossum committed
761

762 763
/* Define to 1 if you have the `truncate' function. */
#undef HAVE_TRUNCATE
764

765 766 767
/* Define to 1 if you don't have `tm_zone' but do have the external array
   `tzname'. */
#undef HAVE_TZNAME
768

769 770 771
/* Define this if you have tcl and TCL_UTF_MAX==6 */
#undef HAVE_UCS4_TCL

772
/* Define to 1 if the system has the type `uintptr_t'. */
773
#undef HAVE_UINTPTR_T
774

775 776
/* Define to 1 if you have the `uname' function. */
#undef HAVE_UNAME
777

778 779
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
780

781 782
/* Define to 1 if you have the `unsetenv' function. */
#undef HAVE_UNSETENV
783

784
/* Define if you have a useable wchar_t type defined in wchar.h; useable means
785 786
   wchar_t must be an unsigned type with at least 16 bits. (see
   Include/unicodeobject.h). */
787
#undef HAVE_USABLE_WCHAR_T
788

789 790 791
/* Define to 1 if you have the `utimes' function. */
#undef HAVE_UTIMES

792 793
/* Define to 1 if you have the <utime.h> header file. */
#undef HAVE_UTIME_H
794

795 796 797 798 799 800
/* Define to 1 if you have the `wait3' function. */
#undef HAVE_WAIT3

/* Define to 1 if you have the `wait4' function. */
#undef HAVE_WAIT4

801 802
/* Define to 1 if you have the `waitpid' function. */
#undef HAVE_WAITPID
803

804 805
/* Define if the compiler provides a wchar.h header file. */
#undef HAVE_WCHAR_H
806

807 808 809
/* Define to 1 if you have the `wcscoll' function. */
#undef HAVE_WCSCOLL

810 811 812
/* Define to 1 if you have the `wcsxfrm' function. */
#undef HAVE_WCSXFRM

813 814 815 816
/* Define if tzset() actually switches the local timezone in a meaningful way.
   */
#undef HAVE_WORKING_TZSET

817 818 819
/* Define if the zlib library has inflateCopy */
#undef HAVE_ZLIB_COPY

820 821
/* Define to 1 if you have the `_getpty' function. */
#undef HAVE__GETPTY
822

823 824
/* Define if you are using Mach cthreads directly under /include */
#undef HURD_C_THREADS
825

826 827
/* Define if you are using Mach cthreads under mach / */
#undef MACH_C_THREADS
828

829 830 831 832 833 834 835 836
/* Define to 1 if `major', `minor', and `makedev' are declared in <mkdev.h>.
   */
#undef MAJOR_IN_MKDEV

/* Define to 1 if `major', `minor', and `makedev' are declared in
   <sysmacros.h>. */
#undef MAJOR_IN_SYSMACROS

837 838
/* Define if mvwdelch in curses.h is an expression. */
#undef MVWDELCH_IS_EXPRESSION
839

840 841
/* Define to the address where bug reports for this package should be sent. */
#undef PACKAGE_BUGREPORT
842

843 844
/* Define to the full name of this package. */
#undef PACKAGE_NAME
845

846 847
/* Define to the full name and version of this package. */
#undef PACKAGE_STRING
848

849 850
/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME
851

852 853
/* Define to the version of this package. */
#undef PACKAGE_VERSION
854

855 856
/* Defined if PTHREAD_SCOPE_SYSTEM supported. */
#undef PTHREAD_SYSTEM_SCHED_SUPPORTED
857

858 859 860
/* Define to printf format modifier for Py_ssize_t */
#undef PY_FORMAT_SIZE_T

861 862
/* Define as the integral type used for Unicode representation. */
#undef PY_UNICODE_TYPE
863 864 865 866

/* Define if you want to build an interpreter with many run-time checks. */
#undef Py_DEBUG

867 868 869
/* Defined if Python is built as a shared library. */
#undef Py_ENABLE_SHARED

Martin v. Löwis's avatar
Martin v. Löwis committed
870 871 872
/* Define as the size of the unicode type. */
#undef Py_UNICODE_SIZE

873 874
/* Define as the return type of signal handlers (`int' or `void'). */
#undef RETSIGTYPE
875

876 877
/* Define if setpgrp() must be called as setpgrp(0, 0). */
#undef SETPGRP_HAVE_ARG
878

879 880 881
/* Define this to be extension of shared libraries (including the dot!). */
#undef SHLIB_EXT

882 883
/* Define if i>>j for signed int i does not extend the sign bit when i < 0 */
#undef SIGNED_RIGHT_SHIFT_ZERO_FILLS
884

885
/* The size of `double', as computed by sizeof. */
886
#undef SIZEOF_DOUBLE
887

888
/* The size of `float', as computed by sizeof. */
889
#undef SIZEOF_FLOAT
890

891
/* The size of `fpos_t', as computed by sizeof. */
892
#undef SIZEOF_FPOS_T
893

894
/* The size of `int', as computed by sizeof. */
895
#undef SIZEOF_INT
896

897
/* The size of `long', as computed by sizeof. */
898
#undef SIZEOF_LONG
899

900 901 902
/* The size of `long double', as computed by sizeof. */
#undef SIZEOF_LONG_DOUBLE

903
/* The size of `long long', as computed by sizeof. */
904
#undef SIZEOF_LONG_LONG
905

906 907
/* The number of bytes in an off_t. */
#undef SIZEOF_OFF_T
908

909 910 911
/* The size of `pid_t', as computed by sizeof. */
#undef SIZEOF_PID_T

912 913
/* The number of bytes in a pthread_t. */
#undef SIZEOF_PTHREAD_T
914

915
/* The size of `short', as computed by sizeof. */
916
#undef SIZEOF_SHORT
917

918
/* The size of `size_t', as computed by sizeof. */
Martin v. Löwis's avatar
Martin v. Löwis committed
919 920
#undef SIZEOF_SIZE_T

921 922
/* The number of bytes in a time_t. */
#undef SIZEOF_TIME_T
923

924
/* The size of `uintptr_t', as computed by sizeof. */
925
#undef SIZEOF_UINTPTR_T
926

927
/* The size of `void *', as computed by sizeof. */
928
#undef SIZEOF_VOID_P
929

930
/* The size of `wchar_t', as computed by sizeof. */
931
#undef SIZEOF_WCHAR_T
932

933
/* The size of `_Bool', as computed by sizeof. */
934 935
#undef SIZEOF__BOOL

936 937
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
938

939 940 941
/* Define if you can safely include both <sys/select.h> and <sys/time.h>
   (which you can't on SCO ODT 3.0). */
#undef SYS_SELECT_WITH_SYS_TIME
942

Christian Heimes's avatar
Christian Heimes committed
943 944 945
/* Define if tanh(-0.) is -0., or if platform doesn't have signed zeros */
#undef TANH_PRESERVES_ZERO_SIGN

946 947
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
#undef TIME_WITH_SYS_TIME
948

949 950
/* Define to 1 if your <sys/time.h> declares `struct tm'. */
#undef TM_IN_SYS_TIME
951

952 953 954
/* Define if you want to use computed gotos in ceval.c. */
#undef USE_COMPUTED_GOTOS

955 956
/* Define if a va_list is an array of some kind */
#undef VA_LIST_IS_ARRAY
957

958 959
/* Define if you want SIGFPE handled (see Include/pyfpe.h). */
#undef WANT_SIGFPE_HANDLER
960

961 962 963
/* Define if you want wctype.h functions to be used instead of the one
   supplied by Python itself. (see Include/unicodectype.h). */
#undef WANT_WCTYPE_FUNCTIONS
964

965 966
/* Define if WINDOW in curses.h offers a field _flags. */
#undef WINDOW_HAS_FLAGS
967

968 969 970
/* Define if you want documentation strings in extension modules */
#undef WITH_DOC_STRINGS

971 972 973 974
/* Define if you want to use the new-style (Openstep, Rhapsody, MacOS) dynamic
   linker (dyld) instead of the old-style (NextStep) dynamic linker (rld).
   Dyld is necessary to support frameworks. */
#undef WITH_DYLD
975

976 977 978
/* Define to 1 if libintl is needed for locale functions. */
#undef WITH_LIBINTL

979 980 981
/* Define if you want to produce an OpenStep/Rhapsody framework (shared
   library plus accessory files). */
#undef WITH_NEXT_FRAMEWORK
982

983 984
/* Define if you want to compile in Python-specific mallocs */
#undef WITH_PYMALLOC
985

986 987
/* Define if you want to compile in rudimentary thread support */
#undef WITH_THREAD
988

989 990 991
/* Define to profile with the Pentium timestamp counter */
#undef WITH_TSC

992 993 994
/* Define to 1 if your processor stores words with the most significant byte
   first (like Motorola and SPARC, unlike Intel and VAX). */
#undef WORDS_BIGENDIAN
995

996 997 998
/* Define if arithmetic is subject to x87-style double rounding issue */
#undef X87_DOUBLE_ROUNDING

999 1000 1001 1002 1003 1004 1005
/* Define to 1 if on AIX 3.
   System headers sometimes define this.
   We just want to avoid a redefinition error message.  */
#ifndef _ALL_SOURCE
# undef _ALL_SOURCE
#endif

1006 1007 1008
/* Define on OpenBSD to activate all library features */
#undef _BSD_SOURCE

1009 1010 1011
/* Define on Irix to enable u_int */
#undef _BSD_TYPES

1012 1013 1014
/* Define on Darwin to activate all library features */
#undef _DARWIN_C_SOURCE

1015 1016
/* This must be set to 64 on some systems to enable large file support. */
#undef _FILE_OFFSET_BITS
1017

1018 1019 1020
/* Define on Linux to activate all library features */
#undef _GNU_SOURCE

1021 1022
/* This must be defined on some systems to enable large file support. */
#undef _LARGEFILE_SOURCE
1023

1024 1025 1026
/* Define on NetBSD to activate all library features */
#undef _NETBSD_SOURCE

1027 1028 1029
/* Define _OSF_SOURCE to get the makedev macro. */
#undef _OSF_SOURCE

1030
/* Define to activate features from IEEE Stds 1003.1-2001 */
1031 1032
#undef _POSIX_C_SOURCE

1033 1034
/* Define if you have POSIX threads, and your system does not define that. */
#undef _POSIX_THREADS
1035

1036 1037
/* Define to force use of thread-safe errno, h_errno, and other functions */
#undef _REENTRANT
1038

1039 1040
/* Define to the level of X/Open that your system supports */
#undef _XOPEN_SOURCE
1041

1042 1043 1044
/* Define to activate Unix95-and-earlier features */
#undef _XOPEN_SOURCE_EXTENDED

1045 1046 1047
/* Define on FreeBSD to activate all library features */
#undef __BSD_VISIBLE

1048 1049 1050 1051
/* Define to 1 if type `char' is unsigned and you are not using gcc.  */
#ifndef __CHAR_UNSIGNED__
# undef __CHAR_UNSIGNED__
#endif
1052

1053 1054
/* Defined on Solaris to see additional function prototypes. */
#undef __EXTENSIONS__
1055

1056 1057
/* Define to 'long' if <time.h> doesn't define. */
#undef clock_t
1058

1059 1060
/* Define to empty if `const' does not conform to ANSI C. */
#undef const
1061

1062 1063
/* Define to `int' if <sys/types.h> doesn't define. */
#undef gid_t
1064

1065 1066
/* Define to `int' if <sys/types.h> does not define. */
#undef mode_t
1067

1068
/* Define to `long int' if <sys/types.h> does not define. */
1069
#undef off_t
1070

1071 1072
/* Define to `int' if <sys/types.h> does not define. */
#undef pid_t
1073

1074 1075
/* Define to empty if the keyword does not work. */
#undef signed
1076

1077
/* Define to `unsigned int' if <sys/types.h> does not define. */
1078
#undef size_t
1079

1080
/* Define to `int' if <sys/socket.h> does not define. */
1081
#undef socklen_t
1082

1083 1084
/* Define to `int' if <sys/types.h> doesn't define. */
#undef uid_t
1085

1086 1087
/* Define to empty if the keyword does not work. */
#undef volatile
1088 1089


1090 1091 1092 1093 1094
/* Define the macros needed if on a UnixWare 7.x system. */
#if defined(__USLC__) && defined(__SCO_VERSION__)
#define STRICT_SYSV_CURSES /* Don't use ncurses extensions */
#endif

1095 1096
#endif /*Py_PYCONFIG_H*/