Title: [155127] trunk/Source/WebCore
Revision
155127
Author
roger_f...@apple.com
Date
2013-09-05 10:21:16 -0700 (Thu, 05 Sep 2013)

Log Message

Link to libdispatch_debug.lib when using DebugSuffix configuration.
https://bugs.webkit.org/show_bug.cgi?id=120712.
<rdar://problem/14883216>.

Reviewed by Brent Fulgham.

* platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (155126 => 155127)


--- trunk/Source/WebCore/ChangeLog	2013-09-05 17:11:55 UTC (rev 155126)
+++ trunk/Source/WebCore/ChangeLog	2013-09-05 17:21:16 UTC (rev 155127)
@@ -418,6 +418,16 @@
 
 2013-09-04  Roger Fong  <roger_f...@apple.com>
 
+        Link to libdispatch_debug.lib when using DebugSuffix configuration.
+        https://bugs.webkit.org/show_bug.cgi?id=120712.
+        <rdar://problem/14883216>.
+
+        Reviewed by Brent Fulgham.
+
+        * platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp:
+
+2013-09-04  Roger Fong  <roger_f...@apple.com>
+
         Unreviewed. Windows build fix and WebCore project cleanup.
 
         * WebCore.vcxproj/WebCore.vcxproj.filters:

Modified: trunk/Source/WebCore/platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp (155126 => 155127)


--- trunk/Source/WebCore/platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp	2013-09-05 17:11:55 UTC (rev 155126)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp	2013-09-05 17:21:16 UTC (rev 155127)
@@ -66,7 +66,11 @@
 #include "CoreMediaSoftLinking.h"
 
 // We don't bother softlinking against libdispatch since it's already been loaded by AAS.
+#ifdef DEBUG_ALL
+#pragma comment(lib, "libdispatch_debug.lib")
+#else
 #pragma comment(lib, "libdispatch.lib")
+#endif
 
 using namespace std;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to