| 1 | #ifndef Py_CONFIG_H
|
|---|
| 2 | #define Py_CONFIG_H
|
|---|
| 3 |
|
|---|
| 4 | /* config.h.
|
|---|
| 5 | * At some time in the past, generated automatically by/from configure.
|
|---|
| 6 | * now maintained manually.
|
|---|
| 7 | */
|
|---|
| 8 |
|
|---|
| 9 | /* build environment */
|
|---|
| 10 | #define PLATFORM "os2emx"
|
|---|
| 11 | #define COMPILER "[EMX GCC " __VERSION__ "]"
|
|---|
| 12 | #define PYOS_OS2 1
|
|---|
| 13 | #define PYCC_GCC 1
|
|---|
| 14 |
|
|---|
| 15 | /* default location(s) */
|
|---|
| 16 | #ifndef PREFIX
|
|---|
| 17 | #define PREFIX ""
|
|---|
| 18 | #endif
|
|---|
| 19 | #ifndef PYTHONPATH
|
|---|
| 20 | #define PYTHONPATH "./Lib;./Lib/plat-" PLATFORM \
|
|---|
| 21 | ";./Lib/lib-dynload;./Lib/site-packages"
|
|---|
| 22 | #endif
|
|---|
| 23 |
|
|---|
| 24 | /* Debugging */
|
|---|
| 25 | #ifndef Py_DEBUG
|
|---|
| 26 | /*#define Py_DEBUG 1*/
|
|---|
|
|---|