changeset 1525:ec9a72351c38

Upgrade uClibc to next dot-release, which has a bugfix for the LFS build.
author Rob Landley <rob@landley.net>
date Sun, 20 May 2012 15:32:30 -0500
parents 60ef4cdee782
children e5b4e995a6f3
files download.sh sources/patches/uClibc-fixmmap64.patch
diffstat 2 files changed, 2 insertions(+), 25 deletions(-) [+]
line wrap: on
line diff
--- a/download.sh	Sat May 12 21:35:58 2012 -0500
+++ b/download.sh	Sun May 20 15:32:30 2012 -0500
@@ -21,8 +21,8 @@
 # Building a cross compile toolchain requires linux headers, uClibc,
 # binutils, and gcc.
 
-URL=http://uclibc.org/downloads/uClibc-0.9.33.1.tar.bz2 \
-SHA1=8360891d368726a8c6d9ac3e1431c73bb8e99b0b \
+URL=http://uclibc.org/downloads/uClibc-0.9.33.2.tar.bz2 \
+SHA1=4d8d67d6754409bd10015d67d1ce7a04c0b001ba \
 ALT=http://uclibc.org/downloads/uClibc-snapshot.tar.bz2 \
 maybe_fork "download || dienow"
 
--- a/sources/patches/uClibc-fixmmap64.patch	Sat May 12 21:35:58 2012 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-commit 7b736592c14d1e7ec0b2f035849d7cecf34d5f25
-Author: Mike Frysinger <vapier@gentoo.org>
-Date:   Wed Apr 11 16:01:29 2012 -0400
-
-    mmap64: include stdint.h for uint64_t
-    
-    Some targets include this implicitly, but pull it in explicitly for those
-    which don't to fix building for them.
-    
-    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-
-diff --git a/libc/sysdeps/linux/common/mmap64.c b/libc/sysdeps/linux/common/mmap64.c
-index 3c97c84..cebf961 100644
---- a/libc/sysdeps/linux/common/mmap64.c
-+++ b/libc/sysdeps/linux/common/mmap64.c
-@@ -10,6 +10,7 @@
- #ifdef __UCLIBC_HAS_LFS__
- 
- #include <errno.h>
-+#include <stdint.h>
- #include <unistd.h>
- #include <sys/mman.h>
- #include <sys/syscall.h>