From 9690e108903a90a5637ef38fd8f2e57b4f956bf0 Mon Sep 17 00:00:00 2001 From: Daniel Mierswa Date: Mon, 17 Aug 2009 07:43:10 +0200 Subject: [PATCH] libblkid: allow linking with uClibc uClibc uses lseek64 as llseek, so use it. Signed-off-by: Daniel Mierswa --- shlibs/blkid/src/llseek.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shlibs/blkid/src/llseek.c b/shlibs/blkid/src/llseek.c index 5bd0e516..75b7d249 100644 --- a/shlibs/blkid/src/llseek.c +++ b/shlibs/blkid/src/llseek.c @@ -30,7 +30,7 @@ #ifdef __linux__ -#if defined(HAVE_LSEEK64) && defined(HAVE_LSEEK64_PROTOTYPE) +#if defined(HAVE_LSEEK64) && defined(HAVE_LSEEK64_PROTOTYPE) || defined(__UCLIBC__) #define my_llseek lseek64 -- 2.39.5