summaryrefslogtreecommitdiff
path: root/patches/glibc/ports-2.9
diff options
context:
space:
mode:
authorKirill K. Smirnov <kirill.k.smirnov@gmail.com>2016-09-14 22:02:54 (GMT)
committerKirill K. Smirnov <kirill.k.smirnov@gmail.com>2016-09-14 22:02:54 (GMT)
commit429b3e884662a3b9a72890aae23865501e66330f (patch)
tree5a307ec5f96e94a8212ce81ab8cce508951bbf36 /patches/glibc/ports-2.9
parent1d28793575d43d908b665fa6665d1b90b37f0af0 (diff)
patches: remove obsolete glibc patches
Glibc prior to 2.18, linuxthreads and ports are not supported. Signed-off-by: Kirill K. Smirnov <kirill.k.smirnov@gmail.com>
Diffstat (limited to 'patches/glibc/ports-2.9')
-rw-r--r--patches/glibc/ports-2.9/100-arm_linux_tls.patch14
-rw-r--r--patches/glibc/ports-2.9/110-arm-fix-sjlj-for-fpu.patch30
2 files changed, 0 insertions, 44 deletions
diff --git a/patches/glibc/ports-2.9/100-arm_linux_tls.patch b/patches/glibc/ports-2.9/100-arm_linux_tls.patch
deleted file mode 100644
index 7b9d4ac..0000000
--- a/patches/glibc/ports-2.9/100-arm_linux_tls.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Original patch from http://www.nabble.com/arm-linux-compilation-failure-and-possible-fix-td19229074.html
-
-diff -durN glibc-2.9.orig/ports/sysdeps/unix/sysv/linux/arm/sysdep.h glibc-2.9/ports/sysdeps/unix/sysv/linux/arm/sysdep.h
---- glibc-2.9.orig/ports/sysdeps/unix/sysv/linux/arm/sysdep.h 25 Nov 2008 16:37:26 -0000 1.33
-+++ glibc-2.9/ports/sysdeps/unix/sysv/linux/arm/sysdep.h 27 Jan 2009 15:35:38 -0000
-@@ -28,6 +28,8 @@
- /* Defines RTLD_PRIVATE_ERRNO and USE_DL_SYSINFO. */
- #include <dl-sysdep.h>
-
-+#include <tls.h>
-+
- /* For Linux we can use the system call table in the header file
- /usr/include/asm/unistd.h
- of the kernel. But these symbols do not follow the SYS_* syntax
diff --git a/patches/glibc/ports-2.9/110-arm-fix-sjlj-for-fpu.patch b/patches/glibc/ports-2.9/110-arm-fix-sjlj-for-fpu.patch
deleted file mode 100644
index 0f7c1f6..0000000
--- a/patches/glibc/ports-2.9/110-arm-fix-sjlj-for-fpu.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From: Mike Frysinger <vapier at gentoo dot org>
-To: libc-ports at sourceware dot org
-Subject: [PATCH] arm/fpu/setjmp.S: add missing hidden def
-Date: Thu, 25 Dec 2008 23:08:56 -0500
-
-All the other arm setjmp.S files provide a hidden alias for __sigsetjmp.
-Without this, we get a nice build failure like so:
-
-/var/tmp/cross/armv4l-unknown-linux-gnu/portage/cross-armv4l-unknown-linux-gnu/glibc-2.9_p20081201/work/build-default-armv4l-unknown-linux-gnu-nptl/libc_pic.os: In function `setjmp':
-unwind-pe.c:(.text+0x15a54): undefined reference to `__GI___sigsetjmp'
-/var/tmp/cross/armv4l-unknown-linux-gnu/portage/cross-armv4l-unknown-linux-gnu/glibc-2.9_p20081201/work/build-default-armv4l-unknown-linux-gnu-nptl/libc_pic.os: In function `__GI__setjmp':
-unwind-pe.c:(.text+0x15a64): undefined reference to `__GI___sigsetjmp'
-collect2: ld returned 1 exit status
-make[1]: *** [/var/tmp/cross/armv4l-unknown-linux-gnu/portage/cross-armv4l-unknown-linux-gnu/glibc-2.9_p20081201/work/build-default-armv4l-unknown-linux-gnu-nptl/libc.so] Error 1
-
-Signed-off-by: Mike Frysinger <vapier@gentoo.org>
----
- sysdeps/arm/fpu/setjmp.S | 2 ++
- 1 files changed, 2 insertions(+), 0 deletions(-)
-
-diff --git a/sysdeps/arm/fpu/setjmp.S b/sysdeps/arm/fpu/setjmp.S
-index 8432836..82a7e19 100644
---- a/ports/sysdeps/arm/fpu/setjmp.S
-+++ b/ports/sysdeps/arm/fpu/setjmp.S
-@@ -33,3 +33,5 @@ ENTRY (__sigsetjmp)
- /* Make a tail call to __sigjmp_save; it takes the same args. */
- B PLTJMP(C_SYMBOL_NAME(__sigjmp_save))
- END (__sigsetjmp)
-+
-+hidden_def (__sigsetjmp)