diff options
author | kristerw <kristerw@pkgsrc.org> | 2002-02-26 03:19:59 +0000 |
---|---|---|
committer | kristerw <kristerw@pkgsrc.org> | 2002-02-26 03:19:59 +0000 |
commit | ca21196d32938b1f957d6d6ec64426dfd6f4d29d (patch) | |
tree | 0624dc908c745115161c7b582e64c6337ba5ebcc /emulators/uae/patches | |
parent | d877bd8903562a6732f490924138ba6c6706c10a (diff) | |
download | pkgsrc-ca21196d32938b1f957d6d6ec64426dfd6f4d29d.tar.gz |
Update uae to 0.8.21.
Changes since 0.8.20:
- Several bug fixes, including some serious filesystem emulation bugs.
- Support for A1000 boot ROMs.
Diffstat (limited to 'emulators/uae/patches')
-rw-r--r-- | emulators/uae/patches/patch-ac | 22 | ||||
-rw-r--r-- | emulators/uae/patches/patch-ad | 31 |
2 files changed, 0 insertions, 53 deletions
diff --git a/emulators/uae/patches/patch-ac b/emulators/uae/patches/patch-ac deleted file mode 100644 index 0bdb1d169c4..00000000000 --- a/emulators/uae/patches/patch-ac +++ /dev/null @@ -1,22 +0,0 @@ -$NetBSD: patch-ac,v 1.4 2002/01/01 19:05:21 kristerw Exp $ ---- configure.orig Sun Dec 30 15:42:54 2001 -+++ configure Tue Jan 1 19:21:03 2002 -@@ -6579,7 +6579,7 @@ - - if [ "x$WANT_SDL" = "xyes" ]; then - OD_JOYSTICK=sdl-joystick.c --else if [ "x$HAVE_MACHINE_JOYSTICK_H" = "xyes" ]; then -+else - cat > conftest.$ac_ext <<EOF - #line 6585 "configure" - #include "confdefs.h" -@@ -6594,9 +6594,7 @@ - else - echo "configure: failed program was:" >&5 - cat conftest.$ac_ext >&5 --fi - rm -f conftest* --else - OD_JOYSTICK=$OSDEP/joystick.c - fi - fi diff --git a/emulators/uae/patches/patch-ad b/emulators/uae/patches/patch-ad deleted file mode 100644 index 86916b18c48..00000000000 --- a/emulators/uae/patches/patch-ad +++ /dev/null @@ -1,31 +0,0 @@ -$NetBSD: patch-ad,v 1.1 2001/05/31 21:38:52 kristerw Exp $ ---- src/od-linux/joystick.c.bak Wed Apr 15 21:30:16 1998 -+++ src/od-linux/joystick.c Thu May 31 23:19:06 2001 -@@ -17,12 +17,12 @@ - #include "custom.h" - #include "joystick.h" - --#ifdef HAVE_MACHINE_SOUNDCARD_H -+#ifdef HAVE_MACHINE_JOYSTICK_H - - /* The BSD way. */ - --# include <machine/soundcard.h> --typedef struct joystick uae_joystick_t -+# include <machine/joystick.h> -+typedef struct joystick uae_joystick_t; - - #define JS_DEVNAME_PREFIX "joy" - -@@ -84,7 +84,11 @@ - if (left) top = !top; - if (right) bot = !bot; - *dir = bot | (right << 1) | (top << 8) | (left << 9); -+#ifdef HAVE_MACHINE_JOYSTICK_H -+ *button = buffer.b1 || buffer.b2; -+#else - *button = buffer.buttons & 3; -+#endif - } - - void init_joystick(void) |