From: Jack Jansen Date: Fri, 5 May 2000 23:08:47 +0000 (+0000) Subject: Got rid of w/MSL in the version string. X-Git-Tag: v2.0b1~1841 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=850d118f74d0f93a8befe638e8f434548f339145;p=thirdparty%2FPython%2Fcpython.git Got rid of w/MSL in the version string. --- diff --git a/Mac/Python/macgetcompiler.c b/Mac/Python/macgetcompiler.c index 883658138633..3f60d058f9d6 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