aboutsummaryrefslogtreecommitdiffstats
path: root/package/busybox/patches/401-darwin_includes.patch
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2008-08-20 14:00:34 +0000
committerImre Kaloz <kaloz@openwrt.org>2008-08-20 14:00:34 +0000
commit088d86511f9e407a27a62e16af60ced1fb05944f (patch)
treee2bbc127a4a059392f3c5bea27e2944e0c149ecb /package/busybox/patches/401-darwin_includes.patch
parent57db10667068d52282c008a820e50d930c99d3fa (diff)
downloadupstream-088d86511f9e407a27a62e16af60ced1fb05944f.tar.gz
upstream-088d86511f9e407a27a62e16af60ced1fb05944f.tar.bz2
upstream-088d86511f9e407a27a62e16af60ced1fb05944f.zip
upgrade busybox to v1.11.1 and add current upstream fixes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12348 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox/patches/401-darwin_includes.patch')
-rw-r--r--package/busybox/patches/401-darwin_includes.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/package/busybox/patches/401-darwin_includes.patch b/package/busybox/patches/401-darwin_includes.patch
index 1ee7ea7411..e69de29bb2 100644
--- a/package/busybox/patches/401-darwin_includes.patch
+++ b/package/busybox/patches/401-darwin_includes.patch
@@ -1,39 +0,0 @@
-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>