diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-02-17 22:00:43 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-02-17 22:00:43 (GMT) |
commit | fab7415831607dbddc0dbc55c2409a0fc9dd2cd4 (patch) | |
tree | e6f892b82e7f42c0de48803e25f47a7972e5b3ae /Mac/Python | |
parent | f3eaf01c23b6bc1fc53f9c658a31fa1acdd3d2d1 (diff) | |
download | cpython-fab7415831607dbddc0dbc55c2409a0fc9dd2cd4.zip cpython-fab7415831607dbddc0dbc55c2409a0fc9dd2cd4.tar.gz cpython-fab7415831607dbddc0dbc55c2409a0fc9dd2cd4.tar.bz2 |
Made version string shorter for Carbon so it fits on one line.
Diffstat (limited to 'Mac/Python')
-rw-r--r-- | Mac/Python/macgetcompiler.c | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/Mac/Python/macgetcompiler.c b/Mac/Python/macgetcompiler.c index c7f325c..be1a2c3 100644 --- a/Mac/Python/macgetcompiler.c +++ b/Mac/Python/macgetcompiler.c @@ -36,17 +36,17 @@ PERFORMANCE OF THIS SOFTWARE. #ifdef __MWERKS__ #ifdef USE_GUSI1 -#define HASGUSI " w/GUSI1" +#define HASGUSI " GUSI1" #else #ifdef USE_GUSI2 -#define HASGUSI " w/GUSI2" +#define HASGUSI " GUSI2" #else #define HASGUSI "" #endif #endif #ifdef WITH_THREAD -#define HASTHREAD " w/THREADS" +#define HASTHREAD " THREADS" #else #define HASTHREAD "" #endif @@ -54,18 +54,10 @@ PERFORMANCE OF THIS SOFTWARE. #if TARGET_API_MAC_CARBON #define TARGET_API " CARBON" #else -#define TARGET_API "" +#define TARGET_API " PPC" #endif -#ifdef __powerc -#define COMPILER " [CW PPC" TARGET_API HASGUSI HASTHREAD"]" -#else -#ifdef __CFM68K__ -#define COMPILER " [CW CFM68K" TARGET_API HASGUSI HASTHREAD"]" -#else -#define COMPILER " [CW 68K" TARGET_API HASGUSI HASTHREAD"]" -#endif -#endif +#define COMPILER " [CW" TARGET_API HASGUSI HASTHREAD"]" #endif #ifdef MPW |