2007-10-05 03:27:49 +03:00
|
|
|
Index: busybox-1.7.2/include/platform.h
|
2007-06-04 14:25:53 +03:00
|
|
|
===================================================================
|
2007-10-30 22:36:25 +02:00
|
|
|
--- 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
|
2007-10-05 03:27:49 +03:00
|
|
|
@@ -137,9 +137,11 @@
|
2007-01-05 17:27:24 +02:00
|
|
|
# include <netinet/in.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
+#ifndef __APPLE__
|
|
|
|
#ifndef __socklen_t_defined
|
|
|
|
typedef int socklen_t;
|
|
|
|
#endif
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
/* ---- Compiler dependent settings ------------------------- */
|
2007-06-04 14:25:53 +03:00
|
|
|
#if (defined __digital__ && defined __unix__)
|
2007-10-05 03:27:49 +03:00
|
|
|
@@ -179,7 +181,7 @@
|
2007-01-05 17:27:24 +02:00
|
|
|
#define HAVE_STDINT_H
|
|
|
|
#else
|
|
|
|
/* Largest integral types. */
|
|
|
|
-#if __BIG_ENDIAN__
|
|
|
|
+#if __BIG_ENDIAN__ && !__APPLE__
|
2007-10-05 03:27:49 +03:00
|
|
|
typedef long intmax_t;
|
|
|
|
typedef unsigned long uintmax_t;
|
2007-01-05 17:27:24 +02:00
|
|
|
#else
|
2007-10-05 03:27:49 +03:00
|
|
|
Index: busybox-1.7.2/include/libbb.h
|
2007-06-04 14:25:53 +03:00
|
|
|
===================================================================
|
2007-10-30 22:36:25 +02:00
|
|
|
--- 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
|
2007-10-05 03:27:49 +03:00
|
|
|
@@ -31,7 +31,9 @@
|
2007-01-05 17:27:24 +02:00
|
|
|
#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>
|