]> git.pld-linux.org Git - packages/ewebkit.git/blob - ewebkit-gcc.patch
- release .4
[packages/ewebkit.git] / ewebkit-gcc.patch
1 From a5a5eeb10b56ad1f98899a02281ea825e3cd1202 Mon Sep 17 00:00:00 2001
2 From: Martin Jansa <Martin.Jansa@gmail.com>
3 Date: Sat, 1 Jun 2013 19:23:54 +0200
4 Subject: [PATCH] ewk: include Element.h for hasTagName function
5
6 * ewebkit build fails like gtk in http://trac.webkit.org/changeset/72745
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
9   | make[2]: *** [bin/DumpRenderTree] Error 1
10 * SDL port has similar issue:
11   https://bugs.webkit.org/show_bug.cgi?id=88536
12
13 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
14 ---
15  Source/WebCore/css/CSSStyleSheet.cpp | 1 +
16  Source/WebKit/efl/ewk/ewk_frame.cpp  | 1 +
17  Source/WebKit/efl/ewk/ewk_view.cpp   | 1 +
18  3 files changed, 3 insertions(+)
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"
32 diff --git a/Source/WebKit/efl/ewk/ewk_frame.cpp b/Source/WebKit/efl/ewk/ewk_frame.cpp
33 index fd1ffd2..c86601a 100644
34 --- a/Source/WebKit/efl/ewk/ewk_frame.cpp
35 +++ b/Source/WebKit/efl/ewk/ewk_frame.cpp
36 @@ -32,6 +32,7 @@
37  #include "FocusController.h"
38  #include "FrameLoaderClientEfl.h"
39  #include "FrameView.h"
40 +#include "Element.h"
41  #include "HTMLCollection.h"
42  #include "HTMLHeadElement.h"
43  #include "HTMLImageElement.h"
44 diff --git a/Source/WebKit/efl/ewk/ewk_view.cpp b/Source/WebKit/efl/ewk/ewk_view.cpp
45 index 9798e94..7a5da60 100644
46 --- a/Source/WebKit/efl/ewk/ewk_view.cpp
47 +++ b/Source/WebKit/efl/ewk/ewk_view.cpp
48 @@ -36,6 +36,7 @@
49  #include "FocusController.h"
50  #include "FrameLoaderClientEfl.h"
51  #include "FrameView.h"
52 +#include "Element.h"
53  #include "GraphicsContext.h"
54  #include "HTMLElement.h"
55  #include "HTMLInputElement.h"
56 -- 
57 1.8.2.1
58
This page took 0.049293 seconds and 3 git commands to generate.