summaryrefslogtreecommitdiff
path: root/user/numactl/musl.patch
diff options
context:
space:
mode:
authorZach van Rijn <me@zv.io>2022-09-29 17:16:26 +0000
committerZach van Rijn <me@zv.io>2022-10-21 18:35:36 -0500
commit6024509acb89146b3f1fcd9c10211a97bd105dff (patch)
treed07eb92c69d349aefeaf013874295419dfc8e124 /user/numactl/musl.patch
parentcb48a3f4f50534adbe68bf45c7d7b25025b8f4ba (diff)
downloadpackages-6024509acb89146b3f1fcd9c10211a97bd105dff.tar.gz
packages-6024509acb89146b3f1fcd9c10211a97bd105dff.tar.bz2
packages-6024509acb89146b3f1fcd9c10211a97bd105dff.tar.xz
packages-6024509acb89146b3f1fcd9c10211a97bd105dff.zip
user/numactl: bump { 2.0.14 --> 2.0.15 }.
Diffstat (limited to 'user/numactl/musl.patch')
-rw-r--r--user/numactl/musl.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/user/numactl/musl.patch b/user/numactl/musl.patch
deleted file mode 100644
index 009233f63..000000000
--- a/user/numactl/musl.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- numactl-2.0.11/syscall.c.orig
-+++ numactl-2.0.11/syscall.c
-@@ -115,14 +115,16 @@
-
- #endif
-
--#if defined(__GLIBC__) && __GLIBC_PREREQ(2, 11)
-+#if defined(__GLIBC__)
-+# if __GLIBC_PREREQ(2,11)
-
- /* glibc 2.11 seems to have working 6 argument sycall. Use the
- glibc supplied syscall in this case.
- The version cut-off is rather arbitary and could be probably
- earlier. */
-
--#define syscall6 syscall
-+# define syscall6 syscall
-+#endif
- #elif defined(__x86_64__)
- /* 6 argument calls on x86-64 are often buggy in both glibc and
- asm/unistd.h. Add a working version here. */