summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-05-05 23:08:47 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2000-05-05 23:08:47 (GMT)
commit850d118f74d0f93a8befe638e8f434548f339145 (patch)
tree4be0d1be94fd8cfc09a1a1a3220ff68d5ff7e187 /Mac
parent68552ddece3246548633756d62433b723cbc1bce (diff)
downloadcpython-850d118f74d0f93a8befe638e8f434548f339145.zip
cpython-850d118f74d0f93a8befe638e8f434548f339145.tar.gz
cpython-850d118f74d0f93a8befe638e8f434548f339145.tar.bz2
Got rid of w/MSL in the version string.
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Python/macgetcompiler.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/Mac/Python/macgetcompiler.c b/Mac/Python/macgetcompiler.c
index 8836581..3f60d05 100644
--- a/Mac/Python/macgetcompiler.c
+++ b/Mac/Python/macgetcompiler.c
@@ -48,12 +48,6 @@ PERFORMANCE OF THIS SOFTWARE.
#endif
#endif
-#ifdef USE_MSL
-#define HASMSL " w/MSL"
-#else
-#define HASMSL ""
-#endif
-
#ifdef WITH_THREAD
#define HASTHREAD " w/THREADS"
#else
@@ -61,12 +55,12 @@ PERFORMANCE OF THIS SOFTWARE.
#endif
#ifdef __powerc
-#define COMPILER " [CW PPC" HASGUSI HASMSL HASTHREAD"]"
+#define COMPILER " [CW PPC" HASGUSI HASTHREAD"]"
#else
#ifdef __CFM68K__
-#define COMPILER " [CW CFM68K" HASGUSI HASMSL HASTHREAD"]"
+#define COMPILER " [CW CFM68K" HASGUSI HASTHREAD"]"
#else
-#define COMPILER " [CW 68K" HASGUSI HASMSL HASTHREAD"]"
+#define COMPILER " [CW 68K" HASGUSI HASTHREAD"]"
#endif
#endif
#endif