From af9e70b8cba23b17c554533c3cdab0b66e7015e8 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 12 Mar 2013 11:14:24 -0400 Subject: readlink: uClibc supports automatic allocation too now Signed-off-by: Mike Frysinger --- libbb/xreadlink.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libbb/xreadlink.c') diff --git a/libbb/xreadlink.c b/libbb/xreadlink.c index ec95af222..0bdf394da 100644 --- a/libbb/xreadlink.c +++ b/libbb/xreadlink.c @@ -102,7 +102,8 @@ char* FAST_FUNC xmalloc_readlink_or_warn(const char *path) char* FAST_FUNC xmalloc_realpath(const char *path) { -#if defined(__GLIBC__) && !defined(__UCLIBC__) +#if defined(__GLIBC__) || \ + (defined(__UCLIBC__) && UCLIBC_VERSION >= KERNEL_VERSION(0, 9, 31)) /* glibc provides a non-standard extension */ /* new: POSIX.1-2008 specifies this behavior as well */ return realpath(path, NULL); -- cgit v1.2.3