diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-06-27 13:18:14 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-06-27 13:18:14 (GMT) |
commit | f74f63a43f3c4e3d31a0366a2a982e0ded8ef583 (patch) | |
tree | 7a283806d15a5e953125048c1da5c58488c07120 /Mac/Modules | |
parent | eceb3e3f0a7d0f58ac75b46cc1c907eaf21dd472 (diff) | |
download | cpython-f74f63a43f3c4e3d31a0366a2a982e0ded8ef583.zip cpython-f74f63a43f3c4e3d31a0366a2a982e0ded8ef583.tar.gz cpython-f74f63a43f3c4e3d31a0366a2a982e0ded8ef583.tar.bz2 |
Initial port to CodeWarrior CFM68K support (mainly by disabling
unsupported features).
Diffstat (limited to 'Mac/Modules')
-rw-r--r-- | Mac/Modules/config.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Mac/Modules/config.c b/Mac/Modules/config.c index 385372a..224be8b 100644 --- a/Mac/Modules/config.c +++ b/Mac/Modules/config.c @@ -95,9 +95,13 @@ getversion() #ifdef __powerc strcat(version, " [MW PPC compiler]"); #else +#ifdef __CFM68K__ + strcat(version, " [MW CFM68K compiler]"); +#else strcat(version, " [MW 68K compiler]"); #endif #endif +#endif #ifdef THINK_C #ifdef __SC__ strcat(version, " [Symantec Think C compiler]"); @@ -330,7 +334,7 @@ struct { } inittab[] = { {"array", initarray}, -#ifndef __CFM68K__ +#ifndef SYMANTEC__CFM68K__ /* The math library seems mostly broken... */ {"math", initmath}, #endif |