summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'Mac/Modules/config.c')
-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