source: trunk/essentials/dev-lang/python/PC/os2emx/pyconfig.h@ 3506

Last change on this file since 3506 was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 7.8 KB
Line 
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*/