<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body><span class="vcard"><a class="email" href="mailto:mcatanzaro&#64;igalia.com" title="Michael Catanzaro &lt;mcatanzaro&#64;igalia.com&gt;"> <span class="fn">Michael Catanzaro</span></a>
</span> changed
              <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [GTK] 2.4.11 fails to build with gcc 6 and glibc 2.23"
   href="https://bugs.webkit.org/show_bug.cgi?id=159124">bug 159124</a>
        <br>
             <table border="1" cellspacing="0" cellpadding="8">
          <tr>
            <th>What</th>
            <th>Removed</th>
            <th>Added</th>
          </tr>

         <tr>
           <td style="text-align:right;">CC</td>
           <td>
               &nbsp;
           </td>
           <td>mcatanzaro&#64;igalia.com
           </td>
         </tr></table>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [GTK] 2.4.11 fails to build with gcc 6 and glibc 2.23"
   href="https://bugs.webkit.org/show_bug.cgi?id=159124#c1">Comment # 1</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [GTK] 2.4.11 fails to build with gcc 6 and glibc 2.23"
   href="https://bugs.webkit.org/show_bug.cgi?id=159124">bug 159124</a>
              from <span class="vcard"><a class="email" href="mailto:mcatanzaro&#64;igalia.com" title="Michael Catanzaro &lt;mcatanzaro&#64;igalia.com&gt;"> <span class="fn">Michael Catanzaro</span></a>
</span></b>
        <pre>Fedora patch:

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
&#64;&#64; -85,8 +85,8 &#64;&#64;
     guint32 eventTime = getEventTime(event);

     if ((event-&gt;type == GDK_2BUTTON_PRESS || event-&gt;type == GDK_3BUTTON_PRESS)
-        || ((abs(buttonEvent-&gt;x - m_previousClickPoint.x()) &lt; doubleClickDistance)
-            &amp;&amp; (abs(buttonEvent-&gt;y - m_previousClickPoint.y()) &lt; doubleClickDistance)
+        || ((fabs(buttonEvent-&gt;x - m_previousClickPoint.x()) &lt; doubleClickDistance)
+            &amp;&amp; (fabs(buttonEvent-&gt;y - m_previousClickPoint.y()) &lt; doubleClickDistance)
             &amp;&amp; (eventTime - m_previousClickTime &lt; static_cast&lt;guint&gt;(doubleClickTime))
             &amp;&amp; (buttonEvent-&gt;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
&#64;&#64; -659,7 +659,7 &#64;&#64;
     if (!std::isfinite(time))
         return String::fromUTF8(_(&quot;indefinite time&quot;));

-    int seconds = static_cast&lt;int&gt;(abs(time));
+    int seconds = static_cast&lt;int&gt;(fabs(time));
     int days = seconds / (60 * 60 * 24);
     int hours = seconds / (60 * 60);
     int minutes = (seconds / 60) % 60;</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>