summaryrefslogtreecommitdiffstats
path: root/Mac/Python/macgetcompiler.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1997-04-08 15:27:00 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1997-04-08 15:27:00 (GMT)
commit08c3be35c3309a81f02e14e56838148137a02caa (patch)
treef572241c86f0e87ce3f48aaca26e9d3f6f175618 /Mac/Python/macgetcompiler.c
parent85ae4a82ac4f47005ed723ef77fd01038f2a1f3a (diff)
downloadcpython-08c3be35c3309a81f02e14e56838148137a02caa.zip
cpython-08c3be35c3309a81f02e14e56838148137a02caa.tar.gz
cpython-08c3be35c3309a81f02e14e56838148137a02caa.tar.bz2
Changed the few old routine names still used to the new ones
Started working on MSL support
Diffstat (limited to 'Mac/Python/macgetcompiler.c')
-rw-r--r--Mac/Python/macgetcompiler.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/Mac/Python/macgetcompiler.c b/Mac/Python/macgetcompiler.c
index be41226..347b8d2 100644
--- a/Mac/Python/macgetcompiler.c
+++ b/Mac/Python/macgetcompiler.c
@@ -43,13 +43,18 @@ PERFORMANCE OF THIS SOFTWARE.
#else
#define HASGUSI ""
#endif
+#ifdef USE_MSL
+#define HASMSL " w/MSL"
+#else
+#define HASMSL ""
+#endif
#ifdef __powerc
-#define COMPILER " [CW PPC" HASGUSI "]"
+#define COMPILER " [CW PPC" HASGUSI HASMSL "]"
#else
#ifdef __CFM68K__
-#define COMPILER " [CW CFM68K" HASGUSI "]"
+#define COMPILER " [CW CFM68K" HASGUSI HASMSL "]"
#else
-#define COMPILER " [CW 68K" HASGUSI "]"
+#define COMPILER " [CW 68K" HASGUSI HASMSL "]"
#endif
#endif
#endif