diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-08-14 12:30:15 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-08-14 12:30:15 (GMT) |
commit | f717ac29f056147ab968df5c18385960a26b31a8 (patch) | |
tree | 6856798ba9685933336ecb1afc2b77ad4cc16f4c /Mac/Python | |
parent | 0e1c0ce4b078c34a2138e0b8e2847555e340ed00 (diff) | |
download | cpython-f717ac29f056147ab968df5c18385960a26b31a8.zip cpython-f717ac29f056147ab968df5c18385960a26b31a8.tar.gz cpython-f717ac29f056147ab968df5c18385960a26b31a8.tar.bz2 |
Merged Jack's macgetcompiler.c and Guido's maccompiler.c and named the
result macgetcompiler.c (after all, *I* did the merging:-)
Diffstat (limited to 'Mac/Python')
-rw-r--r-- | Mac/Python/macgetcompiler.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Mac/Python/macgetcompiler.c b/Mac/Python/macgetcompiler.c index b249d67..67399d8 100644 --- a/Mac/Python/macgetcompiler.c +++ b/Mac/Python/macgetcompiler.c @@ -8,9 +8,13 @@ #ifdef __powerc #define COMPILER " [CW PPC]" #else +#ifdef __CFM68K__ +#define COMPILER " [CW CFM68K]" +#else #define COMPILER " [CW 68K]" #endif #endif +#endif #ifdef MPW #ifdef __SC__ |