summaryrefslogtreecommitdiffstats
path: root/package/utils/busybox
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2015-02-05 23:32:17 +0000
committerJo-Philipp Wich <jow@openwrt.org>2015-02-05 23:32:17 +0000
commit5f65074523fa53a2599a868269a20f5971bc7797 (patch)
tree78cefad9396f50f5a30742fdf90c1ea608164c68 /package/utils/busybox
parent8f7ce3aa6ddaa94eb1fa1fca47f1f6b34b839412 (diff)
downloadmaster-31e0f0ae-5f65074523fa53a2599a868269a20f5971bc7797.tar.gz
master-31e0f0ae-5f65074523fa53a2599a868269a20f5971bc7797.tar.bz2
master-31e0f0ae-5f65074523fa53a2599a868269a20f5971bc7797.zip
busybox: fix build on FreeBSD 10.1
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 44284
Diffstat (limited to 'package/utils/busybox')
-rw-r--r--package/utils/busybox/patches/102-freebsd-compat.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/package/utils/busybox/patches/102-freebsd-compat.patch b/package/utils/busybox/patches/102-freebsd-compat.patch
new file mode 100644
index 0000000000..26d1ec6f71
--- /dev/null
+++ b/package/utils/busybox/patches/102-freebsd-compat.patch
@@ -0,0 +1,26 @@
+--- a/scripts/basic/docproc.c
++++ b/scripts/basic/docproc.c
+@@ -39,7 +39,10 @@
+ #include <limits.h>
+ #include <sys/types.h>
+ #include <sys/wait.h>
++
++#ifndef __FreeBSD__
+ #include <alloca.h>
++#endif
+
+ /* exitstatus is used to keep track of any failing calls to kernel-doc,
+ * but execution continues. */
+--- a/scripts/basic/fixdep.c
++++ b/scripts/basic/fixdep.c
+@@ -113,7 +113,10 @@
+ #include <limits.h>
+ #include <ctype.h>
+ #include <arpa/inet.h>
++
++#ifndef __FreeBSD__
+ #include <alloca.h>
++#endif
+
+ /* bbox: not needed
+ #define INT_CONF ntohl(0x434f4e46)