diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2013-01-04 15:37:49 +0100 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2013-01-04 15:37:49 +0100 |
commit | 35134040e52d13a20847174c7e89943e34670f68 (patch) | |
tree | b4d7f1b7395545cb6926dffe7fac86550754ed7b /main/busybox/glibc.patch | |
parent | 7fbf2749915521199741fa15034a9d620b025200 (diff) | |
download | aports-35134040e52d13a20847174c7e89943e34670f68.tar.bz2 aports-35134040e52d13a20847174c7e89943e34670f68.tar.xz |
main/busybox: fix build on eglibc
Diffstat (limited to 'main/busybox/glibc.patch')
-rw-r--r-- | main/busybox/glibc.patch | 20 |
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> +-- |