From 9412ec755543a1ddd5f4b39e1fe5a5dd319fa06c Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 7 Feb 2008 22:41:33 +0000 Subject: some more fixes for cross-compiling on an OS X host: apple provides core types so dont redefine them, sys/statfs.h is not available, and only use some newer AF_* defines if they are actually available --- include/libbb.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'include/libbb.h') diff --git a/include/libbb.h b/include/libbb.h index ccfe1b705..3ef03d6c9 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -30,7 +30,6 @@ #include #include #include -#include #include #include #include @@ -49,6 +48,10 @@ #include #endif +#ifdef HAVE_SYS_STATFS_H +#include +#endif + #if ENABLE_SELINUX #include #include @@ -311,8 +314,12 @@ struct BUG_too_small { | AF_INET | AF_INET6 | AF_UNIX +#ifdef AF_PACKET | AF_PACKET +#endif +#ifdef AF_NETLINK | AF_NETLINK +#endif /* | AF_DECnet */ /* | AF_IPX */ ) <= 127 ? 1 : -1]; @@ -807,8 +814,10 @@ extern void run_applet_and_exit(const char *name, char **argv); extern void run_applet_no_and_exit(int a, char **argv) ATTRIBUTE_NORETURN; #endif +#ifdef HAVE_MNTENT_H extern int match_fstype(const struct mntent *mt, const char *fstypes); extern struct mntent *find_mount_point(const char *name, const char *table); +#endif extern void erase_mtab(const char * name); extern unsigned int tty_baud_to_value(speed_t speed); extern speed_t tty_value_to_baud(unsigned int value); -- cgit v1.2.3