From a88cb5025c3ffd9dc4e7bde58aa58b63afcf65bd Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Sat, 8 Feb 2003 23:36:16 +0000 Subject: [PATCH] Patch from mathuria, compatability with solaris --- coreutils/chown.c | 2 +- include/busybox.h | 2 ++ include/libbb.h | 3 +++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/coreutils/chown.c b/coreutils/chown.c index 846e27c20..4e766a90b 100644 --- a/coreutils/chown.c +++ b/coreutils/chown.c @@ -35,7 +35,7 @@ static long uid; static long gid; -static int (*chown_func)(const char *, __uid_t, __gid_t) = chown; +static int (*chown_func)(const char *, uid_t, gid_t) = chown; static int fileAction(const char *fileName, struct stat *statbuf, void* junk) { diff --git a/include/busybox.h b/include/busybox.h index 1b69ef955..8285494ef 100644 --- a/include/busybox.h +++ b/include/busybox.h @@ -95,7 +95,9 @@ extern const struct BB_applet applets[]; /* Bit map related macros -- libc5 doens't provide these... sigh. */ #ifndef setbit +#ifndef NBBY #define NBBY CHAR_BIT +#endif #define setbit(a,i) ((a)[(i)/NBBY] |= 1<<((i)%NBBY)) #define clrbit(a,i) ((a)[(i)/NBBY] &= ~(1<<((i)%NBBY))) #define isset(a,i) ((a)[(i)/NBBY] & (1<<((i)%NBBY))) diff --git a/include/libbb.h b/include/libbb.h index 42e89a5e9..c057ce493 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -55,7 +55,10 @@ #if (__GNU_LIBRARY__ < 5) && (!defined __dietlibc__) /* libc5 doesn't define socklen_t */ +#ifndef _SOCKLEN_T +#define _SOCKLEN_T typedef unsigned int socklen_t; +#endif /* libc5 doesn't implement BSD 4.4 daemon() */ extern int daemon (int nochdir, int noclose); /* libc5 doesn't implement strtok_r */ -- 2.25.1