aboutsummaryrefslogtreecommitdiffstats
path: root/main/busybox/glibc.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/busybox/glibc.patch')
-rw-r--r--main/busybox/glibc.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/main/busybox/glibc.patch b/main/busybox/glibc.patch
new file mode 100644
index 0000000000..52c9efba1f
--- /dev/null
+++ b/main/busybox/glibc.patch
@@ -0,0 +1,20 @@
+Fix this by including sys/resource.h.
+
+Signed-off-by: Markus Trippelsdorf <markus at trippelsdorf.de>
+---
+ include/libbb.h | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/include/libbb.h b/include/libbb.h
+index f12800f..e7806c2 100644
+--- a/include/libbb.h
++++ b/include/libbb.h
+@@ -40,6 +40,7 @@
+ #include <sys/poll.h>
+ #include <sys/ioctl.h>
+ #include <sys/mman.h>
++#include <sys/resource.h>
+ #include <sys/socket.h>
+ #include <sys/stat.h>
+ #include <sys/time.h>
+--