1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- --- 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! */
|