aboutsummaryrefslogtreecommitdiffstats
path: root/tools/mklibs
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-04-16 15:11:32 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-04-16 15:11:32 +0000
commit1452c74daf06425706c98db6e3a0516364539290 (patch)
treedb789190001433de00468ea0869e83f0f44b7ee1 /tools/mklibs
parentadcde9f983c72fc7d5b7aa1035bdf5bac706c6ac (diff)
downloadmaster-187ad058-1452c74daf06425706c98db6e3a0516364539290.tar.gz
master-187ad058-1452c74daf06425706c98db6e3a0516364539290.tar.bz2
master-187ad058-1452c74daf06425706c98db6e3a0516364539290.zip
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 0000000000..c237812688
--- /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;
+