]> git.pld-linux.org Git - packages/gtk-webkit4.git/commitdiff
- updated to 2.10.7 auto/th/gtk-webkit4-2.10.7-1
authorJakub Bogusz <qboosh@pld-linux.org>
Sun, 21 Feb 2016 12:03:13 +0000 (13:03 +0100)
committerJakub Bogusz <qboosh@pld-linux.org>
Sun, 21 Feb 2016 12:03:13 +0000 (13:03 +0100)
- added c++ patch (add missing std:: namespace to isnan)

gtk-webkit4-c++.patch [new file with mode: 0644]
gtk-webkit4.spec

diff --git a/gtk-webkit4-c++.patch b/gtk-webkit4-c++.patch
new file mode 100644 (file)
index 0000000..f126235
--- /dev/null
@@ -0,0 +1,11 @@
+--- webkitgtk-2.10.7/Source/JavaScriptCore/runtime/Options.cpp.orig    2016-01-29 17:29:32.000000000 +0100
++++ webkitgtk-2.10.7/Source/JavaScriptCore/runtime/Options.cpp 2016-02-20 23:25:56.686551690 +0100
+@@ -610,7 +610,7 @@
+     case Options::Type::unsignedType:
+         return m_entry.unsignedVal == other.m_entry.unsignedVal;
+     case Options::Type::doubleType:
+-        return (m_entry.doubleVal == other.m_entry.doubleVal) || (isnan(m_entry.doubleVal) && isnan(other.m_entry.doubleVal));
++        return (m_entry.doubleVal == other.m_entry.doubleVal) || (std::isnan(m_entry.doubleVal) && std::isnan(other.m_entry.doubleVal));
+     case Options::Type::int32Type:
+         return m_entry.int32Val == other.m_entry.int32Val;
+     case Options::Type::optionRangeType:
index 38d8fbd4d0d11b450658be1731dc3f850b2225ee..c6fc143b2ac643e2ba4250e50b3b308555187ac2 100644 (file)
 Summary:       Port of WebKit embeddable web component to GTK+ 3
 Summary(pl.UTF-8):     Port osadzalnego komponentu WWW WebKit do GTK+ 3
 Name:          gtk-webkit4
-Version:       2.10.2
-Release:       3
+Version:       2.10.7
+Release:       1
 License:       BSD-like
 Group:         X11/Libraries
 Source0:       http://webkitgtk.org/releases/webkitgtk-%{version}.tar.xz
-# Source0-md5: 892e3077ad6c10c8233e7e8b5497cd7a
+# Source0-md5: 84832b9d8329413b4f1d87df5f7e8efe
 Patch0:                x32.patch
+Patch1:                %{name}-c++.patch
 URL:           http://webkitgtk.org/
 BuildRequires: /usr/bin/ld.gold
 BuildRequires: EGL-devel
@@ -140,6 +141,7 @@ Dokumentacja API WebKita.
 %prep
 %setup -q -n webkitgtk-%{version}
 %patch0 -p1
+%patch1 -p1
 
 %build
 install -d build
This page took 0.084619 seconds and 4 git commands to generate.