Title: [152593] trunk/Source/WebCore
Revision
152593
Author
[email protected]
Date
2013-07-12 09:28:46 -0700 (Fri, 12 Jul 2013)

Log Message

[WinCairo] Compile fix.
https://bugs.webkit.org/show_bug.cgi?id=118461

Patch by [email protected] <[email protected]> on 2013-07-12
Reviewed by Brent Fulgham.

* config.h: Only enable AVFOUNDATION for Windows if CoreGraphics is used.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (152592 => 152593)


--- trunk/Source/WebCore/ChangeLog	2013-07-12 16:28:24 UTC (rev 152592)
+++ trunk/Source/WebCore/ChangeLog	2013-07-12 16:28:46 UTC (rev 152593)
@@ -1,3 +1,12 @@
+2013-07-12  [email protected]  <[email protected]>
+
+        [WinCairo] Compile fix.
+        https://bugs.webkit.org/show_bug.cgi?id=118461
+
+        Reviewed by Brent Fulgham.
+
+        * config.h: Only enable AVFOUNDATION for Windows if CoreGraphics is used.
+
 2013-07-12  Oleg Beletski  <[email protected]>
 
         [EFL] --minimal build fails while linking libwebcore_efl.so

Modified: trunk/Source/WebCore/config.h (152592 => 152593)


--- trunk/Source/WebCore/config.h	2013-07-12 16:28:24 UTC (rev 152592)
+++ trunk/Source/WebCore/config.h	2013-07-12 16:28:46 UTC (rev 152593)
@@ -136,7 +136,7 @@
 
 // FIXME: Move this to _javascript_Core/wtf/Platform.h, which is where we define WTF_USE_AVFOUNDATION on the Mac.
 // https://bugs.webkit.org/show_bug.cgi?id=67334
-#if PLATFORM(WIN) && !USE(WINGDI)
+#if PLATFORM(WIN) && USE(CG)
 #define WTF_USE_AVFOUNDATION 1
 
 #if HAVE(AVCF_LEGIBLE_OUTPUT)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to