Made version string shorter for Carbon so it fits on one line.
This commit is contained in:
parent
f3eaf01c23
commit
fab7415831
|
@ -36,17 +36,17 @@ PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
#ifdef __MWERKS__
|
#ifdef __MWERKS__
|
||||||
#ifdef USE_GUSI1
|
#ifdef USE_GUSI1
|
||||||
#define HASGUSI " w/GUSI1"
|
#define HASGUSI " GUSI1"
|
||||||
#else
|
#else
|
||||||
#ifdef USE_GUSI2
|
#ifdef USE_GUSI2
|
||||||
#define HASGUSI " w/GUSI2"
|
#define HASGUSI " GUSI2"
|
||||||
#else
|
#else
|
||||||
#define HASGUSI ""
|
#define HASGUSI ""
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef WITH_THREAD
|
#ifdef WITH_THREAD
|
||||||
#define HASTHREAD " w/THREADS"
|
#define HASTHREAD " THREADS"
|
||||||
#else
|
#else
|
||||||
#define HASTHREAD ""
|
#define HASTHREAD ""
|
||||||
#endif
|
#endif
|
||||||
|
@ -54,18 +54,10 @@ PERFORMANCE OF THIS SOFTWARE.
|
||||||
#if TARGET_API_MAC_CARBON
|
#if TARGET_API_MAC_CARBON
|
||||||
#define TARGET_API " CARBON"
|
#define TARGET_API " CARBON"
|
||||||
#else
|
#else
|
||||||
#define TARGET_API ""
|
#define TARGET_API " PPC"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __powerc
|
#define COMPILER " [CW" TARGET_API HASGUSI HASTHREAD"]"
|
||||||
#define COMPILER " [CW PPC" TARGET_API HASGUSI HASTHREAD"]"
|
|
||||||
#else
|
|
||||||
#ifdef __CFM68K__
|
|
||||||
#define COMPILER " [CW CFM68K" TARGET_API HASGUSI HASTHREAD"]"
|
|
||||||
#else
|
|
||||||
#define COMPILER " [CW 68K" TARGET_API HASGUSI HASTHREAD"]"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MPW
|
#ifdef MPW
|
||||||
|
|
Loading…
Reference in New Issue