diff options
author | kristerw <kristerw@pkgsrc.org> | 2000-07-28 19:27:58 +0000 |
---|---|---|
committer | kristerw <kristerw@pkgsrc.org> | 2000-07-28 19:27:58 +0000 |
commit | 2021486cddc03d98e49a98e060d098b0ade6fccd (patch) | |
tree | af636f97906a7c3fbd48cb907417fa597b6f512e | |
parent | b66e4869a31ca5f1ddd2bba4c7545fb955106043 (diff) | |
download | pkgsrc-2021486cddc03d98e49a98e060d098b0ade6fccd.tar.gz |
Make the cpu emulation work for non-i386 machines.
Removed the 'NOT_FOR_PLATFORM'.
-rw-r--r-- | emulators/uae/Makefile | 4 | ||||
-rw-r--r-- | emulators/uae/files/patch-sum | 7 | ||||
-rw-r--r-- | emulators/uae/patches/patch-aa | 11 |
3 files changed, 14 insertions, 8 deletions
diff --git a/emulators/uae/Makefile b/emulators/uae/Makefile index d5ed46d01d3..05cd80a2115 100644 --- a/emulators/uae/Makefile +++ b/emulators/uae/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2000/07/24 20:10:10 martin Exp $ +# $NetBSD: Makefile,v 1.8 2000/07/28 19:27:58 kristerw Exp $ DISTNAME= uae-0.8.13 CATEGORIES= emulators @@ -7,8 +7,6 @@ MASTER_SITES= ftp://ftp.freiburg.linux.de/pub/uae/sources/develop/ MAINTAINER= kristerw@netbsd.org HOMEPAGE= http://www.freiburg.linux.de/~uae/ -NOT_FOR_PLATFORM= *-*-arm32 - USE_GMAKE= yes USE_X11= yes GNU_CONFIGURE= yes diff --git a/emulators/uae/files/patch-sum b/emulators/uae/files/patch-sum index 97a1a6230f8..a5aa5c2f526 100644 --- a/emulators/uae/files/patch-sum +++ b/emulators/uae/files/patch-sum @@ -1,6 +1,3 @@ -$NetBSD: patch-sum,v 1.2 2000/07/13 17:34:40 kristerw Exp $ +$NetBSD: patch-sum,v 1.3 2000/07/28 19:27:59 kristerw Exp $ -This placeholder file is generated by the ``makepatchsum'' target -whenever the patches directory is empty or missing. Its purpose -is to ensure that the presence of any obsolete patches will cause -the proper error to be emitted at build time. +MD5 (patch-aa) = 2f118b83535a31e85bb59bd163a88a31 diff --git a/emulators/uae/patches/patch-aa b/emulators/uae/patches/patch-aa new file mode 100644 index 00000000000..be8ae26dd5b --- /dev/null +++ b/emulators/uae/patches/patch-aa @@ -0,0 +1,11 @@ +--- src/newcpu.c.orig Fri Jul 28 19:09:30 2000 ++++ src/newcpu.c Fri Jul 28 19:10:03 2000 +@@ -1323,7 +1323,7 @@ + : : "r" (func) : "%eax", "%edx", "%ecx", "memory", "cc"); + } + #else +-#define m68k_run1(F) F ++#define m68k_run1(F) (F)() + #endif + + int in_m68k_go = 0; |