void-packages/srcpkgs/strace/patches/ppc-musl.patch
q66 26b551da7b strace: fix build on ppc*-musl
[ci skip]

Closes: #12363 [via git-merge-pr]
2019-06-10 06:02:01 +02:00

16 lines
304 B
Diff

--- regs.h
+++ regs.h
@@ -8,7 +8,13 @@
#ifndef STRACE_REGS_H
# define STRACE_REGS_H
+#if !defined(__GLIBC__) && defined(__powerpc__)
+# define pt_regs musl_pt_regs
# include <sys/user.h>
+# undef pt_regs
+#else
+# include <sys/user.h>
+#endif
# include "arch_regs.h"
#endif /* !STRACE_REGS_H */