From 763efb194df5565255a5c4e88326ee75663e462f Mon Sep 17 00:00:00 2001 From: dakkar Date: Fri, 16 Dec 2022 12:53:40 +0000 Subject: kill old webkit-gtk, no longer useful --- .../webkit-gtk/files/webkit-gtk-2.4.9-gcc-6.patch | 29 ---------------------- 1 file changed, 29 deletions(-) delete mode 100644 net-libs/webkit-gtk/files/webkit-gtk-2.4.9-gcc-6.patch (limited to 'net-libs/webkit-gtk/files/webkit-gtk-2.4.9-gcc-6.patch') diff --git a/net-libs/webkit-gtk/files/webkit-gtk-2.4.9-gcc-6.patch b/net-libs/webkit-gtk/files/webkit-gtk-2.4.9-gcc-6.patch deleted file mode 100644 index bd8507c..0000000 --- a/net-libs/webkit-gtk/files/webkit-gtk-2.4.9-gcc-6.patch +++ /dev/null @@ -1,29 +0,0 @@ -Fedora patch fixes build failure for gcc-6 (abs/fabs ambifuity) -https://bugs.webkit.org/show_bug.cgi?id=159124#c1 -https://bugs.gentoo.org/show_bug.cgi?id=592048 -diff -Nur webkitgtk-2.4.9.orig/Source/WebCore/platform/gtk/GtkClickCounter.cpp webkitgtk-2.4.9/Source/WebCore/platform/gtk/GtkClickCounter.cpp ---- webkitgtk-2.4.9.orig/Source/WebCore/platform/gtk/GtkClickCounter.cpp 2015-05-20 03:03:24.000000000 -0600 -+++ webkitgtk-2.4.9/Source/WebCore/platform/gtk/GtkClickCounter.cpp 2016-02-07 11:30:42.392686308 -0700 -@@ -85,8 +85,8 @@ - guint32 eventTime = getEventTime(event); - - if ((event->type == GDK_2BUTTON_PRESS || event->type == GDK_3BUTTON_PRESS) -- || ((abs(buttonEvent->x - m_previousClickPoint.x()) < doubleClickDistance) -- && (abs(buttonEvent->y - m_previousClickPoint.y()) < doubleClickDistance) -+ || ((fabs(buttonEvent->x - m_previousClickPoint.x()) < doubleClickDistance) -+ && (fabs(buttonEvent->y - m_previousClickPoint.y()) < doubleClickDistance) - && (eventTime - m_previousClickTime < static_cast(doubleClickTime)) - && (buttonEvent->button == m_previousClickButton))) - m_currentClickCount++; -diff -Nur webkitgtk-2.4.9.orig/Source/WebCore/platform/gtk/LocalizedStringsGtk.cpp webkitgtk-2.4.9/Source/WebCore/platform/gtk/LocalizedStringsGtk.cpp ---- webkitgtk-2.4.9.orig/Source/WebCore/platform/gtk/LocalizedStringsGtk.cpp 2015-05-20 03:03:24.000000000 -0600 -+++ webkitgtk-2.4.9/Source/WebCore/platform/gtk/LocalizedStringsGtk.cpp 2016-02-07 11:49:36.384691005 -0700 -@@ -659,7 +659,7 @@ - if (!std::isfinite(time)) - return String::fromUTF8(_("indefinite time")); - -- int seconds = static_cast(abs(time)); -+ int seconds = static_cast(fabs(time)); - int days = seconds / (60 * 60 * 24); - int hours = seconds / (60 * 60); - int minutes = (seconds / 60) % 60; -- cgit v1.2.3