1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
|
/* pyconfig.h.in. Generated from configure.in by autoheader. */
#ifndef Py_PYCONFIG_H
#define Py_PYCONFIG_H
/* Define for AIX if your compiler is a genuine IBM xlC/xlC_r and you want
support for AIX C++ shared extension modules. */
#cmakedefine AIX_GENUINE_CPLUSPLUS 1
/* Define this if you have AtheOS threads. */
#cmakedefine ATHEOS_THREADS 1
/* Define this if you have BeOS threads. */
#cmakedefine BEOS_THREADS 1
/* Define if you have the Mach cthreads package */
#cmakedefine C_THREADS 1
/* Define if --enable-ipv6 is specified */
#cmakedefine ENABLE_IPV6 1
/* Define if getpgrp() must be called as getpgrp(0). */
#cmakedefine GETPGRP_HAVE_ARG 1
/* Define if gettimeofday() does not have second (timezone) argument This is
the case on Motorola V4 (R40V4.2) */
#cmakedefine GETTIMEOFDAY_NO_TZ 1
/* struct addrinfo (netdb.h) */
#cmakedefine HAVE_ADDRINFO 1
/* Define to 1 if you have the `alarm' function. */
#cmakedefine HAVE_ALARM 1
/* Define this if your time.h defines altzone. */
#cmakedefine HAVE_ALTZONE 1
/* Define to 1 if you have the <arpa/inet.h> header file. */
#cmakedefine HAVE_ARPA_INET_H 1
/* Define to 1 if you have the <asm/types.h> header file. */
#cmakedefine HAVE_ASM_TYPES_H 1
/* Define if GCC supports __attribute__((format(PyArg_ParseTuple, 2, 3))) */
#cmakedefine HAVE_ATTRIBUTE_FORMAT_PARSETUPLE
/* Define to 1 if you have the `bind_textdomain_codeset' function. */
#cmakedefine HAVE_BIND_TEXTDOMAIN_CODESET 1
/* Define to 1 if you have the <bluetooth/bluetooth.h> header file. */
#cmakedefine HAVE_BLUETOOTH_BLUETOOTH_H 1
/* Define to 1 if you have the <bluetooth.h> header file. */
#cmakedefine HAVE_BLUETOOTH_H 1
/* Define if nice() returns success/failure instead of the new priority. */
#cmakedefine HAVE_BROKEN_NICE 1
/* Define if poll() sets errno on invalid file descriptors. */
#cmakedefine HAVE_BROKEN_POLL 1
/* Define if the Posix semaphores do not work on your system */
#cmakedefine HAVE_BROKEN_POSIX_SEMAPHORES
/* Define if pthread_sigmask() does not work on your system. */
#cmakedefine HAVE_BROKEN_PTHREAD_SIGMASK
/* Define this if you have the type _Bool. */
#cmakedefine HAVE_C99_BOOL 1
/* Define to 1 if you have the `chflags' function. */
#cmakedefine HAVE_CHFLAGS
/* Define to 1 if you have the `chown' function. */
#cmakedefine HAVE_CHOWN 1
/* Define if you have the 'chroot' function. */
#cmakedefine HAVE_CHROOT 1
/* Define to 1 if you have the `clock' function. */
#cmakedefine HAVE_CLOCK 1
/* Define to 1 if you have the `confstr' function. */
#cmakedefine HAVE_CONFSTR 1
/* Define to 1 if you have the <conio.h> header file. */
#cmakedefine HAVE_CONIO_H 1
/* Define to 1 if you have the `ctermid' function. */
#cmakedefine HAVE_CTERMID 1
/* Define if you have the 'ctermid_r' function. */
#cmakedefine HAVE_CTERMID_R 1
/* Define to 1 if you have the <curses.h> header file. */
#cmakedefine HAVE_CURSES_H 1
/* Define if you have the 'is_term_resized' function. */
#cmakedefine HAVE_CURSES_IS_TERM_RESIZED 1
/* Define if you have the 'resizeterm' function. */
#cmakedefine HAVE_CURSES_RESIZETERM 1
/* Define if you have the 'resize_term' function. */
#cmakedefine HAVE_CURSES_RESIZE_TERM 1
/* Define to 1 if you have the declaration of `tzname', and to 0 if you don't.
*/
#cmakedefine HAVE_DECL_TZNAME
/* Define to 1 if you have the device macros. */
#cmakedefine HAVE_DEVICE_MACROS 1
/* Define if we have /dev/ptc. */
#cmakedefine HAVE_DEV_PTC 1
/* Define if we have /dev/ptmx. */
#cmakedefine HAVE_DEV_PTMX 1
/* Define to 1 if you have the <direct.h> header file. */
#cmakedefine HAVE_DIRECT_H 1
/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
*/
#cmakedefine HAVE_DIRENT_H 1
/* Define to 1 if you have the <dlfcn.h> header file. */
#cmakedefine HAVE_DLFCN_H 1
/* Define to 1 if you have the `dlopen' function. */
#cmakedefine HAVE_DLOPEN 1
/* Define to 1 if you have the `dup2' function. */
#cmakedefine HAVE_DUP2 1
/* Defined when any dynamic module loading is enabled. */
#cmakedefine HAVE_DYNAMIC_LOADING 1
/* Define to 1 if you have the <errno.h> header file. */
#cmakedefine HAVE_ERRNO_H 1
/* Define to 1 if you have the `execv' function. */
#cmakedefine HAVE_EXECV 1
/* Define if you have the 'fchdir' function. */
#cmakedefine HAVE_FCHDIR 1
/* Define to 1 if you have the <fcntl.h> header file. */
#cmakedefine HAVE_FCNTL_H 1
/* Define if you have the 'fdatasync' function. */
#cmakedefine HAVE_FDATASYNC 1
/* Define if you have the 'flock' function. */
#cmakedefine HAVE_FLOCK 1
/* Define to 1 if you have the `fork' function. */
#cmakedefine HAVE_FORK 1
/* Define to 1 if you have the `forkpty' function. */
#cmakedefine HAVE_FORKPTY 1
/* Define to 1 if you have the `fpathconf' function. */
#cmakedefine HAVE_FPATHCONF 1
/* Define to 1 if you have the `fseek64' function. */
#cmakedefine HAVE_FSEEK64 1
/* Define to 1 if you have the `fseeko' function. */
#cmakedefine HAVE_FSEEKO 1
/* Define to 1 if you have the `fstatvfs' function. */
#cmakedefine HAVE_FSTATVFS 1
/* Define if you have the 'fsync' function. */
#cmakedefine HAVE_FSYNC 1
/* Define to 1 if you have the `ftell64' function. */
#cmakedefine HAVE_FTELL64 1
/* Define to 1 if you have the `ftello' function. */
#cmakedefine HAVE_FTELLO 1
/* Define to 1 if you have the `ftime' function. */
#cmakedefine HAVE_FTIME 1
/* Define to 1 if you have the `ftruncate' function. */
#cmakedefine HAVE_FTRUNCATE 1
/* Define to 1 if you have the `gai_strerror' function. */
#cmakedefine HAVE_GAI_STRERROR 1
/* Define if you have the getaddrinfo function. */
#cmakedefine HAVE_GETADDRINFO 1
/* Define to 1 if you have the `getcwd' function. */
#cmakedefine HAVE_GETCWD 1
/* Define this if you have flockfile(), getc_unlocked(), and funlockfile() */
#cmakedefine HAVE_GETC_UNLOCKED 1
/* Define to 1 if you have the `getgroups' function. */
#cmakedefine HAVE_GETGROUPS 1
/* Define to 1 if you have the `gethostbyname' function. */
#cmakedefine HAVE_GETHOSTBYNAME 1
/* Define this if you have some version of gethostbyname_r() */
#cmakedefine HAVE_GETHOSTBYNAME_R 1
/* Define this if you have the 3-arg version of gethostbyname_r(). */
#cmakedefine HAVE_GETHOSTBYNAME_R_3_ARG 1
/* Define this if you have the 5-arg version of gethostbyname_r(). */
#cmakedefine HAVE_GETHOSTBYNAME_R_5_ARG 1
/* Define this if you have the 6-arg version of gethostbyname_r(). */
#cmakedefine HAVE_GETHOSTBYNAME_R_6_ARG 1
/* Define to 1 if you have the `getloadavg' function. */
#cmakedefine HAVE_GETLOADAVG 1
/* Define to 1 if you have the `getlogin' function. */
#cmakedefine HAVE_GETLOGIN 1
/* Define to 1 if you have the `getnameinfo' function. */
#cmakedefine HAVE_GETNAMEINFO 1
/* Define if you have the 'getpagesize' function. */
#cmakedefine HAVE_GETPAGESIZE 1
/* Define to 1 if you have the `getpeername' function. */
#cmakedefine HAVE_GETPEERNAME 1
/* Define to 1 if you have the `getpgid' function. */
#cmakedefine HAVE_GETPGID 1
/* Define to 1 if you have the `getpgrp' function. */
#cmakedefine HAVE_GETPGRP 1
/* Define to 1 if you have the `getpid' function. */
#cmakedefine HAVE_GETPID 1
/* Define to 1 if you have the `getpriority' function. */
#cmakedefine HAVE_GETPRIORITY 1
/* Define to 1 if you have the `getpwent' function. */
#cmakedefine HAVE_GETPWENT 1
/* Define to 1 if you have the `getsid' function. */
#cmakedefine HAVE_GETSID 1
/* Define to 1 if you have the `getspent' function. */
#cmakedefine HAVE_GETSPENT 1
/* Define to 1 if you have the `getspnam' function. */
#cmakedefine HAVE_GETSPNAM 1
/* Define to 1 if you have the `gettimeofday' function. */
#cmakedefine HAVE_GETTIMEOFDAY 1
/* Define to 1 if you have the `getwd' function. */
#cmakedefine HAVE_GETWD 1
/* Define to 1 if you have the <grp.h> header file. */
#cmakedefine HAVE_GRP_H 1
/* Define if you have the 'hstrerror' function. */
#cmakedefine HAVE_HSTRERROR 1
/* Define to 1 if you have the `hypot' function. */
#cmakedefine HAVE_HYPOT 1
/* Define if you have the 'inet_aton' function. */
#cmakedefine HAVE_INET_ATON 1
/* Define if you have the 'inet_pton' function. */
#cmakedefine HAVE_INET_PTON 1
/* Define to 1 if you have the <inttypes.h> header file. */
#cmakedefine HAVE_INTTYPES_H 1
/* Define to 1 if you have the <io.h> header file. */
#cmakedefine HAVE_IO_H 1
/* Define to 1 if you have the `kill' function. */
#cmakedefine HAVE_KILL 1
/* Define to 1 if you have the `killpg' function. */
#cmakedefine HAVE_KILLPG 1
/* Define to 1 if you have the <langinfo.h> header file. */
#cmakedefine HAVE_LANGINFO_H 1
/* 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.) */
#cmakedefine HAVE_LARGEFILE_SUPPORT @HAVE_LARGEFILE_SUPPORT@
/* Define to 1 if you have the `lchflags' function. */
#cmakedefine HAVE_LCHFLAGS 1
/* Define to 1 if you have the `lchown' function. */
#cmakedefine HAVE_LCHOWN 1
/* Define to 1 if you have the `dl' library (-ldl). */
#cmakedefine HAVE_LIBDL 1
/* Define to 1 if you have the `dld' library (-ldld). */
#cmakedefine HAVE_LIBDLD 1
/* Define to 1 if you have the `ieee' library (-lieee). */
#cmakedefine HAVE_LIBIEEE 1
/* Define to 1 if you have the <libintl.h> header file. */
#cmakedefine HAVE_LIBINTL_H 1
/* Define to 1 if you have the `readline' library (-lreadline). */
#cmakedefine HAVE_LIBREADLINE 1
/* Define to 1 if you have the `resolv' library (-lresolv). */
#cmakedefine HAVE_LIBRESOLV 1
/* Define to 1 if you have the `termcap' library (-ltermcap). */
#cmakedefine HAVE_LIBTERMCAP 1
/* Define to 1 if you have the <libutil.h> header file. */
#cmakedefine HAVE_LIBUTIL_H 1
/* Define if you have the 'link' function. */
#cmakedefine HAVE_LINK 1
/* Define to 1 if you have the <linux/netlink.h> header file. */
#cmakedefine HAVE_LINUX_NETLINK_H 1
/* Define to 1 if you have the <locale.h> header file. */
#cmakedefine HAVE_LOCALE_H 1
/* Define this if you have the type long long. */
#cmakedefine HAVE_LONG_LONG 1
/* Define to 1 if you have the `lstat' function. */
#cmakedefine HAVE_LSTAT 1
/* Define this if you have the makedev macro. */
#cmakedefine HAVE_MAKEDEV 1
/* Define to 1 if you have the `memmove' function. */
#cmakedefine HAVE_MEMMOVE 1
/* Define to 1 if you have the <memory.h> header file. */
#cmakedefine HAVE_MEMORY_H 1
/* Define to 1 if you have the `mkfifo' function. */
#cmakedefine HAVE_MKFIFO 1
/* Define to 1 if you have the `mknod' function. */
#cmakedefine HAVE_MKNOD 1
/* Define to 1 if you have the `mktime' function. */
#cmakedefine HAVE_MKTIME 1
/* Define to 1 if you have the `mremap' function. */
#cmakedefine HAVE_MREMAP 1
/* Define to 1 if you have the <ncurses.h> header file. */
#cmakedefine HAVE_NCURSES_H 1
/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
#cmakedefine HAVE_NDIR_H 1
/* Define to 1 if you have the <netdb.h> header file. */
#cmakedefine HAVE_NETDB_H 1
/* Define to 1 if you have the <netinet/in.h> header file. */
#cmakedefine HAVE_NETINET_IN_H 1
/* Define to 1 if you have the <netpacket/packet.h> header file. */
#cmakedefine HAVE_NETPACKET_PACKET_H 1
/* Define to 1 if you have the `nice' function. */
#cmakedefine HAVE_NICE 1
/* Define to 1 if you have the `openpty' function. */
#cmakedefine HAVE_OPENPTY 1
/* Define to 1 if you have the `pathconf' function. */
#cmakedefine HAVE_PATHCONF 1
/* Define to 1 if you have the `pause' function. */
#cmakedefine HAVE_PAUSE 1
/* Define to 1 if you have the `plock' function. */
#cmakedefine HAVE_PLOCK 1
/* Define to 1 if you have the `poll' function. */
#cmakedefine HAVE_POLL 1
/* Define to 1 if you have the <poll.h> header file. */
#cmakedefine HAVE_POLL_H 1
/* Define to 1 if you have the <process.h> header file. */
#cmakedefine HAVE_PROCESS_H 1
/* Define if your compiler supports function prototype */
#cmakedefine HAVE_PROTOTYPES 1
/* Define if you have GNU PTH threads. */
#cmakedefine HAVE_PTH 1
/* Defined for Solaris 2.6 bug in pthread header. */
#cmakedefine HAVE_PTHREAD_DESTRUCTOR 1
/* Define to 1 if you have the <pthread.h> header file. */
#cmakedefine HAVE_PTHREAD_H 1
/* Define to 1 if you have the `pthread_init' function. */
#cmakedefine HAVE_PTHREAD_INIT 1
/* Define to 1 if you have the `pthread_sigmask' function. */
#cmakedefine HAVE_PTHREAD_SIGMASK 1
/* Define to 1 if you have the <pty.h> header file. */
#cmakedefine HAVE_PTY_H 1
/* Define to 1 if you have the `putenv' function. */
#cmakedefine HAVE_PUTENV 1
/* Define to 1 if you have the <readline/readline.h> header file. */
#cmakedefine HAVE_READLINE_READLINE_H 1
/* Define to 1 if you have the `readlink' function. */
#cmakedefine HAVE_READLINK 1
/* Define to 1 if you have the `realpath' function. */
#cmakedefine HAVE_REALPATH 1
/* Define if you have readline 2.1 */
#cmakedefine HAVE_RL_CALLBACK 1
/* Define if you can turn off readline's signal handling. */
#cmakedefine HAVE_RL_CATCH_SIGNAL 1
/* Define if you have readline 2.2 */
#cmakedefine HAVE_RL_COMPLETION_APPEND_CHARACTER 1
/* Define if you have readline 4.2 */
#cmakedefine HAVE_RL_COMPLETION_MATCHES 1
/* Define if you have readline 4.0 */
#cmakedefine HAVE_RL_PRE_INPUT_HOOK 1
/* Define to 1 if you have the `select' function. */
#cmakedefine HAVE_SELECT 1
/* Define to 1 if you have the `setegid' function. */
#cmakedefine HAVE_SETEGID 1
/* Define to 1 if you have the `seteuid' function. */
#cmakedefine HAVE_SETEUID 1
/* Define to 1 if you have the `setgid' function. */
#cmakedefine HAVE_SETGID 1
/* Define if you have the 'setgroups' function. */
#cmakedefine HAVE_SETGROUPS 1
/* Define to 1 if you have the `setlocale' function. */
#cmakedefine HAVE_SETLOCALE 1
/* Define to 1 if you have the `setpgid' function. */
#cmakedefine HAVE_SETPGID 1
/* Define to 1 if you have the `setpgrp' function. */
#cmakedefine HAVE_SETPGRP 1
/* Define to 1 if you have the `setregid' function. */
#cmakedefine HAVE_SETREGID 1
/* Define to 1 if you have the `setreuid' function. */
#cmakedefine HAVE_SETREUID 1
/* Define to 1 if you have the `setsid' function. */
#cmakedefine HAVE_SETSID 1
/* Define to 1 if you have the `setuid' function. */
#cmakedefine HAVE_SETUID 1
/* Define to 1 if you have the `setvbuf' function. */
#cmakedefine HAVE_SETVBUF 1
/* Define to 1 if you have the <shadow.h> header file. */
#cmakedefine HAVE_SHADOW_H 1
/* Define to 1 if you have the `sigaction' function. */
#cmakedefine HAVE_SIGACTION 1
/* Define to 1 if you have the `siginterrupt' function. */
#cmakedefine HAVE_SIGINTERRUPT 1
/* Define to 1 if you have the <signal.h> header file. */
#cmakedefine HAVE_SIGNAL_H 1
/* Define to 1 if you have the `sigrelse' function. */
#cmakedefine HAVE_SIGRELSE 1
/* Define to 1 if you have the `snprintf' function. */
#cmakedefine HAVE_SNPRINTF 1
/* Define if sockaddr has sa_len member */
#cmakedefine HAVE_SOCKADDR_SA_LEN 1
/* struct sockaddr_storage (sys/socket.h) */
#cmakedefine HAVE_SOCKADDR_STORAGE 1
/* Define if you have the 'socketpair' function. */
#cmakedefine HAVE_SOCKETPAIR 1
/* Define if your compiler provides ssize_t */
#cmakedefine HAVE_SSIZE_T 1
/* Define to 1 if you have the `statvfs' function. */
#cmakedefine HAVE_STATVFS 1
/* Define if you have struct stat.st_mtim.tv_nsec */
#cmakedefine HAVE_STAT_TV_NSEC 1
/* Define if you have struct stat.st_mtimensec */
#cmakedefine HAVE_STAT_TV_NSEC2 1
/* Define if your compiler supports variable length function prototypes (e.g.
void fprintf(FILE *, char *, ...);) *and* <stdarg.h> */
#cmakedefine HAVE_STDARG_PROTOTYPES 1
/* Define to 1 if you have the <stdint.h> header file. */
#cmakedefine HAVE_STDINT_H 1
/* Define to 1 if you have the <stdlib.h> header file. */
#cmakedefine HAVE_STDLIB_H 1
/* Define to 1 if you have the `strdup' function. */
#cmakedefine HAVE_STRDUP 1
/* Define to 1 if you have the `strerror' function. */
#cmakedefine HAVE_STRERROR 1
/* Define to 1 if you have the `strftime' function. */
#cmakedefine HAVE_STRFTIME 1
/* Define to 1 if you have the <strings.h> header file. */
#cmakedefine HAVE_STRINGS_H 1
/* Define to 1 if you have the <string.h> header file. */
#cmakedefine HAVE_STRING_H 1
/* Define to 1 if you have the <stropts.h> header file. */
#cmakedefine HAVE_STROPTS_H 1
/* Define to 1 if `st_birthtime' is member of `struct stat'. */
#cmakedefine HAVE_STRUCT_STAT_ST_BIRTHTIME
/* Define to 1 if `st_blksize' is member of `struct stat'. */
#cmakedefine HAVE_STRUCT_STAT_ST_BLKSIZE 1
/* Define to 1 if `st_blocks' is member of `struct stat'. */
#cmakedefine HAVE_STRUCT_STAT_ST_BLOCKS 1
/* Define to 1 if `st_flags' is member of `struct stat'. */
#cmakedefine HAVE_STRUCT_STAT_ST_FLAGS 1
/* Define to 1 if `st_gen' is member of `struct stat'. */
#cmakedefine HAVE_STRUCT_STAT_ST_GEN 1
/* Define to 1 if `st_rdev' is member of `struct stat'. */
#cmakedefine HAVE_STRUCT_STAT_ST_RDEV 1
/* Define to 1 if `tm_zone' is member of `struct tm'. */
#cmakedefine HAVE_STRUCT_TM_TM_ZONE 1
/* Define to 1 if your `struct stat' has `st_blocks'. Deprecated, use
`HAVE_STRUCT_STAT_ST_BLOCKS' instead. */
#cmakedefine HAVE_ST_BLOCKS 1
/* Define if you have the 'symlink' function. */
#cmakedefine HAVE_SYMLINK 1
/* Define to 1 if you have the `sysconf' function. */
#cmakedefine HAVE_SYSCONF 1
/* Define to 1 if you have the <sysexits.h> header file. */
#cmakedefine HAVE_SYSEXITS_H 1
/* Define to 1 if you have the <sys/audioio.h> header file. */
#cmakedefine HAVE_SYS_AUDIOIO_H 1
/* Define to 1 if you have the <sys/bsdtty.h> header file. */
#cmakedefine HAVE_SYS_BSDTTY_H 1
/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
*/
#cmakedefine HAVE_SYS_DIR_H 1
/* Define to 1 if you have the <sys/file.h> header file. */
#cmakedefine HAVE_SYS_FILE_H 1
/* Define to 1 if you have the <sys/loadavg.h> header file. */
#cmakedefine HAVE_SYS_LOADAVG_H 1
/* Define to 1 if you have the <sys/lock.h> header file. */
#cmakedefine HAVE_SYS_LOCK_H 1
/* Define to 1 if you have the <sys/mman.h> header file. */
#cmakedefine HAVE_SYS_MMAN_H 1
/* Define to 1 if you have the <sys/mkdev.h> header file. */
#cmakedefine HAVE_SYS_MKDEV_H 1
/* Define to 1 if you have the <sys/modem.h> header file. */
#cmakedefine HAVE_SYS_MODEM_H 1
/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
*/
#cmakedefine HAVE_SYS_NDIR_H 1
/* Define to 1 if you have the <sys/param.h> header file. */
#cmakedefine HAVE_SYS_PARAM_H 1
/* Define to 1 if you have the <sys/poll.h> header file. */
#cmakedefine HAVE_SYS_POLL_H 1
/* Define to 1 if you have the <sys/resource.h> header file. */
#cmakedefine HAVE_SYS_RESOURCE_H 1
/* Define to 1 if you have the <sys/select.h> header file. */
#cmakedefine HAVE_SYS_SELECT_H 1
/* Define to 1 if you have the <sys/socket.h> header file. */
#cmakedefine HAVE_SYS_SOCKET_H 1
/* Define to 1 if you have the <sys/statvfs.h> header file. */
#cmakedefine HAVE_SYS_STATVFS_H 1
/* Define to 1 if you have the <sys/stat.h> header file. */
#cmakedefine HAVE_SYS_STAT_H 1
/* Define to 1 if you have the <sys/timeb.h> header file. */
#cmakedefine HAVE_SYS_TIMEB_H 1
/* Define to 1 if you have the <sys/times.h> header file. */
#cmakedefine HAVE_SYS_TIMES_H 1
/* Define to 1 if you have the <sys/time.h> header file. */
#cmakedefine HAVE_SYS_TIME_H 1
/* Define to 1 if you have the <sys/types.h> header file. */
#cmakedefine HAVE_SYS_TYPES_H 1
/* Define to 1 if you have the <sys/un.h> header file. */
#cmakedefine HAVE_SYS_UN_H 1
/* Define to 1 if you have the <sys/utsname.h> header file. */
#cmakedefine HAVE_SYS_UTSNAME_H 1
/* Define to 1 if you have the <sys/wait.h> header file. */
#cmakedefine HAVE_SYS_WAIT_H 1
/* Define to 1 if you have the `tcgetpgrp' function. */
#cmakedefine HAVE_TCGETPGRP 1
/* Define to 1 if you have the `tcsetpgrp' function. */
#cmakedefine HAVE_TCSETPGRP 1
/* Define to 1 if you have the `tempnam' function. */
#cmakedefine HAVE_TEMPNAM 1
/* Define to 1 if you have the <termios.h> header file. */
#cmakedefine HAVE_TERMIOS_H 1
/* Define to 1 if you have the <term.h> header file. */
#cmakedefine HAVE_TERM_H 1
/* Define to 1 if you have the <thread.h> header file. */
#cmakedefine HAVE_THREAD_H 1
/* Define to 1 if you have the `timegm' function. */
#cmakedefine HAVE_TIMEGM 1
/* Define to 1 if you have the `times' function. */
#cmakedefine HAVE_TIMES 1
/* Define to 1 if you have the `tmpfile' function. */
#cmakedefine HAVE_TMPFILE 1
/* Define to 1 if you have the `tmpnam' function. */
#cmakedefine HAVE_TMPNAM 1
/* Define to 1 if you have the `tmpnam_r' function. */
#cmakedefine HAVE_TMPNAM_R 1
/* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use
`HAVE_STRUCT_TM_TM_ZONE' instead. */
#cmakedefine HAVE_TM_ZONE 1
/* Define to 1 if you have the `truncate' function. */
#cmakedefine HAVE_TRUNCATE 1
/* Define to 1 if you don't have `tm_zone' but do have the external array
`tzname'. */
#cmakedefine HAVE_TZNAME 1
/* Define this if you have tcl and TCL_UTF_MAX==6 */
#cmakedefine HAVE_UCS4_TCL 1
/* Define to 1 if the system has the type `uintptr_t'. */
#cmakedefine HAVE_UINTPTR_T 1
/* Define to 1 if you have the `uname' function. */
#cmakedefine HAVE_UNAME 1
/* Define to 1 if you have the <unistd.h> header file. */
#cmakedefine HAVE_UNISTD_H 1
/* Define to 1 if you have the `unsetenv' function. */
#cmakedefine HAVE_UNSETENV 1
/* Define if you have a useable wchar_t type defined in wchar.h; useable means
wchar_t must be an unsigned type with at least 16 bits. (see
Include/unicodeobject.h). */
#cmakedefine HAVE_USABLE_WCHAR_T
/* Define to 1 if you have the `utimes' function. */
#cmakedefine HAVE_UTIMES 1
/* Define to 1 if you have the <utime.h> header file. */
#cmakedefine HAVE_UTIME_H 1
/* Define to 1 if you have the `wait3' function. */
#cmakedefine HAVE_WAIT3 1
/* Define to 1 if you have the `wait4' function. */
#cmakedefine HAVE_WAIT4 1
/* Define to 1 if you have the `waitpid' function. */
#cmakedefine HAVE_WAITPID 1
/* Define if the compiler provides a wchar.h header file. */
#cmakedefine HAVE_WCHAR_H 1
/* Define to 1 if you have the `wcscoll' function. */
#cmakedefine HAVE_WCSCOLL 1
/* Define if tzset() actually switches the local timezone in a meaningful way.
*/
#cmakedefine HAVE_WORKING_TZSET 1
/* Define if the zlib library has inflateCopy */
#cmakedefine HAVE_ZLIB_COPY 1
/* Define to 1 if you have the `_getpty' function. */
#cmakedefine HAVE__GETPTY 1
/* Define if you are using Mach cthreads directly under /include */
#cmakedefine HURD_C_THREADS 1
/* Define if you are using Mach cthreads under mach / */
#cmakedefine MACH_C_THREADS 1
/* Define to 1 if `major', `minor', and `makedev' are declared in <mkdev.h>.
*/
#cmakedefine MAJOR_IN_MKDEV
/* Define to 1 if `major', `minor', and `makedev' are declared in
<sysmacros.h>. */
#cmakedefine MAJOR_IN_SYSMACROS
/* Define if mvwdelch in curses.h is an expression. */
#cmakedefine MVWDELCH_IS_EXPRESSION 1
/* Define to the address where bug reports for this package should be sent. */
#cmakedefine PACKAGE_BUGREPORT
/* Define to the full name of this package. */
#cmakedefine PACKAGE_NAME @PACKAGE_NAME@
/* Define to the full name and version of this package. */
#cmakedefine PACKAGE_STRING @PACKAGE_STRING@
/* Define to the one symbol short name of this package. */
#cmakedefine PACKAGE_TARNAME @PACKAGE_TARNAME@
/* Define to the version of this package. */
#cmakedefine PACKAGE_VERSION @PACKAGE_VERSION@
/* Defined if PTHREAD_SCOPE_SYSTEM supported. */
#cmakedefine PTHREAD_SYSTEM_SCHED_SUPPORTED 1
/* Define to printf format modifier for Py_ssize_t */
#cmakedefine PY_FORMAT_SIZE_T
/* Define as the integral type used for Unicode representation. */
#cmakedefine PY_UNICODE_TYPE @PY_UNICODE_TYPE@
/* Define if you want to build an interpreter with many run-time checks. */
#cmakedefine Py_DEBUG 1
/* Defined if Python is built as a shared library. */
#cmakedefine Py_ENABLE_SHARED
/* Define as the size of the unicode type. */
#cmakedefine Py_UNICODE_SIZE @Py_UNICODE_SIZE@
/* Define if you want to have a Unicode type. */
#cmakedefine Py_USING_UNICODE 1
/* Define as the return type of signal handlers (`int' or `void'). */
#cmakedefine RETSIGTYPE @RETSIGTYPE@
/* Define if setpgrp() must be called as setpgrp(0, 0). */
#cmakedefine SETPGRP_HAVE_ARG
/* Define this to be extension of shared libraries (including the dot!). */
#define SHLIB_EXT "@CMAKE_SHARED_LIBRARY_SUFFIX@"
/* Define if i>>j for signed int i does not extend the sign bit when i < 0 */
#cmakedefine SIGNED_RIGHT_SHIFT_ZERO_FILLS
/* The size of `double', as computed by sizeof. */
#cmakedefine SIZEOF_DOUBLE @SIZEOF_DOUBLE@
/* The size of `float', as computed by sizeof. */
#cmakedefine SIZEOF_FLOAT @SIZEOF_FLOAT@
/* The size of `fpos_t', as computed by sizeof. */
#cmakedefine SIZEOF_FPOS_T @SIZEOF_FPOS_T@
/* The size of `int', as computed by sizeof. */
#cmakedefine SIZEOF_INT @SIZEOF_INT@
/* The size of `long', as computed by sizeof. */
#cmakedefine SIZEOF_LONG @SIZEOF_LONG@
/* The size of `long long', as computed by sizeof. */
#cmakedefine SIZEOF_LONG_LONG @SIZEOF_LONG_LONG@
/* The number of bytes in an off_t. */
#cmakedefine SIZEOF_OFF_T @SIZEOF_OFF_T@
/* The number of bytes in a pthread_t. */
#cmakedefine SIZEOF_PTHREAD_T @SIZEOF_PTHREAD_T@
/* The size of `short', as computed by sizeof. */
#cmakedefine SIZEOF_SHORT @SIZEOF_SHORT@
/* The size of `size_t', as computed by sizeof. */
#cmakedefine SIZEOF_SIZE_T @SIZEOF_SIZE_T@
/* The number of bytes in a time_t. */
#cmakedefine SIZEOF_TIME_T @SIZEOF_TIME_T@
/* The size of `uintptr_t', as computed by sizeof. */
#cmakedefine SIZEOF_UINTPTR_T @SIZEOF_UINTPTR_T@
/* The size of `void *', as computed by sizeof. */
#cmakedefine SIZEOF_VOID_P @SIZEOF_VOID_P@
/* The size of `wchar_t', as computed by sizeof. */
#cmakedefine SIZEOF_WCHAR_T @SIZEOF_WCHAR_T@
/* The size of `_Bool', as computed by sizeof. */
#cmakedefine SIZEOF__BOOL @SIZEOF__BOOL@
/* Define to 1 if you have the ANSI C header files. */
#cmakedefine STDC_HEADERS 1
/* Define if you can safely include both <sys/select.h> and <sys/time.h>
(which you can't on SCO ODT 3.0). */
#cmakedefine SYS_SELECT_WITH_SYS_TIME 1
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
#cmakedefine TIME_WITH_SYS_TIME 1
/* Define to 1 if your <sys/time.h> declares `struct tm'. */
#cmakedefine TM_IN_SYS_TIME 1
/* Define if you want to use MacPython modules on MacOSX in unix-Python. */
#cmakedefine USE_TOOLBOX_OBJECT_GLUE
/* Define if a va_list is an array of some kind */
#cmakedefine VA_LIST_IS_ARRAY 1
/* Define if you want SIGFPE handled (see Include/pyfpe.h). */
#cmakedefine WANT_SIGFPE_HANDLER
/* Define if you want wctype.h functions to be used instead of the one
supplied by Python itself. (see Include/unicodectype.h). */
#cmakedefine WANT_WCTYPE_FUNCTIONS
/* Define if WINDOW in curses.h offers a field _flags. */
#cmakedefine WINDOW_HAS_FLAGS 1
/* Define if you want documentation strings in extension modules */
#cmakedefine WITH_DOC_STRINGS 1
/* 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. */
#cmakedefine WITH_DYLD 1
/* Define to 1 if libintl is needed for locale functions. */
#cmakedefine WITH_LIBINTL
/* Define if you want to produce an OpenStep/Rhapsody framework (shared
library plus accessory files). */
#cmakedefine WITH_NEXT_FRAMEWORK 1
/* Define if you want to compile in Python-specific mallocs */
#cmakedefine WITH_PYMALLOC 1
/* Define if you want to compile in rudimentary thread support */
#cmakedefine WITH_THREAD 1
/* Define to profile with the Pentium timestamp counter */
#cmakedefine WITH_TSC 1
/* Define to 1 if your processor stores words with the most significant byte
first (like Motorola and SPARC, unlike Intel and VAX).
The block below does compile-time checking for endianness on platforms
that use GCC and therefore allows compiling fat binaries on OSX by using
'-arch ppc -arch i386' as the compile flags. The phrasing was choosen
such that the configure-result is used on systems that don't use GCC.
*/
#ifdef __BIG_ENDIAN__
#define WORDS_BIGENDIAN 1
#else
#ifndef __LITTLE_ENDIAN__
#undef WORDS_BIGENDIAN
#endif
#endif
/* 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
/* Define on OpenBSD to activate all library features */
#cmakedefine _BSD_SOURCE 1
/* Define on Irix to enable u_int */
#cmakedefine _BSD_TYPES 1
/* This must be set to 64 on some systems to enable large file support. */
#cmakedefine _FILE_OFFSET_BITS @_FILE_OFFSET_BITS@
/* Define on Linux to activate all library features */
#cmakedefine _GNU_SOURCE 1
/* This must be defined on some systems to enable large file support. */
#cmakedefine _LARGEFILE_SOURCE @_LARGEFILE_SOURCE@
/* Define on NetBSD to activate all library features */
#cmakedefine _NETBSD_SOURCE 1
/* Define _OSF_SOURCE to get the makedev macro. */
#cmakedefine _OSF_SOURCE
/* Define to activate features from IEEE Stds 1003.1-2001 */
#cmakedefine _POSIX_C_SOURCE @_POSIX_C_SOURCE@
/* Define if you have POSIX threads, and your system does not define that. */
#cmakedefine _POSIX_THREADS
/* Define to force use of thread-safe errno, h_errno, and other functions */
#cmakedefine _REENTRANT 1
/* Define to the level of X/Open that your system supports */
#cmakedefine _XOPEN_SOURCE @_XOPEN_SOURCE@
/* Define to activate Unix95-and-earlier features */
#cmakedefine _XOPEN_SOURCE_EXTENDED 1
/* Define on FreeBSD to activate all library features */
#cmakedefine __BSD_VISIBLE 1
/* Define to 1 if type `char' is unsigned and you are not using gcc. */
#ifndef __CHAR_UNSIGNED__
# undef __CHAR_UNSIGNED__
#endif
/* Defined on Solaris to see additional function prototypes. */
#cmakedefine __EXTENSIONS__
/* Define to 'long' if <time.h> doesn't define. */
#cmakedefine clock_t @clock_t@
/* Define to empty if `const' does not conform to ANSI C. */
#cmakedefine const
/* Define to `int' if <sys/types.h> doesn't define. */
#cmakedefine gid_t @gid_t@
/* Define to `int' if <sys/types.h> does not define. */
#cmakedefine mode_t @mode_t@
/* Define to `long int' if <sys/types.h> does not define. */
#cmakedefine off_t @off_t@
/* Define to `int' if <sys/types.h> does not define. */
#cmakedefine pid_t @pid_t@
/* Define to empty if the keyword does not work. */
#cmakedefine signed
/* Define to `unsigned int' if <sys/types.h> does not define. */
#cmakedefine size_t @size_t@
/* Define to `int' if <sys/socket.h> does not define. */
#cmakedefine socklen_t @socklen_t@
/* Define to `int' if <sys/types.h> doesn't define. */
#cmakedefine uid_t @uid_t@
/* Define to empty if the keyword does not work. */
#cmakedefine volatile
/* 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
#endif /*Py_PYCONFIG_H*/
|