From c743c8d1663c57bf0b16d88c886f2e64ae64a8e5 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Wed, 14 Feb 1996 16:02:30 +0000 Subject: Modified for GUSI --- Mac/Python/macgetcompiler.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'Mac/Python/macgetcompiler.c') diff --git a/Mac/Python/macgetcompiler.c b/Mac/Python/macgetcompiler.c index 67399d8fcd..d93172b930 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 -- cgit v1.2.1