diff options
author | Arnout Vandecappelle <arnout@mind.be> | 2013-10-24 11:46:11 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-10-27 10:52:14 +0100 |
commit | 5bc39dcf41cca2faabba72f41540a653afc9c836 (patch) | |
tree | 5a5cb2bcfc27a04fafa7bb4e3e18eee9249df4ee /package/webkit/webkit-0006-execinfo_h.patch | |
parent | e12fab456540b5f378bd4a7ecbf0825df147c43e (diff) | |
download | buildroot-5bc39dcf41cca2faabba72f41540a653afc9c836.tar.gz buildroot-5bc39dcf41cca2faabba72f41540a653afc9c836.zip |
webkit: number the patches
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/webkit/webkit-0006-execinfo_h.patch')
-rw-r--r-- | package/webkit/webkit-0006-execinfo_h.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package/webkit/webkit-0006-execinfo_h.patch b/package/webkit/webkit-0006-execinfo_h.patch new file mode 100644 index 0000000000..f5508a1cb1 --- /dev/null +++ b/package/webkit/webkit-0006-execinfo_h.patch @@ -0,0 +1,20 @@ +Fixes uclibc build as uclibc does not include backtrace functionality + +Signed-of-by: Spenser Gilliland <spenser@gillilanding.com> +Signed-of-by: Markos Chandras <markos.chandras@imgtec.com> + +Index: webkit-1.11.5/Source/WTF/wtf/Assertions.cpp +=================================================================== +--- webkit-1.11.5.orig/Source/WTF/wtf/Assertions.cpp ++++ webkit-1.11.5/Source/WTF/wtf/Assertions.cpp +@@ -61,8 +61,10 @@ + #if (OS(DARWIN) || (OS(LINUX) && !defined(__UCLIBC__))) && !OS(ANDROID) + #include <cxxabi.h> + #include <dlfcn.h> ++#if !defined(__UCLIBC__) + #include <execinfo.h> + #endif ++#endif + + #if OS(ANDROID) + #include "android/log.h" |