From 2498dca71d0f694dc7fcab6a73a3d04b2c475ea8 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 2 Mar 2016 20:02:34 +0100 Subject: webkitgtk: update and add some patches --- .../patches/patch-Source_JavaScriptCore_runtime_Options_cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 package/webkitgtk/patches/patch-Source_JavaScriptCore_runtime_Options_cpp (limited to 'package/webkitgtk/patches/patch-Source_JavaScriptCore_runtime_Options_cpp') diff --git a/package/webkitgtk/patches/patch-Source_JavaScriptCore_runtime_Options_cpp b/package/webkitgtk/patches/patch-Source_JavaScriptCore_runtime_Options_cpp new file mode 100644 index 000000000..2d1a35c7e --- /dev/null +++ b/package/webkitgtk/patches/patch-Source_JavaScriptCore_runtime_Options_cpp @@ -0,0 +1,11 @@ +--- webkitgtk-2.10.7.orig/Source/JavaScriptCore/runtime/Options.cpp 2016-01-29 17:29:32.000000000 +0100 ++++ webkitgtk-2.10.7/Source/JavaScriptCore/runtime/Options.cpp 2016-03-02 07:46:04.000000000 +0100 +@@ -610,7 +610,7 @@ bool Option::operator==(const Option& ot + 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: -- cgit v1.2.3