Title: [203765] trunk/Source/WebCore
Revision
203765
Author
[email protected]
Date
2016-07-26 23:35:30 -0700 (Tue, 26 Jul 2016)

Log Message

Unreviewed. Fix GTK+ distcheck build.

wtf/spi/darwin/dyldSPI.h is not included in GTK+ release tarballs.

* html/HTMLObjectElement.cpp: Include wtf/spi/darwin/dyldSPI.h only for iOS.
* html/MediaElementSession.cpp: Ditto.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (203764 => 203765)


--- trunk/Source/WebCore/ChangeLog	2016-07-27 06:20:47 UTC (rev 203764)
+++ trunk/Source/WebCore/ChangeLog	2016-07-27 06:35:30 UTC (rev 203765)
@@ -1,3 +1,12 @@
+2016-07-26  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix GTK+ distcheck build.
+
+        wtf/spi/darwin/dyldSPI.h is not included in GTK+ release tarballs.
+
+        * html/HTMLObjectElement.cpp: Include wtf/spi/darwin/dyldSPI.h only for iOS.
+        * html/MediaElementSession.cpp: Ditto.
+
 2016-07-26  Myles C. Maxfield  <[email protected]>
 
         [iOS] SF-Heavy is inaccessible by web content

Modified: trunk/Source/WebCore/html/HTMLObjectElement.cpp (203764 => 203765)


--- trunk/Source/WebCore/html/HTMLObjectElement.cpp	2016-07-27 06:20:47 UTC (rev 203764)
+++ trunk/Source/WebCore/html/HTMLObjectElement.cpp	2016-07-27 06:35:30 UTC (rev 203765)
@@ -53,10 +53,10 @@
 #include "Text.h"
 #include "Widget.h"
 #include <wtf/Ref.h>
-#include <wtf/spi/darwin/dyldSPI.h>
 
 #if PLATFORM(IOS)
 #include "RuntimeApplicationChecks.h"
+#include <wtf/spi/darwin/dyldSPI.h>
 #endif
 
 namespace WebCore {

Modified: trunk/Source/WebCore/html/MediaElementSession.cpp (203764 => 203765)


--- trunk/Source/WebCore/html/MediaElementSession.cpp	2016-07-27 06:20:47 UTC (rev 203764)
+++ trunk/Source/WebCore/html/MediaElementSession.cpp	2016-07-27 06:35:30 UTC (rev 203765)
@@ -47,11 +47,11 @@
 #include "RenderView.h"
 #include "ScriptController.h"
 #include "SourceBuffer.h"
-#include <wtf/spi/darwin/dyldSPI.h>
 
 #if PLATFORM(IOS)
 #include "AudioSession.h"
 #include "RuntimeApplicationChecks.h"
+#include <wtf/spi/darwin/dyldSPI.h>
 #endif
 
 namespace WebCore {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to