diff options
author | Koen Kooi <koen@openembedded.org> | 2008-09-09 10:49:00 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-09-09 10:49:00 +0000 |
commit | 9e1c12964cfef801b58a3711578918d5869fb2f8 (patch) | |
tree | c6349b077aacb70319977676fa3ddf54c198d25e /packages/quake/quake2/quake2-arm.patch | |
parent | f6f94add26d5da9f6c9296bbe1c20f8856e558da (diff) |
quake2: add quake2 from icculus.org
Diffstat (limited to 'packages/quake/quake2/quake2-arm.patch')
-rw-r--r-- | packages/quake/quake2/quake2-arm.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/packages/quake/quake2/quake2-arm.patch b/packages/quake/quake2/quake2-arm.patch new file mode 100644 index 0000000000..02b3cb2eae --- /dev/null +++ b/packages/quake/quake2/quake2-arm.patch @@ -0,0 +1,32 @@ +--- /tmp/sys_linux.c 2008-09-09 11:50:06.000000000 +0200 ++++ trunk/src/linux/sys_linux.c 2008-09-09 11:48:06.113198000 +0200 +@@ -225,6 +225,8 @@ + const char *gamename = "gameppc.so"; + #elif defined __sparc__ + const char *gamename = "gamesparc.so"; ++#elif defined __arm__ ++ const char *gamename = "gamearm.so"; + #else + #error Unknown arch + #endif +--- /tmp/Makefile 2008-09-09 11:52:05.000000000 +0200 ++++ trunk/Makefile 2008-09-09 11:53:26.543198000 +0200 +@@ -60,18 +60,6 @@ + # this nice line comes from the linux kernel makefile + ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc/ -e s/sparc64/sparc/ -e s/arm.*/arm/ -e s/sa110/arm/ -e s/alpha/axp/) + +-ifneq ($(ARCH),x86_64) +-ifneq ($(ARCH),i386) +-ifneq ($(ARCH),axp) +-ifneq ($(ARCH),ppc) +-ifneq ($(ARCH),sparc) +-$(error arch $(ARCH) is currently not supported) +-endif +-endif +-endif +-endif +-endif +- + CC=gcc + + ifndef OPT_CFLAGS |