* [Qemu-devel] [PATCH] Fixes missing __LITTLE_ENDIAN__, and MAC_OS_X_VERSION_10_4 symbols on Mac OS 10.3.
@ 2009-07-13 20:28 G 3
0 siblings, 0 replies; only message in thread
From: G 3 @ 2009-07-13 20:28 UTC (permalink / raw)
To: qemu-devel
This patch fixes the missing symbols issue on Mac OS 10.3 for the file
Cocoa.m.
Signed-off-by: John Arbuckle <programmingkidx@gmail.com>
---
cocoa.m | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/cocoa.m b/cocoa.m
index b655dcc..3bf1a87 100644
--- a/cocoa.m
+++ b/cocoa.m
@@ -28,6 +28,13 @@
#include "console.h"
#include "sysemu.h"
+#ifndef MAC_OS_X_VERSION_10_4
+#define MAC_OS_X_VERSION_10_4 1040
+#endif
+
+#ifndef __LITTLE_ENDIAN__
+#define __LITTLE_ENDIAN__ 0 /* assume PowerPC*/
+#endif
//#define DEBUG
--
1.6.3.3
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2009-07-13 20:28 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-13 20:28 [Qemu-devel] [PATCH] Fixes missing __LITTLE_ENDIAN__, and MAC_OS_X_VERSION_10_4 symbols on Mac OS 10.3 G 3
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).