mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-03-21 22:28:37 -05:00
Any Mac that can handle CFM-68K code must have at least a 68020 CPU, and hence
be equipped with Color QuickDraw, as are all PowerPC systems. Hence, don't bother with support for basic QuickDraw in the CFM-68K and PowerPC builds. [originally from svn r2431]
This commit is contained in:
parent
44a1e7fff2
commit
375185cf9f
@ -27,7 +27,12 @@ struct mac_gestalts {
|
|||||||
|
|
||||||
extern struct mac_gestalts mac_gestalts;
|
extern struct mac_gestalts mac_gestalts;
|
||||||
|
|
||||||
|
#if TARGET_RT_MAC_CFM
|
||||||
|
/* All systems that can use CFM have Color QuickDraw */
|
||||||
|
#define HAVE_COLOR_QD() 1
|
||||||
|
#else
|
||||||
#define HAVE_COLOR_QD() (mac_gestalts.qdvers > gestaltOriginalQD)
|
#define HAVE_COLOR_QD() (mac_gestalts.qdvers > gestaltOriginalQD)
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
/* Config that created this session */
|
/* Config that created this session */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user