summaryrefslogtreecommitdiffstats
path: root/tools/mklibs
diff options
context:
space:
mode:
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-04-16 15:11:32 +0000
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-04-16 15:11:32 +0000
commitf580ce76b0868c1604b0a17529f7360801231173 (patch)
treedb789190001433de00468ea0869e83f0f44b7ee1 /tools/mklibs
parente07815ad4125d7bf9363c7470dd75b022ad62dc5 (diff)
tools/mklibs: add missing <unistd.h> in readelf/elf.cpp
Fixes compile on my Arch Linux system, as unistd.h is needed for ::close(). Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31315 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/mklibs')
-rw-r--r--tools/mklibs/patches/011-missing_unistd.patch10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/mklibs/patches/011-missing_unistd.patch b/tools/mklibs/patches/011-missing_unistd.patch
new file mode 100644
index 000000000..c23781268
--- /dev/null
+++ b/tools/mklibs/patches/011-missing_unistd.patch
@@ -0,0 +1,10 @@
+--- a/src/mklibs-readelf/elf.cpp
++++ b/src/mklibs-readelf/elf.cpp
+@@ -25,6 +25,7 @@
+ #include <fcntl.h>
+ #include <sys/mman.h>
+ #include <sys/stat.h>
++#include <unistd.h>
+
+ using namespace Elf;
+