summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2019-04-10 07:05:33 +0200
committerLars Wendler <polynomial-c@gentoo.org>2019-04-10 07:06:48 +0200
commit738937f1dd8819af159f52452fcd6fd93468f7da (patch)
tree687bc305a2e26cce1a6b7fbb69edab753c76fca4 /dev-libs/libpcre/files
parentgui-apps/wl-clipboard: arm64 keyworded (bug #682992) (diff)
downloadgentoo-738937f1dd8819af159f52452fcd6fd93468f7da.tar.gz
gentoo-738937f1dd8819af159f52452fcd6fd93468f7da.tar.bz2
gentoo-738937f1dd8819af159f52452fcd6fd93468f7da.zip
dev-libs/libpcre: Removed old
Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'dev-libs/libpcre/files')
-rw-r--r--dev-libs/libpcre/files/libpcre-8.41-sljit_mips-label-statement-fix.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/dev-libs/libpcre/files/libpcre-8.41-sljit_mips-label-statement-fix.patch b/dev-libs/libpcre/files/libpcre-8.41-sljit_mips-label-statement-fix.patch
deleted file mode 100644
index 0494ccc25ebc..000000000000
--- a/dev-libs/libpcre/files/libpcre-8.41-sljit_mips-label-statement-fix.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -Naurp pcre-8.41.orig/sljit/sljitNativeMIPS_common.c pcre-8.41/sljit/sljitNativeMIPS_common.c
---- pcre-8.41.orig/sljit/sljitNativeMIPS_common.c 2017-05-07 11:32:25.000000000 -0400
-+++ pcre-8.41/sljit/sljitNativeMIPS_common.c 2017-07-29 17:50:24.508909742 -0400
-@@ -503,9 +503,11 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit
- #ifdef SLJIT_IS_FPU_AVAILABLE
- return SLJIT_IS_FPU_AVAILABLE;
- #elif defined(__GNUC__)
-+ {
- sljit_sw fir;
- asm ("cfc1 %0, $0" : "=r"(fir));
- return (fir >> 22) & 0x1;
-+ }
- #else
- #error "FIR check is not implemented for this architecture"
- #endif