1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-19 15:46:36 +03:00
openwrt-xburst/package/busybox/patches/401-darwin_includes.patch
nbd e8b81c92e7 Upgrade busybox to 1.7.2
- clean up insmod crap
- add some lineno/programname fixes for awx
- clean up awk getopt stuff
- remove unnecessary patches



git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9130 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-10-05 00:27:49 +00:00

40 lines
1.2 KiB
Diff

Index: busybox-1.7.2/include/platform.h
===================================================================
--- busybox-1.7.2.orig/include/platform.h 2007-09-03 13:48:46.000000000 +0200
+++ busybox-1.7.2/include/platform.h 2007-10-04 15:20:58.301274440 +0200
@@ -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-09-16 20:48:10.000000000 +0200
+++ busybox-1.7.2/include/libbb.h 2007-10-04 15:20:22.275221430 +0200
@@ -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>