mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
Removed THINK_C support.
Added a CARBON indicator to the version string.
This commit is contained in:
parent
7ce6d074aa
commit
d9f6e92fbf
1 changed files with 9 additions and 7 deletions
|
@ -33,10 +33,6 @@ PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
#ifdef THINK_C
|
|
||||||
#define COMPILER " [THINK C]"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __MWERKS__
|
#ifdef __MWERKS__
|
||||||
#ifdef USE_GUSI1
|
#ifdef USE_GUSI1
|
||||||
#define HASGUSI " w/GUSI1"
|
#define HASGUSI " w/GUSI1"
|
||||||
|
@ -54,13 +50,19 @@ PERFORMANCE OF THIS SOFTWARE.
|
||||||
#define HASTHREAD ""
|
#define HASTHREAD ""
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef TARGET_API_MAC_CARBON
|
||||||
|
#define TARGET_API " CARBON"
|
||||||
|
#else
|
||||||
|
#define TARGET_API ""
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef __powerc
|
#ifdef __powerc
|
||||||
#define COMPILER " [CW PPC" HASGUSI HASTHREAD"]"
|
#define COMPILER " [CW PPC" TARGET_API HASGUSI HASTHREAD"]"
|
||||||
#else
|
#else
|
||||||
#ifdef __CFM68K__
|
#ifdef __CFM68K__
|
||||||
#define COMPILER " [CW CFM68K" HASGUSI HASTHREAD"]"
|
#define COMPILER " [CW CFM68K" TARGET_API HASGUSI HASTHREAD"]"
|
||||||
#else
|
#else
|
||||||
#define COMPILER " [CW 68K" HASGUSI HASTHREAD"]"
|
#define COMPILER " [CW 68K" TARGET_API HASGUSI HASTHREAD"]"
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue