diff options
author | Shiz <hi@shiz.me> | 2017-05-13 06:14:23 +0200 |
---|---|---|
committer | Shiz <hi@shiz.me> | 2017-05-13 06:17:47 +0200 |
commit | de243a0b7a494f2cd02fde83179d68105df447a2 (patch) | |
tree | c1136c97dca3006317dd4f11fe03af354f42791a /community/ocaml/fix-s390x-mcontext-fields.patch | |
parent | a5c9034d9b328371a02550b581ee0e9f322ec07b (diff) | |
download | aports-de243a0b7a494f2cd02fde83179d68105df447a2.tar.bz2 aports-de243a0b7a494f2cd02fde83179d68105df447a2.tar.xz |
community/ocaml: attempt to fix ppc64le build
Diffstat (limited to 'community/ocaml/fix-s390x-mcontext-fields.patch')
-rw-r--r-- | community/ocaml/fix-s390x-mcontext-fields.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/community/ocaml/fix-s390x-mcontext-fields.patch b/community/ocaml/fix-s390x-mcontext-fields.patch deleted file mode 100644 index 71435f284a..0000000000 --- a/community/ocaml/fix-s390x-mcontext-fields.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff -Nru a/asmrun/signals_osdep.h b/asmrun/signals_osdep.h ---- a/asmrun/signals_osdep.h 2016-11-04 16:08:24.000000000 +0000 -+++ b/asmrun/signals_osdep.h 2017-05-13 03:16:28.749615533 +0000 -@@ -314,11 +314,11 @@ - sigact.sa_flags = 0 - - typedef unsigned long context_reg; -- #define CONTEXT_PC (context->sregs->regs.psw.addr) -- #define CONTEXT_EXCEPTION_POINTER (context->sregs->regs.gprs[13]) -- #define CONTEXT_YOUNG_LIMIT (context->sregs->regs.gprs[10]) -- #define CONTEXT_YOUNG_PTR (context->sregs->regs.gprs[11]) -- #define CONTEXT_SP (context->sregs->regs.gprs[15]) -+ #define CONTEXT_PC (context->sregs->psw.addr) -+ #define CONTEXT_EXCEPTION_POINTER (context->sregs->gprs[13]) -+ #define CONTEXT_YOUNG_LIMIT (context->sregs->gprs[10]) -+ #define CONTEXT_YOUNG_PTR (context->sregs->gprs[11]) -+ #define CONTEXT_SP (context->sregs->gprs[15]) - - /****************** PowerPC, BSD */ - |