diff options
author | Ross Burton <ross.burton@intel.com> | 2012-07-13 15:20:39 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-17 10:54:06 +0100 |
commit | 7765ad4d69bfb6c15fb436e509574629e896f2e6 (patch) | |
tree | 2c0d8faef77d56cf28bbce2b90a5619e5e5a3fd6 /meta/recipes-sato/webkit/files/function-scope.patch | |
parent | c9f855e0400dd8050a459bf34f685159218f7e53 (diff) | |
download | poky-7765ad4d69bfb6c15fb436e509574629e896f2e6.tar.gz |
webkit-gtk: remove svn recipe
(From OE-Core rev: ecb18e2b6a8fc16b323f93c62ed5ff5b080c5dd0)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato/webkit/files/function-scope.patch')
-rw-r--r-- | meta/recipes-sato/webkit/files/function-scope.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/meta/recipes-sato/webkit/files/function-scope.patch b/meta/recipes-sato/webkit/files/function-scope.patch deleted file mode 100644 index a20a80501f..0000000000 --- a/meta/recipes-sato/webkit/files/function-scope.patch +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | we need to include unistd.h on all linux platforms therefore | ||
2 | extend the conditional inclusion accordingly | ||
3 | |||
4 | This gets proper declation of sleep() into the source file | ||
5 | |||
6 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
7 | |||
8 | Upstream-Status: Pending | ||
9 | Index: webkit-gtk-1.7.2+svnr101488-r3/Tools/DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp | ||
10 | =================================================================== | ||
11 | --- webkit-gtk-1.7.2+svnr101488-r3.orig/Tools/DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp 2012-03-30 12:11:04.912613223 -0700 | ||
12 | +++ webkit-gtk-1.7.2+svnr101488-r3/Tools/DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp 2012-03-30 12:14:21.840622752 -0700 | ||
13 | @@ -29,7 +29,7 @@ | ||
14 | #include <assert.h> | ||
15 | #include <string.h> | ||
16 | |||
17 | -#if defined(ANDROID) | ||
18 | +#if defined(__linux__) | ||
19 | #include <unistd.h> | ||
20 | #endif | ||
21 | |||