From b2fd787922a62ebfd39468c971097cdf55e3ca42 Mon Sep 17 00:00:00 2001 From: andersen Date: Thu, 5 Apr 2001 22:38:32 +0000 Subject: Handle glibc 2.0.7 as well git-svn-id: svn://busybox.net/trunk/busybox@2264 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- libbb/syscalls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbb') diff --git a/libbb/syscalls.c b/libbb/syscalls.c index 4a846eb00..f183b26c3 100644 --- a/libbb/syscalls.c +++ b/libbb/syscalls.c @@ -71,7 +71,7 @@ int pivot_root(const char * new_root,const char * put_old) -#if __GNU_LIBRARY__ < 5 +#if __GNU_LIBRARY__ < 5 || ((__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)) /* These syscalls are not included as part of libc5 */ _syscall2(int, bdflush, int, func, int, data); -- cgit v1.2.3-55-g6feb