Title: [169378] trunk/Source/WebCore
Revision
169378
Author
commit-qu...@webkit.org
Date
2014-05-27 03:56:29 -0700 (Tue, 27 May 2014)

Log Message

[GStreamer] Add missing <wtf/MathExtras.h> header
https://bugs.webkit.org/show_bug.cgi?id=133236

Patch by Adrian Perez de Castro <ape...@igalia.com> on 2014-05-27
Reviewed by Philippe Normand.

In some configurations, not including <wtf/MathExtras.h> will cause
errors about undefined functions. In particular, this happens in
Linux with glibc 2.19 and compiling with Clang. Having the header
included is the correct thing to do anyway.

* platform/graphics/gstreamer/GStreamerUtilities.cpp:
Include <wtf/MathExtras.h>

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (169377 => 169378)


--- trunk/Source/WebCore/ChangeLog	2014-05-27 10:24:42 UTC (rev 169377)
+++ trunk/Source/WebCore/ChangeLog	2014-05-27 10:56:29 UTC (rev 169378)
@@ -1,3 +1,18 @@
+2014-05-27  Adrian Perez de Castro  <ape...@igalia.com>
+
+        [GStreamer] Add missing <wtf/MathExtras.h> header
+        https://bugs.webkit.org/show_bug.cgi?id=133236
+
+        Reviewed by Philippe Normand.
+
+        In some configurations, not including <wtf/MathExtras.h> will cause
+        errors about undefined functions. In particular, this happens in
+        Linux with glibc 2.19 and compiling with Clang. Having the header
+        included is the correct thing to do anyway.
+
+        * platform/graphics/gstreamer/GStreamerUtilities.cpp:
+        Include <wtf/MathExtras.h>
+
 2014-05-27  Manuel Rego Casasnovas  <r...@igalia.com>
 
         Setting up OrderIterator shouldn't require an extra Vector

Modified: trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerUtilities.cpp (169377 => 169378)


--- trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerUtilities.cpp	2014-05-27 10:24:42 UTC (rev 169377)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerUtilities.cpp	2014-05-27 10:56:29 UTC (rev 169378)
@@ -26,6 +26,7 @@
 
 #include <gst/audio/audio.h>
 #include <gst/gst.h>
+#include <wtf/MathExtras.h>
 #include <wtf/gobject/GUniquePtr.h>
 
 namespace WebCore {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to