diff options
author | Carlos Alberto Lopez Perez <clopez@igalia.com> | 2016-12-07 21:17:07 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-13 22:55:19 +0000 |
commit | 37e0df682285299b13a71b7a699f75587d3ca36b (patch) | |
tree | 9003243c9501459a3610ba0d453a3669303ce46c | |
parent | b155c2bb25a5ceb58238a7a366fc3012a9732896 (diff) | |
download | poky-37e0df682285299b13a71b7a699f75587d3ca36b.tar.gz |
Revert "webkitgtk: drop patch 0001-WebKitMacros-Append-to-I-and-not-to-isystem.patch"
This reverts commit 812c52f654c1bccca033163100055e3a8b8cda6e.
Upstream fixed the issue with GCC. But the build still fails with Clang.
Therefore reintroduce this patch until a better solution is found.
Upstream bug: https://bugs.webkit.org/show_bug.cgi?id=161697
(From OE-Core rev: 39be43943e3de0eb0ab9b61b405f3b76f12a307d)
Signed-off-by: Carlos Alberto Lopez Perez <clopez@igalia.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-sato/webkit/files/0001-WebKitMacros-Append-to-I-and-not-to-isystem.patch | 185 | ||||
-rw-r--r-- | meta/recipes-sato/webkit/webkitgtk_2.14.2.bb | 1 |
2 files changed, 186 insertions, 0 deletions
diff --git a/meta/recipes-sato/webkit/files/0001-WebKitMacros-Append-to-I-and-not-to-isystem.patch b/meta/recipes-sato/webkit/files/0001-WebKitMacros-Append-to-I-and-not-to-isystem.patch new file mode 100644 index 0000000000..a4face2765 --- /dev/null +++ b/meta/recipes-sato/webkit/files/0001-WebKitMacros-Append-to-I-and-not-to-isystem.patch | |||
@@ -0,0 +1,185 @@ | |||
1 | From 20ee11dd188e1538f8cdd17a289dc6f9c63a011e Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Sun, 17 Apr 2016 12:35:41 -0700 | ||
4 | Subject: [PATCH] WebKitMacros: Append to -I and not to -isystem | ||
5 | |||
6 | gcc-6 has now introduced stdlib.h in libstdc++ for better | ||
7 | compliance and its including the C library stdlib.h using | ||
8 | include_next which is sensitive to order of system header | ||
9 | include paths. Its infact better to not tinker with the | ||
10 | system header include paths at all. Since adding /usr/include | ||
11 | to -system is redundant and compiler knows about it moreover | ||
12 | now with gcc6 it interferes with compiler's functioning | ||
13 | and ends up with compile errors e.g. | ||
14 | |||
15 | /usr/include/c++/6.0.0/cstdlib:75:25: fatal error: stdlib.h: No such file or directory | ||
16 | |||
17 | This is also an issue with clang (when using libstdc++ >= 6) | ||
18 | |||
19 | Upstream bug: https://bugs.webkit.org/show_bug.cgi?id=161697 | ||
20 | |||
21 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
22 | Upstream-Status: Pending | ||
23 | --- | ||
24 | Source/JavaScriptCore/shell/CMakeLists.txt | 2 +- | ||
25 | Source/WebCore/PlatformGTK.cmake | 6 +++--- | ||
26 | Source/WebKit2/PlatformGTK.cmake | 2 +- | ||
27 | Source/cmake/WebKitMacros.cmake | 2 +- | ||
28 | Tools/DumpRenderTree/TestNetscapePlugIn/CMakeLists.txt | 2 +- | ||
29 | Tools/ImageDiff/CMakeLists.txt | 2 +- | ||
30 | Tools/MiniBrowser/gtk/CMakeLists.txt | 2 +- | ||
31 | Tools/TestWebKitAPI/PlatformGTK.cmake | 2 +- | ||
32 | Tools/TestWebKitAPI/Tests/WebKit2Gtk/CMakeLists.txt | 2 +- | ||
33 | Tools/WebKitTestRunner/CMakeLists.txt | 2 +- | ||
34 | 10 files changed, 12 insertions(+), 12 deletions(-) | ||
35 | |||
36 | diff --git a/Source/JavaScriptCore/shell/CMakeLists.txt b/Source/JavaScriptCore/shell/CMakeLists.txt | ||
37 | index 155c797..80fe22b 100644 | ||
38 | --- a/Source/JavaScriptCore/shell/CMakeLists.txt | ||
39 | +++ b/Source/JavaScriptCore/shell/CMakeLists.txt | ||
40 | @@ -20,7 +20,7 @@ WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS() | ||
41 | |||
42 | WEBKIT_WRAP_SOURCELIST(${JSC_SOURCES}) | ||
43 | include_directories(./ ${JavaScriptCore_INCLUDE_DIRECTORIES}) | ||
44 | -include_directories(SYSTEM ${JavaScriptCore_SYSTEM_INCLUDE_DIRECTORIES}) | ||
45 | +include_directories(${JavaScriptCore_SYSTEM_INCLUDE_DIRECTORIES}) | ||
46 | add_executable(jsc ${JSC_SOURCES}) | ||
47 | target_link_libraries(jsc ${JSC_LIBRARIES}) | ||
48 | |||
49 | diff --git a/Source/WebCore/PlatformGTK.cmake b/Source/WebCore/PlatformGTK.cmake | ||
50 | index 567bd79..1fabea8 100644 | ||
51 | --- a/Source/WebCore/PlatformGTK.cmake | ||
52 | +++ b/Source/WebCore/PlatformGTK.cmake | ||
53 | @@ -340,7 +340,7 @@ if (ENABLE_PLUGIN_PROCESS_GTK2) | ||
54 | ${GTK2_INCLUDE_DIRS} | ||
55 | ${GDK2_INCLUDE_DIRS} | ||
56 | ) | ||
57 | - target_include_directories(WebCorePlatformGTK2 SYSTEM PRIVATE | ||
58 | + target_include_directories(WebCorePlatformGTK2 PRIVATE | ||
59 | ${WebCore_SYSTEM_INCLUDE_DIRECTORIES} | ||
60 | ) | ||
61 | target_link_libraries(WebCorePlatformGTK2 | ||
62 | @@ -365,7 +365,7 @@ WEBKIT_SET_EXTRA_COMPILER_FLAGS(WebCorePlatformGTK) | ||
63 | target_include_directories(WebCorePlatformGTK PRIVATE | ||
64 | ${WebCore_INCLUDE_DIRECTORIES} | ||
65 | ) | ||
66 | -target_include_directories(WebCorePlatformGTK SYSTEM PRIVATE | ||
67 | +target_include_directories(WebCorePlatformGTK PRIVATE | ||
68 | ${WebCore_SYSTEM_INCLUDE_DIRECTORIES} | ||
69 | ${GTK_INCLUDE_DIRS} | ||
70 | ${GDK_INCLUDE_DIRS} | ||
71 | @@ -383,7 +383,7 @@ include_directories( | ||
72 | "${DERIVED_SOURCES_GOBJECT_DOM_BINDINGS_DIR}" | ||
73 | ) | ||
74 | |||
75 | -include_directories(SYSTEM | ||
76 | +include_directories( | ||
77 | ${WebCore_SYSTEM_INCLUDE_DIRECTORIES} | ||
78 | ) | ||
79 | |||
80 | diff --git a/Source/WebKit2/PlatformGTK.cmake b/Source/WebKit2/PlatformGTK.cmake | ||
81 | index e4805a4..c57df5d 100644 | ||
82 | --- a/Source/WebKit2/PlatformGTK.cmake | ||
83 | +++ b/Source/WebKit2/PlatformGTK.cmake | ||
84 | @@ -822,7 +822,7 @@ if (ENABLE_PLUGIN_PROCESS_GTK2) | ||
85 | target_include_directories(WebKitPluginProcess2 PRIVATE | ||
86 | ${WebKit2CommonIncludeDirectories} | ||
87 | ) | ||
88 | - target_include_directories(WebKitPluginProcess2 SYSTEM PRIVATE | ||
89 | + target_include_directories(WebKitPluginProcess2 PRIVATE | ||
90 | ${WebKit2CommonSystemIncludeDirectories} | ||
91 | ${GTK2_INCLUDE_DIRS} | ||
92 | ${GDK2_INCLUDE_DIRS} | ||
93 | diff --git a/Source/cmake/WebKitMacros.cmake b/Source/cmake/WebKitMacros.cmake | ||
94 | index 043e78e..8b3b642 100644 | ||
95 | --- a/Source/cmake/WebKitMacros.cmake | ||
96 | +++ b/Source/cmake/WebKitMacros.cmake | ||
97 | @@ -224,7 +224,7 @@ endmacro() | ||
98 | |||
99 | macro(WEBKIT_FRAMEWORK _target) | ||
100 | include_directories(${${_target}_INCLUDE_DIRECTORIES}) | ||
101 | - include_directories(SYSTEM ${${_target}_SYSTEM_INCLUDE_DIRECTORIES}) | ||
102 | + include_directories(${${_target}_SYSTEM_INCLUDE_DIRECTORIES}) | ||
103 | add_library(${_target} ${${_target}_LIBRARY_TYPE} | ||
104 | ${${_target}_HEADERS} | ||
105 | ${${_target}_SOURCES} | ||
106 | diff --git a/Tools/DumpRenderTree/TestNetscapePlugIn/CMakeLists.txt b/Tools/DumpRenderTree/TestNetscapePlugIn/CMakeLists.txt | ||
107 | index c431667..6dff244 100644 | ||
108 | --- a/Tools/DumpRenderTree/TestNetscapePlugIn/CMakeLists.txt | ||
109 | +++ b/Tools/DumpRenderTree/TestNetscapePlugIn/CMakeLists.txt | ||
110 | @@ -42,7 +42,7 @@ set(WebKitTestNetscapePlugin_SYSTEM_INCLUDE_DIRECTORIES | ||
111 | ) | ||
112 | |||
113 | include_directories(${WebKitTestNetscapePlugin_INCLUDE_DIRECTORIES}) | ||
114 | -include_directories(SYSTEM ${WebKitTestNetscapePlugin_SYSTEM_INCLUDE_DIRECTORIES}) | ||
115 | +include_directories(${WebKitTestNetscapePlugin_SYSTEM_INCLUDE_DIRECTORIES}) | ||
116 | |||
117 | set(WebKitTestNetscapePlugin_LIBRARIES | ||
118 | ${X11_LIBRARIES} | ||
119 | diff --git a/Tools/ImageDiff/CMakeLists.txt b/Tools/ImageDiff/CMakeLists.txt | ||
120 | index b15443f..87e03bf 100644 | ||
121 | --- a/Tools/ImageDiff/CMakeLists.txt | ||
122 | +++ b/Tools/ImageDiff/CMakeLists.txt | ||
123 | @@ -14,6 +14,6 @@ set(IMAGE_DIFF_LIBRARIES | ||
124 | WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS() | ||
125 | |||
126 | include_directories(${IMAGE_DIFF_INCLUDE_DIRECTORIES}) | ||
127 | -include_directories(SYSTEM ${IMAGE_DIFF_SYSTEM_INCLUDE_DIRECTORIES}) | ||
128 | +include_directories(${IMAGE_DIFF_SYSTEM_INCLUDE_DIRECTORIES}) | ||
129 | add_executable(ImageDiff ${IMAGE_DIFF_SOURCES}) | ||
130 | target_link_libraries(ImageDiff ${IMAGE_DIFF_LIBRARIES}) | ||
131 | diff --git a/Tools/MiniBrowser/gtk/CMakeLists.txt b/Tools/MiniBrowser/gtk/CMakeLists.txt | ||
132 | index 0704bc6..619e5a5 100644 | ||
133 | --- a/Tools/MiniBrowser/gtk/CMakeLists.txt | ||
134 | +++ b/Tools/MiniBrowser/gtk/CMakeLists.txt | ||
135 | @@ -58,7 +58,7 @@ endif () | ||
136 | add_definitions(-DGDK_VERSION_MIN_REQUIRED=GDK_VERSION_3_6) | ||
137 | |||
138 | include_directories(${MiniBrowser_INCLUDE_DIRECTORIES}) | ||
139 | -include_directories(SYSTEM ${MiniBrowser_SYSTEM_INCLUDE_DIRECTORIES}) | ||
140 | +include_directories(${MiniBrowser_SYSTEM_INCLUDE_DIRECTORIES}) | ||
141 | add_executable(MiniBrowser ${MiniBrowser_SOURCES}) | ||
142 | target_link_libraries(MiniBrowser ${MiniBrowser_LIBRARIES}) | ||
143 | |||
144 | diff --git a/Tools/TestWebKitAPI/PlatformGTK.cmake b/Tools/TestWebKitAPI/PlatformGTK.cmake | ||
145 | index 7552cc2..2eb44d5 100644 | ||
146 | --- a/Tools/TestWebKitAPI/PlatformGTK.cmake | ||
147 | +++ b/Tools/TestWebKitAPI/PlatformGTK.cmake | ||
148 | @@ -20,7 +20,7 @@ include_directories( | ||
149 | ${WEBKIT2_DIR}/UIProcess/API/gtk | ||
150 | ) | ||
151 | |||
152 | -include_directories(SYSTEM | ||
153 | +include_directories( | ||
154 | ${GDK3_INCLUDE_DIRS} | ||
155 | ${GLIB_INCLUDE_DIRS} | ||
156 | ${GTK3_INCLUDE_DIRS} | ||
157 | diff --git a/Tools/TestWebKitAPI/Tests/WebKit2Gtk/CMakeLists.txt b/Tools/TestWebKitAPI/Tests/WebKit2Gtk/CMakeLists.txt | ||
158 | index b0b4739..434e4ca 100644 | ||
159 | --- a/Tools/TestWebKitAPI/Tests/WebKit2Gtk/CMakeLists.txt | ||
160 | +++ b/Tools/TestWebKitAPI/Tests/WebKit2Gtk/CMakeLists.txt | ||
161 | @@ -23,7 +23,7 @@ include_directories( | ||
162 | ${TOOLS_DIR}/TestWebKitAPI/gtk/WebKit2Gtk | ||
163 | ) | ||
164 | |||
165 | -include_directories(SYSTEM | ||
166 | +include_directories( | ||
167 | ${ATSPI_INCLUDE_DIRS} | ||
168 | ${GLIB_INCLUDE_DIRS} | ||
169 | ${GSTREAMER_INCLUDE_DIRS} | ||
170 | diff --git a/Tools/WebKitTestRunner/CMakeLists.txt b/Tools/WebKitTestRunner/CMakeLists.txt | ||
171 | index 7db90f2..a4f917f 100644 | ||
172 | --- a/Tools/WebKitTestRunner/CMakeLists.txt | ||
173 | +++ b/Tools/WebKitTestRunner/CMakeLists.txt | ||
174 | @@ -116,7 +116,7 @@ GENERATE_BINDINGS(WebKitTestRunner_SOURCES | ||
175 | WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS() | ||
176 | |||
177 | include_directories(${WebKitTestRunner_INCLUDE_DIRECTORIES}) | ||
178 | -include_directories(SYSTEM ${WebKitTestRunner_SYSTEM_INCLUDE_DIRECTORIES}) | ||
179 | +include_directories(${WebKitTestRunner_SYSTEM_INCLUDE_DIRECTORIES}) | ||
180 | |||
181 | add_library(TestRunnerInjectedBundle SHARED ${WebKitTestRunnerInjectedBundle_SOURCES}) | ||
182 | target_link_libraries(TestRunnerInjectedBundle ${WebKitTestRunner_LIBRARIES}) | ||
183 | -- | ||
184 | 2.9.3 | ||
185 | |||
diff --git a/meta/recipes-sato/webkit/webkitgtk_2.14.2.bb b/meta/recipes-sato/webkit/webkitgtk_2.14.2.bb index 280765c15e..1c327babfb 100644 --- a/meta/recipes-sato/webkit/webkitgtk_2.14.2.bb +++ b/meta/recipes-sato/webkit/webkitgtk_2.14.2.bb | |||
@@ -18,6 +18,7 @@ SRC_URI = "http://www.webkitgtk.org/releases/${BPN}-${PV}.tar.xz \ | |||
18 | file://ppc-musl-fix.patch \ | 18 | file://ppc-musl-fix.patch \ |
19 | file://0001-Fix-racy-parallel-build-of-WebKit2-4.0.gir.patch \ | 19 | file://0001-Fix-racy-parallel-build-of-WebKit2-4.0.gir.patch \ |
20 | file://0001-Tweak-gtkdoc-settings-so-that-gtkdoc-generation-work.patch \ | 20 | file://0001-Tweak-gtkdoc-settings-so-that-gtkdoc-generation-work.patch \ |
21 | file://0001-WebKitMacros-Append-to-I-and-not-to-isystem.patch \ | ||
21 | " | 22 | " |
22 | 23 | ||
23 | SRC_URI[md5sum] = "2fe3cadbc546d93ca68a13756c2be015" | 24 | SRC_URI[md5sum] = "2fe3cadbc546d93ca68a13756c2be015" |