Re: [PATCH] Drop GNU make 3.80 compatibility

2011-04-08 Thread Khem Raj
On Fri, 2011-04-01 at 14:24 -0700, Kevin Cernekee wrote: > On Fri, Apr 1, 2011 at 1:43 PM, Mike Frysinger wrote: > > On Fri, Apr 1, 2011 at 11:23 AM, Kevin Cernekee wrote: > >> The "$(and" operator requires GNU make 3.81. On 3.80 it is a no-op. > >> Consequently, strange build problems (failure t

add fallback to libm-test-ulps-generic logic in test/math/Makefile.in

2011-04-08 Thread Jian Peng
Under test/math/, there is libm-test-ulps-generic used as fallback in case that libm-test-ulps-$(TARGET_ARCH) does not exist. The fallback logic is missing in test/math/Makefile.in. Signed-off-by: Jian Peng --- test/math/Makefile.in |6 -- 1 files changed, 4 insertions(+), 2 deletions(-

missing libm-test-ulps-mips under test/math/

2011-04-08 Thread Jian Peng
Under test/math, libm-test-ulps-mips is missing or build for MIPS is broken Simply copy it from glibc-ports-2.9/sysdeps/mips/fpu/libm-test-ulps to fix this. The patch is attached. 0001-PATCH-v1-math-test-missing-libm-test-ulps-mips.patch Description: 0001-PATCH-v1-math-test-missing-libm-test-ul

patch to fix build issue in uClibc testsuite

2011-04-08 Thread Jian Peng
In test/Rules.mak, $(KERNEL_HEADERS) will be checked and used to generate $(KERNEL_INCLUDES) based on absolute or relative path. The problem is that this check assumes that $(KERNEL_HEADERS) is single word like /user/me/kernel/include, in case that it is "/user/me/kernel/include -I/user/me/kernel/

[PATCH] resolv: fix res_close not to hang with ipv6

2011-04-08 Thread Timo Teräs
The memory release loop is missing an obvious counter increment. Signed-off-by: Timo Teräs --- libc/inet/resolv.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libc/inet/resolv.c b/libc/inet/resolv.c index 47bab75..1e394d4 100644 --- a/libc/inet/resolv.c +++ b/libc/