diff options
author | joerg <joerg@pkgsrc.org> | 2006-04-28 12:49:20 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-04-28 12:49:20 +0000 |
commit | 4e997a93d57e69879d4ee941e93eaf7289337e27 (patch) | |
tree | a8162df4a0fbe51136eb07827fa6b2d7a9dfb026 /emulators | |
parent | a8da1b31174414854ba353ea7f83e83824a57dd0 (diff) | |
download | pkgsrc-4e997a93d57e69879d4ee941e93eaf7289337e27.tar.gz |
Fix label at end of compound statement for GCC 3.4+.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/dgen/distinfo | 3 | ||||
-rw-r--r-- | emulators/dgen/patches/patch-aa | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/emulators/dgen/distinfo b/emulators/dgen/distinfo index 27a65217854..94f6f0fe94b 100644 --- a/emulators/dgen/distinfo +++ b/emulators/dgen/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.2 2005/02/23 18:49:18 agc Exp $ +$NetBSD: distinfo,v 1.3 2006/04/28 12:49:20 joerg Exp $ SHA1 (dgen-sdl-1.23.tar.gz) = c37096e5dd7c9f2c2c75496769d6d2b610a3a488 RMD160 (dgen-sdl-1.23.tar.gz) = ca5ac81b4c8436a63e8d776b182735ad63ffa77a Size (dgen-sdl-1.23.tar.gz) = 340556 bytes +SHA1 (patch-aa) = c51dcde41d11df29aa7342fcd325d8022b6e4bd7 diff --git a/emulators/dgen/patches/patch-aa b/emulators/dgen/patches/patch-aa new file mode 100644 index 00000000000..2fea8818874 --- /dev/null +++ b/emulators/dgen/patches/patch-aa @@ -0,0 +1,14 @@ +$NetBSD: patch-aa,v 1.1 2006/04/28 12:49:20 joerg Exp $ + +--- star/star.c.orig 2006-04-28 12:28:52.000000000 +0000 ++++ star/star.c +@@ -1931,7 +1931,9 @@ static void selective_usereg(void) { + case aind: case ainc: case adec: + case adsp: case axdp: + usereg(); ++ break; + default: ++ break; + } + } + |