Modified: trunk/Source/WTF/ChangeLog (260906 => 260907)
--- trunk/Source/WTF/ChangeLog 2020-04-29 18:03:53 UTC (rev 260906)
+++ trunk/Source/WTF/ChangeLog 2020-04-29 18:53:44 UTC (rev 260907)
@@ -1,3 +1,15 @@
+2020-04-29 Jer Noble <[email protected]>
+
+ [Mac] Adopt kMTSupportNotification_ShouldPlayHDRVideoChanged notification
+ https://bugs.webkit.org/show_bug.cgi?id=211028
+ <rdar://problem/61173289>
+
+ Reviewed by Aakash Jain.
+
+ Follow-up test failure fix; correct the debug/non-debug variants of SOFT_LINK_FRAMEWORK_FOR_SOURCE_WITH_EXPORT.
+
+ * wtf/win/SoftLinking.h:
+
2020-04-29 Commit Queue <[email protected]>
Unreviewed, reverting r260650.
Modified: trunk/Source/WTF/wtf/win/SoftLinking.h (260906 => 260907)
--- trunk/Source/WTF/wtf/win/SoftLinking.h 2020-04-29 18:03:53 UTC (rev 260906)
+++ trunk/Source/WTF/wtf/win/SoftLinking.h 2020-04-29 18:53:44 UTC (rev 260907)
@@ -183,10 +183,10 @@
#ifdef DEBUG_ALL
#define SOFT_LINK_FRAMEWORK_FOR_SOURCE(functionNamespace, framework) SOFT_LINK_DEBUG_FRAMEWORK(functionNamespace, framework)
-#define SOFT_LINK_FRAMEWORK_FOR_SOURCE_WITH_EXPORT(functionNamespace, framework, export) SOFT_LINK_DEBUG_FRAMEWORK_HELPER(functionNamespace, framework, L".dll", export)
+#define SOFT_LINK_FRAMEWORK_FOR_SOURCE_WITH_EXPORT(functionNamespace, framework, export) SOFT_LINK_FRAMEWORK_HELPER(functionNamespace, framework, L"_debug.dll", export)
#else
#define SOFT_LINK_FRAMEWORK_FOR_SOURCE(functionNamespace, framework) SOFT_LINK_FRAMEWORK(functionNamespace, framework)
-#define SOFT_LINK_FRAMEWORK_FOR_SOURCE_WITH_EXPORT(functionNamespace, framework, export) SOFT_LINK_FRAMEWORK_HELPER(functionNamespace, framework, L"_debug.dll", export)
+#define SOFT_LINK_FRAMEWORK_FOR_SOURCE_WITH_EXPORT(functionNamespace, framework, export) SOFT_LINK_FRAMEWORK_HELPER(functionNamespace, framework, L".dll", export)
#endif