diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2013-06-27 15:18:31 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-06-29 14:22:47 +0200 |
commit | a706c2734cf79aeaa84c3a2f08976651c4ad5554 (patch) | |
tree | 87e96e84fdc42431de7b9679ca34722dca545e92 /meta-efl | |
parent | d3ef2ca6b8b9349fb24ebdce41e928901746b23f (diff) | |
download | meta-openembedded-a706c2734cf79aeaa84c3a2f08976651c4ad5554.tar.gz |
webkit-efl: Update patch to fix undefined hasTagName reference
* some builds were still failing to link DumpRenderTree
and nm revealed that another possible source of this reference is
CSSStyleSheet:
./src/lib/libwebcore_efl.so
U _ZNK7WebCore4Node10hasTagNameERKNS_13QualifiedNameE
./src/Source/WebCore/CMakeFiles/webcore_efl.dir/css/CSSStyleSheet.cpp.o
U _ZNK7WebCore4Node10hasTagNameERKNS_13QualifiedNameE
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-efl')
-rw-r--r-- | meta-efl/recipes-efl/webkit/webkit-efl/0001-ewk-include-Element.h-for-hasTagName-function.patch | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/meta-efl/recipes-efl/webkit/webkit-efl/0001-ewk-include-Element.h-for-hasTagName-function.patch b/meta-efl/recipes-efl/webkit/webkit-efl/0001-ewk-include-Element.h-for-hasTagName-function.patch index f55366304..153097b0e 100644 --- a/meta-efl/recipes-efl/webkit/webkit-efl/0001-ewk-include-Element.h-for-hasTagName-function.patch +++ b/meta-efl/recipes-efl/webkit/webkit-efl/0001-ewk-include-Element.h-for-hasTagName-function.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 3de7c4633751c3e55152d4e2429dfcc0f69a1de3 Mon Sep 17 00:00:00 2001 | 1 | From a5a5eeb10b56ad1f98899a02281ea825e3cd1202 Mon Sep 17 00:00:00 2001 |
2 | From: Martin Jansa <Martin.Jansa@gmail.com> | 2 | From: Martin Jansa <Martin.Jansa@gmail.com> |
3 | Date: Sat, 1 Jun 2013 19:23:54 +0200 | 3 | Date: Sat, 1 Jun 2013 19:23:54 +0200 |
4 | Subject: [PATCH] ewk: include Element.h for hasTagName function | 4 | Subject: [PATCH] ewk: include Element.h for hasTagName function |
@@ -7,13 +7,28 @@ Subject: [PATCH] ewk: include Element.h for hasTagName function | |||
7 | | ../../../lib/libwebcore_efl.so.0.1.0: undefined reference to `WebCore::Node::hasTagName(WebCore::QualifiedName const&) const' | 7 | | ../../../lib/libwebcore_efl.so.0.1.0: undefined reference to `WebCore::Node::hasTagName(WebCore::QualifiedName const&) const' |
8 | | collect2: error: ld returned 1 exit status | 8 | | collect2: error: ld returned 1 exit status |
9 | | make[2]: *** [bin/DumpRenderTree] Error 1 | 9 | | make[2]: *** [bin/DumpRenderTree] Error 1 |
10 | * SDL port has similar issue: | ||
11 | https://bugs.webkit.org/show_bug.cgi?id=88536 | ||
10 | 12 | ||
11 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | 13 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> |
12 | --- | 14 | --- |
13 | Source/WebKit/efl/ewk/ewk_frame.cpp | 1 + | 15 | Source/WebCore/css/CSSStyleSheet.cpp | 1 + |
14 | Source/WebKit/efl/ewk/ewk_view.cpp | 1 + | 16 | Source/WebKit/efl/ewk/ewk_frame.cpp | 1 + |
15 | 2 files changed, 2 insertions(+) | 17 | Source/WebKit/efl/ewk/ewk_view.cpp | 1 + |
18 | 3 files changed, 3 insertions(+) | ||
16 | 19 | ||
20 | diff --git a/Source/WebCore/css/CSSStyleSheet.cpp b/Source/WebCore/css/CSSStyleSheet.cpp | ||
21 | index 00b2d91..1d03c2e 100644 | ||
22 | --- a/Source/WebCore/css/CSSStyleSheet.cpp | ||
23 | +++ b/Source/WebCore/css/CSSStyleSheet.cpp | ||
24 | @@ -29,6 +29,7 @@ | ||
25 | #include "CSSStyleRule.h" | ||
26 | #include "CachedCSSStyleSheet.h" | ||
27 | #include "Document.h" | ||
28 | +#include "Element.h" | ||
29 | #include "ExceptionCode.h" | ||
30 | #include "HTMLNames.h" | ||
31 | #include "MediaList.h" | ||
17 | diff --git a/Source/WebKit/efl/ewk/ewk_frame.cpp b/Source/WebKit/efl/ewk/ewk_frame.cpp | 32 | diff --git a/Source/WebKit/efl/ewk/ewk_frame.cpp b/Source/WebKit/efl/ewk/ewk_frame.cpp |
18 | index fd1ffd2..c86601a 100644 | 33 | index fd1ffd2..c86601a 100644 |
19 | --- a/Source/WebKit/efl/ewk/ewk_frame.cpp | 34 | --- a/Source/WebKit/efl/ewk/ewk_frame.cpp |