| OLD | NEW |
| 1 #ifndef Py_CONFIG_H | 1 #ifndef Py_CONFIG_H |
| 2 #define Py_CONFIG_H | 2 #define Py_CONFIG_H |
| 3 | 3 |
| 4 /* pyconfig.h. NOT Generated automatically by configure. | 4 /* pyconfig.h. NOT Generated automatically by configure. |
| 5 | 5 |
| 6 This is a manually maintained version used for the Watcom, | 6 This is a manually maintained version used for the Watcom, |
| 7 Borland and Microsoft Visual C++ compilers. It is a | 7 Borland and Microsoft Visual C++ compilers. It is a |
| 8 standard part of the Python distribution. | 8 standard part of the Python distribution. |
| 9 | 9 |
| 10 WINDOWS DEFINES: | 10 WINDOWS DEFINES: |
| (...skipping 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 #endif | 703 #endif |
| 704 | 704 |
| 705 /* Define if you have the <sys/un.h> header file. */ | 705 /* Define if you have the <sys/un.h> header file. */ |
| 706 /* #define HAVE_SYS_UN_H 1 */ | 706 /* #define HAVE_SYS_UN_H 1 */ |
| 707 | 707 |
| 708 /* Define if you have the <sys/utime.h> header file. */ | 708 /* Define if you have the <sys/utime.h> header file. */ |
| 709 /* #define HAVE_SYS_UTIME_H 1 */ | 709 /* #define HAVE_SYS_UTIME_H 1 */ |
| 710 | 710 |
| 711 /* Define if you have the <sys/utsname.h> header file. */ | 711 /* Define if you have the <sys/utsname.h> header file. */ |
| 712 /* #define HAVE_SYS_UTSNAME_H 1 */ | 712 /* #define HAVE_SYS_UTSNAME_H 1 */ |
| 713 | |
| 714 /* Define if you have the <thread.h> header file. */ | |
| 715 /* #undef HAVE_THREAD_H */ | |
| 716 | 713 |
| 717 /* Define if you have the <unistd.h> header file. */ | 714 /* Define if you have the <unistd.h> header file. */ |
| 718 /* #define HAVE_UNISTD_H 1 */ | 715 /* #define HAVE_UNISTD_H 1 */ |
| 719 | 716 |
| 720 /* Define if you have the <utime.h> header file. */ | 717 /* Define if you have the <utime.h> header file. */ |
| 721 /* #define HAVE_UTIME_H 1 */ | 718 /* #define HAVE_UTIME_H 1 */ |
| 722 | 719 |
| 723 /* Define if the compiler provides a wchar.h header file. */ | 720 /* Define if the compiler provides a wchar.h header file. */ |
| 724 #define HAVE_WCHAR_H 1 | 721 #define HAVE_WCHAR_H 1 |
| 725 | 722 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 755 | 752 |
| 756 /* WinSock does not use a bitmask in select, and uses | 753 /* WinSock does not use a bitmask in select, and uses |
| 757 socket handles greater than FD_SETSIZE */ | 754 socket handles greater than FD_SETSIZE */ |
| 758 #define Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE | 755 #define Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE |
| 759 | 756 |
| 760 /* Define if C doubles are 64-bit IEEE 754 binary format, stored with the | 757 /* Define if C doubles are 64-bit IEEE 754 binary format, stored with the |
| 761 least significant byte first */ | 758 least significant byte first */ |
| 762 #define DOUBLE_IS_LITTLE_ENDIAN_IEEE754 1 | 759 #define DOUBLE_IS_LITTLE_ENDIAN_IEEE754 1 |
| 763 | 760 |
| 764 #endif /* !Py_CONFIG_H */ | 761 #endif /* !Py_CONFIG_H */ |
| OLD | NEW |