Accepting request 331780 from GNOME:Next
Update to 3.17.92 OBS-URL: https://build.opensuse.org/request/show/331780 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/webkit2gtk3?expand=0&rev=38
This commit is contained in:
parent
fc87bd7570
commit
daf0fba6da
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 16 21:16:49 UTC 2015 - zaitor@opensuse.org
|
||||
|
||||
- Update to version 2.9.92:
|
||||
+ Data URLs are now decoded in the Web Process instead of the
|
||||
Network Process.
|
||||
+ Fix Web Process crash recovery.
|
||||
+ Fix a crash when sqlite3_initialize() is called from multiple
|
||||
threads.
|
||||
+ Fix the volume bar in media controls.
|
||||
+ Fix JavaScriptCore build with GCC 5.
|
||||
+ Fix the build when accelerated 2D canvas is enabled but cairo
|
||||
was built without GLX.
|
||||
+ Fix everal memory leaks.
|
||||
+ Updated translations.
|
||||
- Drop webkitgtk-gcc5-buildfix.patch: Fixed upstream.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 26 20:04:03 UTC 2015 - zaitor@opensuse.org
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
%define _pkgconfig_suffix gtk-3.0
|
||||
%define _name webkitgtk
|
||||
Name: webkit2gtk3
|
||||
Version: 2.9.91
|
||||
Version: 2.9.92
|
||||
Release: 0
|
||||
Summary: Library for rendering web content, GTK+ Port
|
||||
License: LGPL-2.0+ and BSD-3-Clause
|
||||
@ -36,8 +36,6 @@ Source: http://webkitgtk.org/releases/%{_name}-%{version}.tar.xz
|
||||
Source1: baselibs.conf
|
||||
# PATCH-FIX-OPENSUSE webkitgtk-typelib-sharelib-link.patch dimstar@opensuse.org -- Fixup the .gir file to contain the full library name for libjavascriptcore.
|
||||
Patch0: webkitgtk-typelib-sharelib-link.patch
|
||||
# PATCH-FIX-UPSTREAM webkitgtk-gcc5-buildfix.patch zaitor@opensuse.org -- Fix build with gcc5, stolen with no shame from fedora.
|
||||
Patch1: webkitgtk-gcc5-buildfix.patch
|
||||
BuildRequires: bison >= 2.3
|
||||
BuildRequires: cmake
|
||||
BuildRequires: gcc-c++ >= 4.9
|
||||
@ -210,7 +208,6 @@ more.
|
||||
%prep
|
||||
%setup -q -n webkitgtk-%{version}
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
|
||||
%build
|
||||
# Use linker flags to reduce memory consumption
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:649dcf272888dbe0400eb3535b6ee56895c92b1bbbb7a6e4f795e1f4359d1311
|
||||
size 11021160
|
3
webkitgtk-2.9.92.tar.xz
Normal file
3
webkitgtk-2.9.92.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e22736b447f7c9a211ca2d38ad497df6d4bd65450ced724d64a393b199157307
|
||||
size 11035832
|
@ -1,15 +0,0 @@
|
||||
diff -up webkitgtk-2.8.0/Source/JavaScriptCore/runtime/JSObject.cpp.s390_fixes webkitgtk-2.8.0/Source/JavaScriptCore/runtime/JSObject.cpp
|
||||
--- webkitgtk-2.8.0/Source/JavaScriptCore/runtime/JSObject.cpp.s390_fixes 2015-03-23 09:08:04.000000000 +0100
|
||||
+++ webkitgtk-2.8.0/Source/JavaScriptCore/runtime/JSObject.cpp 2015-03-27 10:59:40.245010499 +0100
|
||||
@@ -1965,6 +1965,10 @@ void JSObject::putByIndexBeyondVectorLen
|
||||
}
|
||||
}
|
||||
|
||||
+template void JSObject::putByIndexBeyondVectorLengthWithoutAttributes<ContiguousShape>(ExecState* exec, unsigned i, JSValue value);
|
||||
+template void JSObject::putByIndexBeyondVectorLengthWithoutAttributes<DoubleShape>(ExecState* exec, unsigned i, JSValue value);
|
||||
+template void JSObject::putByIndexBeyondVectorLengthWithoutAttributes<Int32Shape>(ExecState* exec, unsigned i, JSValue value);
|
||||
+
|
||||
void JSObject::putByIndexBeyondVectorLengthWithArrayStorage(ExecState* exec, unsigned i, JSValue value, bool shouldThrow, ArrayStorage* storage)
|
||||
{
|
||||
VM& vm = exec->vm();
|
||||
|
Loading…
Reference in New Issue
Block a user