Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fab7415

Browse files
committed
Made version string shorter for Carbon so it fits on one line.
1 parent f3eaf01 commit fab7415

1 file changed

Lines changed: 5 additions & 13 deletions

File tree

Mac/Python/macgetcompiler.c

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -36,36 +36,28 @@ PERFORMANCE OF THIS SOFTWARE.
3636

3737
#ifdef __MWERKS__
3838
#ifdef USE_GUSI1
39-
#define HASGUSI " w/GUSI1"
39+
#define HASGUSI " GUSI1"
4040
#else
4141
#ifdef USE_GUSI2
42-
#define HASGUSI " w/GUSI2"
42+
#define HASGUSI " GUSI2"
4343
#else
4444
#define HASGUSI ""
4545
#endif
4646
#endif
4747

4848
#ifdef WITH_THREAD
49-
#define HASTHREAD " w/THREADS"
49+
#define HASTHREAD " THREADS"
5050
#else
5151
#define HASTHREAD ""
5252
#endif
5353

5454
#if TARGET_API_MAC_CARBON
5555
#define TARGET_API " CARBON"
5656
#else
57-
#define TARGET_API ""
57+
#define TARGET_API " PPC"
5858
#endif
5959

60-
#ifdef __powerc
61-
#define COMPILER " [CW PPC" TARGET_API HASGUSI HASTHREAD"]"
62-
#else
63-
#ifdef __CFM68K__
64-
#define COMPILER " [CW CFM68K" TARGET_API HASGUSI HASTHREAD"]"
65-
#else
66-
#define COMPILER " [CW 68K" TARGET_API HASGUSI HASTHREAD"]"
67-
#endif
68-
#endif
60+
#define COMPILER " [CW" TARGET_API HASGUSI HASTHREAD"]"
6961
#endif
7062

7163
#ifdef MPW

0 commit comments

Comments
 (0)