summaryrefslogtreecommitdiffstats
path: root/Mac/Python/macgetcompiler.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1996-02-14 16:02:30 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1996-02-14 16:02:30 (GMT)
commitc743c8d1663c57bf0b16d88c886f2e64ae64a8e5 (patch)
tree6063e002e426cad44d6ef383ac9e7ab01ba716b0 /Mac/Python/macgetcompiler.c
parentb852b74c71fd029c4e78bf16c7b910e576027249 (diff)
downloadcpython-c743c8d1663c57bf0b16d88c886f2e64ae64a8e5.zip
cpython-c743c8d1663c57bf0b16d88c886f2e64ae64a8e5.tar.gz
cpython-c743c8d1663c57bf0b16d88c886f2e64ae64a8e5.tar.bz2
Modified for GUSI
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 67399d8..d93172b 100644
--- a/Mac/Python/macgetcompiler.c
+++ b/Mac/Python/macgetcompiler.c
@@ -5,13 +5,18 @@
#endif
#ifdef __MWERKS__
+#ifdef USE_GUSI
+#define HASGUSI " w/GUSI"
+#else
+#define HASGUSI ""
+#endif
#ifdef __powerc
-#define COMPILER " [CW PPC]"
+#define COMPILER " [CW PPC" HASGUSI "]"
#else
#ifdef __CFM68K__
-#define COMPILER " [CW CFM68K]"
+#define COMPILER " [CW CFM68K" HASGUSI "]"
#else
-#define COMPILER " [CW 68K]"
+#define COMPILER " [CW 68K" HASGUSI "]"
#endif
#endif
#endif