summaryrefslogtreecommitdiffstats
path: root/Mac/Modules
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1995-06-27 13:18:14 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1995-06-27 13:18:14 (GMT)
commitf74f63a43f3c4e3d31a0366a2a982e0ded8ef583 (patch)
tree7a283806d15a5e953125048c1da5c58488c07120 /Mac/Modules
parenteceb3e3f0a7d0f58ac75b46cc1c907eaf21dd472 (diff)
downloadcpython-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.c6
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