summaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authorbouyer <bouyer@pkgsrc.org>2003-10-24 22:03:53 +0000
committerbouyer <bouyer@pkgsrc.org>2003-10-24 22:03:53 +0000
commit206c9772ecafd70b93fd027c90046bdfe058b0ec (patch)
treecf0d565034cf7f32dfa110100f160d7b653d9120 /emulators
parent9cf05e6eb624df8e9824564bfed9b44240215011 (diff)
downloadpkgsrc-206c9772ecafd70b93fd027c90046bdfe058b0ec.tar.gz
Add a patch so that it builds with gcc3.
Confirmed to still build with gcc2 by Julio M. Merino Vidal.
Diffstat (limited to 'emulators')
-rw-r--r--emulators/bochs/distinfo3
-rw-r--r--emulators/bochs/patches/patch-ab78
2 files changed, 80 insertions, 1 deletions
diff --git a/emulators/bochs/distinfo b/emulators/bochs/distinfo
index 57de45e3dfd..04ab9400735 100644
--- a/emulators/bochs/distinfo
+++ b/emulators/bochs/distinfo
@@ -1,8 +1,9 @@
-$NetBSD: distinfo,v 1.13 2003/02/07 04:00:33 fredb Exp $
+$NetBSD: distinfo,v 1.14 2003/10/24 22:03:53 bouyer Exp $
SHA1 (bochs-2.0.2.tar.gz) = 94a133dbfa646eda19c27e060df1c1e098a75be3
Size (bochs-2.0.2.tar.gz) = 3269299 bytes
SHA1 (patch-aa) = bbe026a0487dee7ac00cf75500d38b600f473c8f
+SHA1 (patch-ab) = 1646ba658064a6fe449ba4d1e0a98afb9b114e13
SHA1 (patch-ad) = 3ce76c962920677c383ce2f61fb20565ddbd8777
SHA1 (patch-ae) = 510238ed28e8aa79f4dd8780d54ac66f317a9380
SHA1 (patch-af) = 931805d3523baab6cc16bd1052f059309aab75a7
diff --git a/emulators/bochs/patches/patch-ab b/emulators/bochs/patches/patch-ab
new file mode 100644
index 00000000000..f5a9951d796
--- /dev/null
+++ b/emulators/bochs/patches/patch-ab
@@ -0,0 +1,78 @@
+$NetBSD: patch-ab,v 1.5 2003/10/24 22:03:53 bouyer Exp $
+
+--- cpu/fetchdecode.cc.orig 2003-10-18 20:42:56.000000000 +0200
++++ cpu/fetchdecode.cc 2003-10-18 20:45:25.000000000 +0200
+@@ -160,53 +160,53 @@
+ } BxOpcodeInfo_t;
+
+ static BxOpcodeInfo_t opcodesADD_EwIw[2] = {
+- { 0, { &BX_CPU_C::ADD_EEwIw } },
+- { 0, { &BX_CPU_C::ADD_EGwIw } }
++ { 0, &BX_CPU_C::ADD_EEwIw },
++ { 0, &BX_CPU_C::ADD_EGwIw }
+ };
+
+ static BxOpcodeInfo_t opcodesADD_EdId[2] = {
+- { 0, { &BX_CPU_C::ADD_EEdId } },
+- { 0, { &BX_CPU_C::ADD_EGdId } }
++ { 0, &BX_CPU_C::ADD_EEdId },
++ { 0, &BX_CPU_C::ADD_EGdId }
+ };
+
+ static BxOpcodeInfo_t opcodesADD_GwEw[2] = {
+- { 0, { &BX_CPU_C::ADD_GwEEw } },
+- { 0, { &BX_CPU_C::ADD_GwEGw } }
++ { 0, &BX_CPU_C::ADD_GwEEw },
++ { 0, &BX_CPU_C::ADD_GwEGw }
+ };
+
+ static BxOpcodeInfo_t opcodesADD_GdEd[2] = {
+- { 0, { &BX_CPU_C::ADD_GdEEd } },
+- { 0, { &BX_CPU_C::ADD_GdEGd } }
++ { 0, &BX_CPU_C::ADD_GdEEd },
++ { 0, &BX_CPU_C::ADD_GdEGd }
+ };
+
+ static BxOpcodeInfo_t opcodesMOV_GbEb[2] = {
+- { 0, { &BX_CPU_C::MOV_GbEEb } },
+- { 0, { &BX_CPU_C::MOV_GbEGb } }
++ { 0, &BX_CPU_C::MOV_GbEEb },
++ { 0, &BX_CPU_C::MOV_GbEGb }
+ };
+
+ static BxOpcodeInfo_t opcodesMOV_GwEw[2] = {
+- { 0, { &BX_CPU_C::MOV_GwEEw } },
+- { 0, { &BX_CPU_C::MOV_GwEGw } }
++ { 0, &BX_CPU_C::MOV_GwEEw },
++ { 0, &BX_CPU_C::MOV_GwEGw }
+ };
+
+ static BxOpcodeInfo_t opcodesMOV_GdEd[2] = {
+- { 0, { &BX_CPU_C::MOV_GdEEd } },
+- { 0, { &BX_CPU_C::MOV_GdEGd } }
++ { 0, &BX_CPU_C::MOV_GdEEd },
++ { 0, &BX_CPU_C::MOV_GdEGd }
+ };
+
+ static BxOpcodeInfo_t opcodesMOV_EbGb[2] = {
+- { 0, { &BX_CPU_C::MOV_EEbGb } },
+- { 0, { &BX_CPU_C::MOV_EGbGb } }
++ { 0, &BX_CPU_C::MOV_EEbGb },
++ { 0, &BX_CPU_C::MOV_EGbGb }
+ };
+
+ static BxOpcodeInfo_t opcodesMOV_EwGw[2] = {
+- { 0, { &BX_CPU_C::MOV_EEwGw } },
+- { 0, { &BX_CPU_C::MOV_EGwGw } }
++ { 0, &BX_CPU_C::MOV_EEwGw },
++ { 0, &BX_CPU_C::MOV_EGwGw }
+ };
+
+ static BxOpcodeInfo_t opcodesMOV_EdGd[2] = {
+- { 0, { &BX_CPU_C::MOV_EEdGd } },
+- { 0, { &BX_CPU_C::MOV_EGdGd } }
++ { 0, &BX_CPU_C::MOV_EEdGd },
++ { 0, &BX_CPU_C::MOV_EGdGd }
+ };
+
+ /* ********** */