mirror of
https://github.com/python/cpython.git
synced 2025-11-01 02:38:53 +00:00
- Got rid if WITH_CYCLE_GC
- Cleaned up Python banner string, so the normal build for MacPython 2.3 will have a short banner.
This commit is contained in:
parent
4be93d0e84
commit
059ed83cc3
3 changed files with 6 additions and 19 deletions
|
|
@ -36,30 +36,24 @@ PERFORMANCE OF THIS SOFTWARE.
|
|||
|
||||
#ifdef __MWERKS__
|
||||
#ifdef USE_GUSI2
|
||||
#define HASGUSI " GUSI2"
|
||||
#else
|
||||
#define HASGUSI ""
|
||||
#else
|
||||
#define HASGUSI " WITHOUT_GUSI2"
|
||||
#endif
|
||||
|
||||
#ifdef WITH_THREAD
|
||||
#define HASTHREAD " THREADS"
|
||||
#else
|
||||
#define HASTHREAD ""
|
||||
#else
|
||||
#define HASTHREAD " WITHOUT_THREAD"
|
||||
#endif
|
||||
|
||||
#if TARGET_API_MAC_CARBON
|
||||
#define TARGET_API " CARBON"
|
||||
#define TARGET_API ""
|
||||
#else
|
||||
#define TARGET_API " PPC"
|
||||
#endif
|
||||
|
||||
#ifdef WITH_CYCLE_GC
|
||||
#define HASGC " GC"
|
||||
#else
|
||||
#define HASGC ""
|
||||
#endif
|
||||
|
||||
#define COMPILER " [CW" TARGET_API HASGUSI HASTHREAD HASGC"]"
|
||||
#define COMPILER " [CW" TARGET_API HASGUSI HASTHREAD"]"
|
||||
#endif
|
||||
|
||||
#ifdef MPW
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue