From: G 3 <programmingkidx@gmail.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH] Fixes missing __LITTLE_ENDIAN__, and MAC_OS_X_VERSION_10_4 symbols on Mac OS 10.3.
Date: Mon, 13 Jul 2009 16:28:11 -0400 [thread overview]
Message-ID: <21415586a550bd0873dd05ac0195c09e@gmail.com> (raw)
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
reply other threads:[~2009-07-13 20:28 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=21415586a550bd0873dd05ac0195c09e@gmail.com \
--to=programmingkidx@gmail.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.