diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2010-03-12 23:14:59 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-03-12 23:14:59 +0100 |
commit | de859f6b2ac8660113e15aff6bc394a441dda60e (patch) | |
tree | 2087a5bb8b6dd6e9964f676261efd20a63b593ae /toolchain/uClibc/uClibc-0.9.30.1-fix-getaddrinfo.patch | |
parent | 12ebf5714c58cecdb19dbd9266ace5e9380562b0 (diff) | |
download | buildroot-novena-de859f6b2ac8660113e15aff6bc394a441dda60e.tar.gz buildroot-novena-de859f6b2ac8660113e15aff6bc394a441dda60e.zip |
toolchain: Add uClibc 0.9.30.3, remove older 0.9.30.x
As the 0.9.30.x stable releases only contain bugfixes, there isn't much
sense in using the older 0.9.30.x releases instead of .3, so use a single
0.9.30.x config similar to how we do it for the kernel headers.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'toolchain/uClibc/uClibc-0.9.30.1-fix-getaddrinfo.patch')
-rw-r--r-- | toolchain/uClibc/uClibc-0.9.30.1-fix-getaddrinfo.patch | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/toolchain/uClibc/uClibc-0.9.30.1-fix-getaddrinfo.patch b/toolchain/uClibc/uClibc-0.9.30.1-fix-getaddrinfo.patch deleted file mode 100644 index 449d33c5a..000000000 --- a/toolchain/uClibc/uClibc-0.9.30.1-fix-getaddrinfo.patch +++ /dev/null @@ -1,13 +0,0 @@ -[PATCH]: runp->ifa_addr can be NULL. Backport of r24336. -diff -Narup uClibc-0.9.30.1.orig/libc/inet/getaddrinfo.c uClibc-0.9.30.1/libc/inet/getaddrinfo.c ---- uClibc-0.9.30.1.orig/libc/inet/getaddrinfo.c 2009-02-26 21:49:14.000000000 +0900 -+++ uClibc-0.9.30.1/libc/inet/getaddrinfo.c 2009-03-06 00:59:23.000000000 +0900 -@@ -187,6 +187,8 @@ static unsigned __check_pf(void) - } - - for (runp = ifa; runp != NULL; runp = runp->ifa_next) { -+ if (runp->ifa_addr == NULL) -+ continue; - #if defined __UCLIBC_HAS_IPV4__ - if (runp->ifa_addr->sa_family == PF_INET) - seen |= SEEN_IPV4; |