diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-08-26 00:07:20 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-08-26 00:07:20 +0000 |
commit | 5596ed6decdf35b6423950461a44d8117159c86b (patch) | |
tree | 98088a98607f888ee7c7ceb9dba6a72d65ffd3a9 /dev-libs | |
parent | should not have added ~ppc64 ~amd64 (Manifest recommit) (diff) | |
download | gentoo-2-5596ed6decdf35b6423950461a44d8117159c86b.tar.gz gentoo-2-5596ed6decdf35b6423950461a44d8117159c86b.tar.bz2 gentoo-2-5596ed6decdf35b6423950461a44d8117159c86b.zip |
patches made it into upstream
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/uclibc/files/cvs/07_all_uClibc-owl-erik-malloc-unlink-sanity-check.patch | 19 | ||||
-rw-r--r-- | dev-libs/uclibc/files/cvs/30_all_uClibc-arm-ucontext.patch | 10 |
2 files changed, 0 insertions, 29 deletions
diff --git a/dev-libs/uclibc/files/cvs/07_all_uClibc-owl-erik-malloc-unlink-sanity-check.patch b/dev-libs/uclibc/files/cvs/07_all_uClibc-owl-erik-malloc-unlink-sanity-check.patch deleted file mode 100644 index c18f946c4c24..000000000000 --- a/dev-libs/uclibc/files/cvs/07_all_uClibc-owl-erik-malloc-unlink-sanity-check.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- libc/stdlib/malloc-standard/malloc.h.mps Sat Jan 31 11:26:14 2004 -+++ libc/stdlib/malloc-standard/malloc.h Sat Jan 31 11:28:29 2004 -@@ -20,6 +20,7 @@ - #include <errno.h> - #include <string.h> - #include <malloc.h> -+#include <stdlib.h> - - - #ifdef __UCLIBC_HAS_THREADS__ -@@ -636,6 +637,8 @@ - #define unlink(P, BK, FD) { \ - FD = P->fd; \ - BK = P->bk; \ -+ if (FD->bk != P || BK->fd != P) \ -+ abort(); \ - FD->bk = BK; \ - BK->fd = FD; \ - } diff --git a/dev-libs/uclibc/files/cvs/30_all_uClibc-arm-ucontext.patch b/dev-libs/uclibc/files/cvs/30_all_uClibc-arm-ucontext.patch deleted file mode 100644 index 78b8d4cc04e4..000000000000 --- a/dev-libs/uclibc/files/cvs/30_all_uClibc-arm-ucontext.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- libc/sysdeps/linux/arm/sys/ucontext.h.orig 2004-08-06 12:08:48.234295048 -0400 -+++ libc/sysdeps/linux/arm/sys/ucontext.h 2004-08-06 12:09:11.123815312 -0400 -@@ -24,6 +24,7 @@ - #include <features.h> - #include <signal.h> - #include <sys/procfs.h> -+#include <bits/sigcontext.h> - - typedef int greg_t; - |