The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / webkit / 0006-execinfo_h.patch
1 Fixes uclibc build as uclibc does not include backtrace functionality
2
3 Signed-of-by: Spenser Gilliland <spenser@gillilanding.com>
4 Signed-of-by: Markos Chandras <markos.chandras@imgtec.com>
5
6 Index: webkit-1.11.5/Source/WTF/wtf/Assertions.cpp
7 ===================================================================
8 --- webkit-1.11.5.orig/Source/WTF/wtf/Assertions.cpp
9 +++ webkit-1.11.5/Source/WTF/wtf/Assertions.cpp
10 @@ -61,8 +61,10 @@
11  #if (OS(DARWIN) || (OS(LINUX) && !defined(__UCLIBC__))) && !OS(ANDROID)
12  #include <cxxabi.h>
13  #include <dlfcn.h>
14 +#if !defined(__UCLIBC__)
15  #include <execinfo.h>
16  #endif
17 +#endif
18  
19  #if OS(ANDROID)
20  #include "android/log.h"