From aad0c53aa2fb77c9c37ed92ab3af842b569f55e8 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 24 Oct 2001 00:42:44 +0000 Subject: [PATCH] Accomodate older glibc's which also do not have the module syscalls. --- busybox/libbb/module_syscalls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/busybox/libbb/module_syscalls.c b/busybox/libbb/module_syscalls.c index 36b75fb93..8326f15ad 100644 --- a/busybox/libbb/module_syscalls.c +++ b/busybox/libbb/module_syscalls.c @@ -34,7 +34,7 @@ #include "libbb.h" -#if __GNU_LIBRARY__ < 5 +#if __GNU_LIBRARY__ < 5 || ((__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)) /* These syscalls are not included as part of libc5 */ _syscall1(int, delete_module, const char *, name); _syscall1(int, get_kernel_syms, __ptr_t, ks);