aboutsummaryrefslogtreecommitdiffstats
path: root/src/macterm.h
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2008-07-21 04:21:43 +0000
committerYAMAMOTO Mitsuharu2008-07-21 04:21:43 +0000
commit83b968264acb13721f22e9b6a538eeb2fe1dfc90 (patch)
tree6413c7eb76d2992ae99238901029f25a9950e5ad /src/macterm.h
parent91b953ac7f8b854010eef0b00bfc12b040abc4ed (diff)
downloademacs-83b968264acb13721f22e9b6a538eeb2fe1dfc90.tar.gz
emacs-83b968264acb13721f22e9b6a538eeb2fe1dfc90.zip
(kCGBitmapByteOrder32Host): New define for non-universal SDKs.
Diffstat (limited to 'src/macterm.h')
-rw-r--r--src/macterm.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/macterm.h b/src/macterm.h
index f9e2655a7a2..d728a377d08 100644
--- a/src/macterm.h
+++ b/src/macterm.h
@@ -611,7 +611,13 @@ enum {
611 kEventParamWindowMouseLocation = 'wmou' 611 kEventParamWindowMouseLocation = 'wmou'
612}; 612};
613#endif 613#endif
614
615/* kCGBitmapByteOrder32Host is defined in Universal SDK for 10.4 but
616 not in PPC SDK for 10.4.0. */
617#if MAC_OS_X_VERSION_MAX_ALLOWED < 1050 && !defined (kCGBitmapByteOrder32Host)
618#define kCGBitmapByteOrder32Host 0
614#endif 619#endif
620#endif /* MAC_OSX */
615 621
616struct frame; 622struct frame;
617struct face; 623struct face;