blob: 1ee7ea7411203938b0fa9f7541fd6bd224c4c8ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
Index: busybox-1.7.2/include/platform.h
===================================================================
--- busybox-1.7.2.orig/include/platform.h 2007-10-30 15:34:59.000000000 -0500
+++ busybox-1.7.2/include/platform.h 2007-10-30 15:35:04.000000000 -0500
@@ -137,9 +137,11 @@
# include <netinet/in.h>
#endif
+#ifndef __APPLE__
#ifndef __socklen_t_defined
typedef int socklen_t;
#endif
+#endif
/* ---- Compiler dependent settings ------------------------- */
#if (defined __digital__ && defined __unix__)
@@ -179,7 +181,7 @@
#define HAVE_STDINT_H
#else
/* Largest integral types. */
-#if __BIG_ENDIAN__
+#if __BIG_ENDIAN__ && !__APPLE__
typedef long intmax_t;
typedef unsigned long uintmax_t;
#else
Index: busybox-1.7.2/include/libbb.h
===================================================================
--- busybox-1.7.2.orig/include/libbb.h 2007-10-30 15:34:59.000000000 -0500
+++ busybox-1.7.2/include/libbb.h 2007-10-30 15:35:04.000000000 -0500
@@ -31,7 +31,9 @@
#include <sys/mman.h>
#include <sys/socket.h>
#include <sys/stat.h>
+#ifndef __APPLE__
#include <sys/statfs.h>
+#endif
#include <sys/time.h>
#include <sys/types.h>
#include <sys/wait.h>
|