From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MQS8O-0005j5-7p for qemu-devel@nongnu.org; Mon, 13 Jul 2009 16:28:24 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MQS8J-0005iP-2U for qemu-devel@nongnu.org; Mon, 13 Jul 2009 16:28:23 -0400 Received: from [199.232.76.173] (port=33156 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MQS8I-0005iM-So for qemu-devel@nongnu.org; Mon, 13 Jul 2009 16:28:18 -0400 Received: from mail-ew0-f207.google.com ([209.85.219.207]:47328) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MQS8H-0005aA-Vx for qemu-devel@nongnu.org; Mon, 13 Jul 2009 16:28:18 -0400 Received: by ewy3 with SMTP id 3so2479178ewy.34 for ; Mon, 13 Jul 2009 13:28:17 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v624) Content-Transfer-Encoding: 7bit Message-Id: <21415586a550bd0873dd05ac0195c09e@gmail.com> Content-Type: text/plain; charset=US-ASCII; format=flowed From: G 3 Date: Mon, 13 Jul 2009 16:28:11 -0400 Subject: [Qemu-devel] [PATCH] Fixes missing __LITTLE_ENDIAN__, and MAC_OS_X_VERSION_10_4 symbols on Mac OS 10.3. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This patch fixes the missing symbols issue on Mac OS 10.3 for the file Cocoa.m. Signed-off-by: John Arbuckle --- 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