aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2007-01-05 15:27:24 +0000
committerFlorian Fainelli <florian@openwrt.org>2007-01-05 15:27:24 +0000
commitd7178c3ebbdb350a3d715b24f773b842e83d6064 (patch)
tree47d218e75c1647dcfcba38f4f4a4c7ae6eb8593d
parent6a5ac24c3a9642b7ac411bcfcc83c638825cb15e (diff)
downloadupstream-d7178c3ebbdb350a3d715b24f773b842e83d6064.tar.gz
upstream-d7178c3ebbdb350a3d715b24f773b842e83d6064.tar.bz2
upstream-d7178c3ebbdb350a3d715b24f773b842e83d6064.zip
Add an OSX specific patch to compile busybox with Darwin, possible fix for BSDs as well
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5982 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--package/busybox/patches/401-darwin_includes.patch45
1 files changed, 45 insertions, 0 deletions
diff --git a/package/busybox/patches/401-darwin_includes.patch b/package/busybox/patches/401-darwin_includes.patch
new file mode 100644
index 0000000000..a5602d9518
--- /dev/null
+++ b/package/busybox/patches/401-darwin_includes.patch
@@ -0,0 +1,45 @@
+--- busybox-1.3.1/include/platform.h 2006-12-27 05:56:18.000000000 +0100
++++ busybox-1.3.1.new/include/platform.h 2007-01-02 18:28:25.000000000 +0100
+@@ -128,9 +128,11 @@
+ # include <netinet/in.h>
+ #endif
+
++#ifndef __APPLE__
+ #ifndef __socklen_t_defined
+ typedef int socklen_t;
+ #endif
++#endif
+
+ /* ---- Compiler dependent settings ------------------------- */
+ #ifndef __GNUC__
+@@ -168,7 +170,7 @@
+ #define HAVE_STDINT_H
+ #else
+ /* Largest integral types. */
+-#if __BIG_ENDIAN__
++#if __BIG_ENDIAN__ && !__APPLE__
+ typedef long int intmax_t;
+ typedef unsigned long int uintmax_t;
+ #else
+--- busybox-1.3.1/include/libbb.h 2006-12-27 05:56:18.000000000 +0100
++++ busybox-1.3.1.new/include/libbb.h 2007-01-02 18:29:13.000000000 +0100
+@@ -17,7 +17,9 @@
+ #include <errno.h>
+ #include <fcntl.h>
+ #include <inttypes.h>
++#ifndef __APPLE__
+ #include <malloc.h>
++#endif
+ #include <netdb.h>
+ #include <setjmp.h>
+ #include <signal.h>
+@@ -30,7 +32,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>