blob: 7c5539efe1b3ff9473f2528e6c6c64e07b4972e7 (
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
40
41
42
43
44
45
46
47
|
--- busybox-1.15.2.orig/include/platform.h Sat Sep 26 15:14:33 2009
+++ busybox-1.15.2/include/platform.h Sat Dec 19 12:53:00 2009
@@ -7,6 +7,8 @@
#ifndef BB_PLATFORM_H
#define BB_PLATFORM_H 1
+#include <sys/param.h>
+
/* Convenience macros to test the version of gcc. */
#undef __GNUC_PREREQ
#if defined __GNUC__ && defined __GNUC_MINOR__
@@ -133,7 +135,7 @@ char *strchrnul(const char *s, int c);
# define bswap_32 __bswap32
# define bswap_16 __bswap16
# define __BIG_ENDIAN__ (_BYTE_ORDER == _BIG_ENDIAN)
-#elif !defined __APPLE__
+#elif !(defined __APPLE__ || defined BSD)
# include <byteswap.h>
# include <endian.h>
#endif
@@ -190,7 +192,7 @@ char *strchrnul(const char *s, int c);
/* ---- Networking ------------------------------------------ */
-#ifndef __APPLE__
+#if !(defined __APPLE__ || defined BSD)
# include <arpa/inet.h>
# if !defined(__socklen_t_defined) && !defined(_SOCKLEN_T_DECLARED)
typedef int socklen_t;
@@ -202,7 +204,7 @@ typedef int socklen_t;
/* ---- Compiler dependent settings ------------------------- */
#if (defined __digital__ && defined __unix__) \
- || defined __APPLE__ || defined __FreeBSD__
+ || defined __APPLE__ || defined __FreeBSD__ || defined BSD
# undef HAVE_MNTENT_H
# undef HAVE_SYS_STATFS_H
#else
@@ -231,7 +233,7 @@ typedef int socklen_t;
# define HAVE_FEATURES_H
# include <stdint.h>
# define HAVE_STDINT_H
-#elif !defined __APPLE__
+#elif !(defined __APPLE__ || defined BSD)
/* Largest integral types. */
# if BB_BIG_ENDIAN
/* Looks BROKEN! */
|