OS X PowerPC fixes (thanks Cameron Kaiser)
This commit is contained in:
parent
a2deaac4b1
commit
813b3eea8b
6 changed files with 9 additions and 2 deletions
|
|
@ -2,6 +2,7 @@
|
|||
#define Rect OSXRect
|
||||
#define Cursor OSXCursor
|
||||
#include <Carbon/Carbon.h>
|
||||
#import <Foundation/Foundation.h>
|
||||
#ifdef MULTITOUCH
|
||||
#include <IOKit/IOKitLib.h>
|
||||
#include <IOKit/hidsystem/IOHIDShared.h>
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ case "$tag" in
|
|||
*-NetBSD-*)
|
||||
echo ${SYSNAME}-${OBJTYPE}-asm.o $SYSNAME.o
|
||||
;;
|
||||
*-Darwin-10.[5-6].* | *-Darwin-9.*)
|
||||
*-Darwin-10.[5-6].* | *-Darwin-[89].*)
|
||||
echo ${SYSNAME}-${OBJTYPE}-asm.o $SYSNAME-${OBJTYPE}.o pthread.o
|
||||
;;
|
||||
*-OpenBSD-*)
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ extern void makecontext(ucontext_t*, void(*)(), int, ...);
|
|||
# include "386-ucontext.h"
|
||||
# elif defined(__x86_64__)
|
||||
# include "x86_64-ucontext.h"
|
||||
# elif defined(__power__)
|
||||
# elif defined(__ppc__) || defined(__power__)
|
||||
# include "power-ucontext.h"
|
||||
# else
|
||||
# error "unknown architecture"
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ OBJTYPE=`(uname -m -p 2>/dev/null || uname -m) | sed '
|
|||
s;.*armv.*;arm;g;
|
||||
s;.*powerpc.*;power;g;
|
||||
s;.*PowerMacintosh.*;power;g;
|
||||
s;.*Power.Macintosh.*;power;g;
|
||||
s;.*macppc.*;power;g;
|
||||
s;.*ppc64.*;power;g;
|
||||
s;.*ppc.*;power;g;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue