| OLD | NEW |
| 1 #ifndef Py_CONFIG_H | 1 #ifndef Py_CONFIG_H |
| 2 #define Py_CONFIG_H | 2 #define Py_CONFIG_H |
| 3 |
| 4 #error "OS/2 is now unsupported, and code will be removed in Python 3.4" |
| 3 | 5 |
| 4 /* config.h. | 6 /* config.h. |
| 5 * At some time in the past, generated automatically by/from configure. | 7 * At some time in the past, generated automatically by/from configure. |
| 6 * now maintained manually. | 8 * now maintained manually. |
| 7 */ | 9 */ |
| 8 | 10 |
| 9 /* build environment */ | 11 /* build environment */ |
| 10 #define PLATFORM "os2emx" | 12 #define PLATFORM "os2emx" |
| 11 #define COMPILER "[EMX GCC " __VERSION__ "]" | 13 #define COMPILER "[EMX GCC " __VERSION__ "]" |
| 12 #define PYOS_OS2 1 | 14 #define PYOS_OS2 1 |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 #define HAVE_UNISTD_H 1 | 323 #define HAVE_UNISTD_H 1 |
| 322 | 324 |
| 323 /* Define if you have the <utime.h> header file. */ | 325 /* Define if you have the <utime.h> header file. */ |
| 324 #define HAVE_UTIME_H 1 | 326 #define HAVE_UTIME_H 1 |
| 325 | 327 |
| 326 /* EMX has an snprintf(). */ | 328 /* EMX has an snprintf(). */ |
| 327 #define HAVE_SNPRINTF 1 | 329 #define HAVE_SNPRINTF 1 |
| 328 | 330 |
| 329 #endif /* !Py_CONFIG_H */ | 331 #endif /* !Py_CONFIG_H */ |
| 330 | 332 |
| OLD | NEW |