it seems uclibc at least 0.9.28 I am using define __GLIBC__ so that the check in xmalloc_realpath
#if defined(__GLIBC__) || \
    (defined(__UCLIBC__) && UCLIBC_VERSION >= KERNEL_VERSION(0, 9, 31))

is always true on uclibc; it should be changed to something like
#if ((defined(__UCLIBC__) && UCLIBC_VERSION >= KERNEL_VERSION(0, 9, 31)) || \
     (defined(__GLIBC__) && !defined(__UCLIBC__)))

thanks.

-- alfie
_______________________________________________
busybox mailing list
[email protected]
http://lists.busybox.net/mailman/listinfo/busybox

Reply via email to