From: Michael Mair-Keimberger (asterix) Date: Fri, 3 Feb 2017 15:23:14 +0000 (+0100) Subject: sys-devel/bin86: remove unused patches X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=1cbca701e8460f8ced5309ae337f191380c884c6;p=gentoo.git sys-devel/bin86: remove unused patches Closes: https://github.com/gentoo/gentoo/pull/3791 --- diff --git a/sys-devel/bin86/files/bin86-0.16.18-headers.patch b/sys-devel/bin86/files/bin86-0.16.18-headers.patch deleted file mode 100644 index 16c9fa1d8db8..000000000000 --- a/sys-devel/bin86/files/bin86-0.16.18-headers.patch +++ /dev/null @@ -1,34 +0,0 @@ -fix implicit function decl warnings - -by David J Cozatt - ---- bin86-0.16.18/ld/catimage.c -+++ bin86-0.16.18/ld/catimage.c -@@ -21,6 +21,8 @@ - */ - - #include -+#include -+#include - #include "x86_aout.h" - - #ifndef __OUT_OK ---- bin86-0.16.18/ld/dumps.c -+++ bin86-0.16.18/ld/dumps.c -@@ -6,6 +6,7 @@ - #include "obj.h" - #include "type.h" - #include "globvar.h" -+#include - - /* print list of modules and whether they are loaded */ - ---- bin86-0.16.18/ld/objchop.c -+++ bin86-0.16.18/ld/objchop.c -@@ -1,5 +1,6 @@ - - #include -+#include - #include "x86_aout.h" - - #ifndef __OUT_OK diff --git a/sys-devel/bin86/files/bin86-0.16.20-remove-seg-ss-check.patch b/sys-devel/bin86/files/bin86-0.16.20-remove-seg-ss-check.patch deleted file mode 100644 index 146b42f9063e..000000000000 --- a/sys-devel/bin86/files/bin86-0.16.20-remove-seg-ss-check.patch +++ /dev/null @@ -1,22 +0,0 @@ -This check leads to false positives for lilo. We disable it. - -From: Anthony G. Basile - -diff -Naur bin86-0.16.20.orig/as/assemble.c bin86-0.16.20/as/assemble.c ---- bin86-0.16.20.orig/as/assemble.c 2013-10-29 11:45:37.000000000 -0400 -+++ bin86-0.16.20/as/assemble.c 2013-12-09 18:43:45.018184693 -0500 -@@ -325,12 +325,14 @@ - /* We handle "rep[ne]" refix as separate instruction; check if it's valid */ - if (prevop == 0xF2 && (opcode&0xF6) != 0xA6) /* REPNE CMPS/SCAS */ - error (REPNE_STRING); -+#if 0 - if (prevop == 0xF3 && !((opcode&0xFC) == 0x6C || /* REP INS/OUTS */ - (opcode&0xFC) == 0xA4 || /* REP MOVS/CMPS */ - (opcode&0xFC) == 0xAC || /* REP SCAS/LODS */ - (opcode&0xFE) == 0xAA)) /* REP STOS */ - error (REP_STRING); - #endif -+#endif - routine = rout_table[symptr->value_reg_or_op.op.routine]; - getsym(); - (*routine)();