diff options
author | Spenser Gilliland <spenser@gillilanding.com> | 2013-06-07 13:18:50 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-06-08 22:54:24 +0200 |
commit | 69e3d032ed0da9f246d39c5e04b63102004810f2 (patch) | |
tree | fef443e8b67df5d0a4e495f0f61db84c3ef56030 /package/webkit/webkit-fix-build-issue-with-old-gtk.patch | |
parent | dca8781610115458f76589e6fd9a19c5ed5971b0 (diff) | |
download | buildroot-69e3d032ed0da9f246d39c5e04b63102004810f2.tar.gz buildroot-69e3d032ed0da9f246d39c5e04b63102004810f2.zip |
webkit: bump to version 1.9.6
Remove bison-2.6-compat patch as it has been incorporated upstream.
Remove fix build issue with old gtk as gtk has been bumped to a newer
version.
Remove fix-build-with-gcc-4-6 as it has incorporated upstream.
Remove directfb patches due to depreciation
Remove pool patch as it is no longer required
Remove pthread_getattr_np as webkit no longer uses this function.
Signed-off-by: Spenser Gilliland <spenser@gillilanding.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/webkit/webkit-fix-build-issue-with-old-gtk.patch')
-rw-r--r-- | package/webkit/webkit-fix-build-issue-with-old-gtk.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/package/webkit/webkit-fix-build-issue-with-old-gtk.patch b/package/webkit/webkit-fix-build-issue-with-old-gtk.patch deleted file mode 100644 index 2b20bae6dd..0000000000 --- a/package/webkit/webkit-fix-build-issue-with-old-gtk.patch +++ /dev/null @@ -1,22 +0,0 @@ -The WebKit code conditionally calls getRootCoords() when the Gtk -version is old (i.e < 2.17.3), but fails to declare the prototype of -this function (which is implemented after its call site). This build -failure has probably been missed due to the fact that not many people -try to compile recent WebKit versions with old Gtk. - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> - -Index: webkit-1.2.3/WebKitTools/DumpRenderTree/gtk/EventSender.cpp -=================================================================== ---- webkit-1.2.3.orig/WebKitTools/DumpRenderTree/gtk/EventSender.cpp 2010-07-19 20:42:27.000000000 +0200 -+++ webkit-1.2.3/WebKitTools/DumpRenderTree/gtk/EventSender.cpp 2010-07-19 20:42:57.000000000 +0200 -@@ -86,6 +86,9 @@ - static void sendOrQueueEvent(GdkEvent event); - static void dispatchEvent(GdkEvent event); - static guint getStateFlags(); -+#if !GTK_CHECK_VERSION(2,17,3) -+static void getRootCoords(GtkWidget* view, int* rootX, int* rootY); -+#endif - - static JSValueRef getDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) - { |