diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-06-15 07:19:05 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-06-15 07:19:05 +0000 |
commit | f9f7dad544be47984bc1d55150b28220433de044 (patch) | |
tree | 311fff832ebb2cb69948babab97d6cc7a784a57c /main/libc0.9.32/0002-pread-pwrite-handle-renamed-syscalls-in-common-ppc-x.patch | |
parent | d89594d97b9b4a0d69b35b64163c897eeb068c5c (diff) | |
download | aports-f9f7dad544be47984bc1d55150b28220433de044.tar.bz2 aports-f9f7dad544be47984bc1d55150b28220433de044.tar.xz |
main/libc0.9.32: remove
we havent supported this for years
Diffstat (limited to 'main/libc0.9.32/0002-pread-pwrite-handle-renamed-syscalls-in-common-ppc-x.patch')
-rw-r--r-- | main/libc0.9.32/0002-pread-pwrite-handle-renamed-syscalls-in-common-ppc-x.patch | 113 |
1 files changed, 0 insertions, 113 deletions
diff --git a/main/libc0.9.32/0002-pread-pwrite-handle-renamed-syscalls-in-common-ppc-x.patch b/main/libc0.9.32/0002-pread-pwrite-handle-renamed-syscalls-in-common-ppc-x.patch deleted file mode 100644 index c11fcc55fd..0000000000 --- a/main/libc0.9.32/0002-pread-pwrite-handle-renamed-syscalls-in-common-ppc-x.patch +++ /dev/null @@ -1,113 +0,0 @@ -From 1bdc1ab2938ddc824c01b9b4487ea6a73e4216cd Mon Sep 17 00:00:00 2001 -From: Mike Frysinger <vapier@gentoo.org> -Date: Wed, 30 May 2012 01:15:03 -0400 -Subject: [PATCH 2/6] pread/pwrite: handle renamed syscalls in - common/ppc/xtensa code - -Some arches got this fix, but many did not. So copy the ifdef logic to -the ones that missed it to fix behavior in linux-2.6+. - -URL: https://bugs.busybox.net/show_bug.cgi?id=5258 -Reported-by: David Laight <david.laight@aculab.com> -Signed-off-by: Mike Frysinger <vapier@gentoo.org> -(cherry picked from commit 52fa45da0f86651b70608a58914f3aece7fdfed5) ---- - libc/sysdeps/linux/common/pread_write.c | 10 ++++++++++ - libc/sysdeps/linux/powerpc/pread_write.c | 13 +++++++++++++ - libc/sysdeps/linux/xtensa/pread_write.c | 14 ++++++++++++++ - 3 files changed, 37 insertions(+) - -diff --git a/libc/sysdeps/linux/common/pread_write.c b/libc/sysdeps/linux/common/pread_write.c -index 88e6957..089ee93 100644 ---- a/libc/sysdeps/linux/common/pread_write.c -+++ b/libc/sysdeps/linux/common/pread_write.c -@@ -25,6 +25,11 @@ extern __typeof(pread64) __libc_pread64; - extern __typeof(pwrite64) __libc_pwrite64; - #endif - -+#ifdef __NR_pread64 /* Newer kernels renamed but it's the same. */ -+# undef __NR_pread -+# define __NR_pread __NR_pread64 -+#endif -+ - #include <bits/kernel_types.h> - - #ifdef __NR_pread -@@ -51,6 +56,11 @@ weak_alias(__libc_pread64,pread64) - - #endif /* __NR_pread */ - -+#ifdef __NR_pwrite64 /* Newer kernels renamed but it's the same. */ -+# undef __NR_pwrite -+# define __NR_pwrite __NR_pwrite64 -+#endif -+ - #ifdef __NR_pwrite - - # define __NR___syscall_pwrite __NR_pwrite -diff --git a/libc/sysdeps/linux/powerpc/pread_write.c b/libc/sysdeps/linux/powerpc/pread_write.c -index 7f988d3..23f256f 100644 ---- a/libc/sysdeps/linux/powerpc/pread_write.c -+++ b/libc/sysdeps/linux/powerpc/pread_write.c -@@ -20,6 +20,13 @@ - # define off64_t off_t - #endif - -+#ifdef __NR_pread64 /* Newer kernels renamed but it's the same. */ -+# ifdef __NR_pread -+# error "__NR_pread and __NR_pread64 both defined???" -+# endif -+# define __NR_pread __NR_pread64 -+#endif -+ - #ifdef __NR_pread - extern __typeof(pread) __libc_pread; - # define __NR___syscall_pread __NR_pread -@@ -42,6 +49,12 @@ weak_alias(__libc_pread64,pread64) - # endif /* __UCLIBC_HAS_LFS__ */ - #endif /* __NR_pread */ - -+#ifdef __NR_pwrite64 /* Newer kernels renamed but it's the same. */ -+# ifdef __NR_pwrite -+# error "__NR_pwrite and __NR_pwrite64 both defined???" -+# endif -+# define __NR_pwrite __NR_pwrite64 -+#endif - - #ifdef __NR_pwrite - extern __typeof(pwrite) __libc_pwrite; -diff --git a/libc/sysdeps/linux/xtensa/pread_write.c b/libc/sysdeps/linux/xtensa/pread_write.c -index 71ba22b..bcf7dee 100644 ---- a/libc/sysdeps/linux/xtensa/pread_write.c -+++ b/libc/sysdeps/linux/xtensa/pread_write.c -@@ -27,6 +27,13 @@ extern __typeof(pwrite64) __libc_pwrite64; - - #include <bits/kernel_types.h> - -+#ifdef __NR_pread64 /* Newer kernels renamed but it's the same. */ -+# ifdef __NR_pread -+# error "__NR_pread and __NR_pread64 both defined???" -+# endif -+# define __NR_pread __NR_pread64 -+#endif -+ - #ifdef __NR_pread - - # define __NR___syscall_pread __NR_pread -@@ -52,6 +59,13 @@ weak_alias(__libc_pread64,pread64) - - #endif /* __NR_pread */ - -+#ifdef __NR_pwrite64 /* Newer kernels renamed but it's the same. */ -+# ifdef __NR_pwrite -+# error "__NR_pwrite and __NR_pwrite64 both defined???" -+# endif -+# define __NR_pwrite __NR_pwrite64 -+#endif -+ - #ifdef __NR_pwrite - - # define __NR___syscall_pwrite __NR_pwrite --- -1.7.11.1 - |