Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Adélie Package Tree
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adélie Linux
Adélie Package Tree
Commits
37cdc8fc
Verified
Commit
37cdc8fc
authored
5 years ago
by
Anna Wilcox
Browse files
Options
Downloads
Patches
Plain Diff
system/psmisc: attempt to fix ARMv7 build
parent
aa64aaf6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
system/psmisc/APKBUILD
+2
-3
2 additions, 3 deletions
system/psmisc/APKBUILD
system/psmisc/musl_ptregs.patch
+5
-1
5 additions, 1 deletion
system/psmisc/musl_ptregs.patch
with
7 additions
and
4 deletions
system/psmisc/APKBUILD
+
2
−
3
View file @
37cdc8fc
# Contributor: A. Wilcox <awilfox@adelielinux.org>
# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
pkgname
=
psmisc
pkgver
=
23.1
pkgrel
=
0
pkgrel
=
1
pkgdesc
=
"Miscellaneous utilities that use the proc filesystem"
url
=
"https://gitlab.com/psmisc/psmisc"
arch
=
"all"
...
...
@@ -58,4 +57,4 @@ package() {
sha512sums
=
"636f33b628f07599c7a08d0fe0e084469647e2b03046f9c220f6a24475ab1d5dd07db2501bc1a581ca68c72c212367b5dab8b44edfe477a70bfc8740af2b1365 psmisc-23.1.tar.bz2
a68c75eb3c66a9df0d4e574a9439eeed0cd2dc97b3cad3fcd8b945619c2ec238b73bf479d1b55ddd4821471cd8934ee1fbc7871c92de7ef72c3d3f989ab62c9f dont-underlink-peekfd.patch
b16139606e1ccaebd94b7b7a14f49f530b180f1fd24338008e4c4d48761b57953458c46e57b0f7ec191353514f68126f79c281875c4cd56ed2f1220ace131ce1 fix-peekfd-on-ppc.patch
73dec9791e8cdb85cd3d9ef9be4d16e0fef481c6edc334ed9e954829
444b
1a92b87f7a3a2e6c1d09ac207bed828f214f5f2a95caa66540a7f2a6c58a6b8f6f2c
musl_ptregs.patch"
57e3ebf427bae9d3ef5b40be1cbc29743009720a75369c91d338f7634fea5bf522f20ec5
44
0
4b
99f3a39e2c4c146c40baee2b22f68e5ede76678d488fde00db5
musl_ptregs.patch"
This diff is collapsed.
Click to expand it.
system/psmisc/musl_ptregs.patch
+
5
−
1
View file @
37cdc8fc
...
...
@@ -7,13 +7,17 @@ Index: psmisc-22.21/src/peekfd.c
===================================================================
--- a/src/peekfd.c.old
+++ b/src/peekfd.c
@@ -27,7 +27,
9
@@
@@ -27,7 +27,
13
@@
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/syscall.h>
+#ifdef __PPC__
+#define pt_regs uapi_pt_regs
+#endif
#include <asm/ptrace.h>
+#ifdef __PPC__
+#undef pt_regs
+#endif
#include <byteswap.h>
#include <endian.h>
#include <sys/user.h>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment