SecBSD's official ports repository

This commit is contained in:
purplerain 2023-08-16 22:26:55 +00:00
commit 2c0afcbbf3
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
64331 changed files with 5339189 additions and 0 deletions

View file

@ -0,0 +1,18 @@
--- src/Unix/sigsegv.cpp.orig Sun Jan 1 22:05:51 2017
+++ src/Unix/sigsegv.cpp Sun Jan 1 22:10:27 2017
@@ -1445,6 +1445,7 @@ static bool sparc_skip_instruction(unsigned long * reg
#endif
// Decode and skip ARM instruction
+#ifdef HAVE_SIGSEGV_SKIP_INSTRUCTION
#if (defined(arm) || defined(__arm__))
enum {
#if (defined(__linux__))
@@ -1590,6 +1591,7 @@ static bool arm_skip_instruction(unsigned long * regs)
regs[ARM_REG_PC] += 4;
return true;
}
+#endif
#endif