Title: [226388] trunk/Source/WebCore/PAL
Revision
226388
Author
[email protected]
Date
2018-01-03 20:21:29 -0800 (Wed, 03 Jan 2018)

Log Message

[Win] WebKitLegacy compile error.
https://bugs.webkit.org/show_bug.cgi?id=181257
rdar://problem/36273774

Reviewed by Alex Christensen.

The include file 'pal/text/UnencodableHandling.h' is not found. Add folder to list of forwarding
headers directories.

* pal/PlatformWin.cmake:

Modified Paths

Diff

Modified: trunk/Source/WebCore/PAL/ChangeLog (226387 => 226388)


--- trunk/Source/WebCore/PAL/ChangeLog	2018-01-04 04:18:53 UTC (rev 226387)
+++ trunk/Source/WebCore/PAL/ChangeLog	2018-01-04 04:21:29 UTC (rev 226388)
@@ -1,3 +1,16 @@
+2018-01-03  Per Arne Vollan  <[email protected]>
+
+        [Win] WebKitLegacy compile error.
+        https://bugs.webkit.org/show_bug.cgi?id=181257
+        rdar://problem/36273774
+
+        Reviewed by Alex Christensen.
+
+        The include file 'pal/text/UnencodableHandling.h' is not found. Add folder to list of forwarding
+        headers directories.
+ 
+        * pal/PlatformWin.cmake:
+
 2018-01-02  Brent Fulgham  <[email protected]>
 
         [macOS, iOS] Adopt new secure coding APIs in WebKit

Modified: trunk/Source/WebCore/PAL/pal/PlatformWin.cmake (226387 => 226388)


--- trunk/Source/WebCore/PAL/pal/PlatformWin.cmake	2018-01-04 04:18:53 UTC (rev 226387)
+++ trunk/Source/WebCore/PAL/pal/PlatformWin.cmake	2018-01-04 04:21:29 UTC (rev 226388)
@@ -16,7 +16,10 @@
     "${DERIVED_SOURCES_PAL_DIR}"
 )
 
-list(APPEND PAL_FORWARDING_HEADERS_DIRECTORIES .)
+list(APPEND PAL_FORWARDING_HEADERS_DIRECTORIES
+    .
+    text
+)
 
 if (${WTF_PLATFORM_WIN_CAIRO})
     include(PlatformWinCairo.cmake)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to