git: 3476e10d884b - main - misc/valentina: remove upstreamed patch
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 24 May 2022 22:07:02 UTC
The branch main has been updated by pkubaj:
URL: https://cgit.FreeBSD.org/ports/commit/?id=3476e10d884bb03f195af19194f010a7052db31c
commit 3476e10d884bb03f195af19194f010a7052db31c
Author: Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2022-05-24 21:55:17 +0000
Commit: Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2022-05-24 21:55:17 +0000
misc/valentina: remove upstreamed patch
---
misc/valentina/files/patch-src_libs_vmisc_debugbreak.h | 18 ------------------
1 file changed, 18 deletions(-)
diff --git a/misc/valentina/files/patch-src_libs_vmisc_debugbreak.h b/misc/valentina/files/patch-src_libs_vmisc_debugbreak.h
deleted file mode 100644
index 50902e7f2ac0..000000000000
--- a/misc/valentina/files/patch-src_libs_vmisc_debugbreak.h
+++ /dev/null
@@ -1,18 +0,0 @@
-- bug#232485: fix build with powerpc*
-
---- src/libs/vmisc/debugbreak.h.orig 2020-07-11 05:51:16 UTC
-+++ src/libs/vmisc/debugbreak.h
-@@ -119,6 +119,13 @@ __inline__ static void trap_instruction(void)
- * The workaround is the same as ARM Thumb mode: use debugbreak-gdb.py
- * or manually jump over the instruction. */
- }
-+#elif defined(__powerpc__)
-+enum { HAVE_TRAP_INSTRUCTION = 1 };
-+__attribute__((gnu_inline, always_inline))
-+__inline__ static void trap_instruction(void)
-+{
-+ __asm__ volatile(".4byte 0x7d821008");
-+}
- #else
- #define DEBUG_BREAK_IMPL DEBUG_BREAK_USE_SIGTRAP
- #endif