diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-06-08 11:21:37 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-06-08 11:21:37 +0000 |
commit | c1927d2109af1fa5f9c2dd17d70ad17c6d2a8ef1 (patch) | |
tree | df129c518f49db69cdd74348bdf6eac820f6e27b /package/devel/valgrind/patches | |
parent | ad97acf46addba0164d25a11a0f907f9ea8c5fcf (diff) | |
download | upstream-c1927d2109af1fa5f9c2dd17d70ad17c6d2a8ef1.tar.gz upstream-c1927d2109af1fa5f9c2dd17d70ad17c6d2a8ef1.tar.bz2 upstream-c1927d2109af1fa5f9c2dd17d70ad17c6d2a8ef1.zip |
valgrind: avoid including linux/ptrace.h to fix a musl build error
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 41054
Diffstat (limited to 'package/devel/valgrind/patches')
-rw-r--r-- | package/devel/valgrind/patches/120-no_linux_ptrace_h.patch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/package/devel/valgrind/patches/120-no_linux_ptrace_h.patch b/package/devel/valgrind/patches/120-no_linux_ptrace_h.patch new file mode 100644 index 0000000000..f159876dbc --- /dev/null +++ b/package/devel/valgrind/patches/120-no_linux_ptrace_h.patch @@ -0,0 +1,10 @@ +--- a/coregrind/vgdb.c ++++ b/coregrind/vgdb.c +@@ -102,7 +102,6 @@ I_die_here : (PTRACEINVOKER) architectur + #include <sys/user.h> + #if defined(VGO_linux) + # include <sys/prctl.h> +-# include <linux/ptrace.h> + #endif + #endif + |