diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-09-13 15:57:59 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2012-09-13 15:57:59 +0000 |
commit | f6d27b20a643e017e9c633e3679e105fd88e6bfe (patch) | |
tree | d0904a1ad0efd86deb9cdda352f8f292a07a449e /package/busybox | |
parent | ba55741959b19fb4ee63cbcba9182fbd520447fb (diff) | |
download | upstream-f6d27b20a643e017e9c633e3679e105fd88e6bfe.tar.gz upstream-f6d27b20a643e017e9c633e3679e105fd88e6bfe.tar.bz2 upstream-f6d27b20a643e017e9c633e3679e105fd88e6bfe.zip |
[package] busybox: fix build with recent eglibc toolchains
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33395 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox')
-rw-r--r-- | package/busybox/patches/005-resource_h_include.patch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/package/busybox/patches/005-resource_h_include.patch b/package/busybox/patches/005-resource_h_include.patch new file mode 100644 index 0000000000..d66d66d67e --- /dev/null +++ b/package/busybox/patches/005-resource_h_include.patch @@ -0,0 +1,10 @@ +--- a/include/libbb.h ++++ b/include/libbb.h +@@ -35,6 +35,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> |