Title: [240118] trunk
Revision
240118
Author
pvol...@apple.com
Date
2019-01-17 11:13:50 -0800 (Thu, 17 Jan 2019)

Log Message

[Win] gperf command not found
https://bugs.webkit.org/show_bug.cgi?id=193538
<rdar://problem/47250549>

Reviewed by Brent Fulgham.

CMake only searches for gperf if ENABLE_WEBCORE is on. ENABLE_WEBCORE needs to be set to ON.

* Source/cmake/OptionsAppleWin.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (240117 => 240118)


--- trunk/ChangeLog	2019-01-17 19:10:53 UTC (rev 240117)
+++ trunk/ChangeLog	2019-01-17 19:13:50 UTC (rev 240118)
@@ -1,3 +1,15 @@
+2019-01-17  Per Arne Vollan  <pvol...@apple.com>
+
+        [Win] gperf command not found
+        https://bugs.webkit.org/show_bug.cgi?id=193538
+        <rdar://problem/47250549>
+
+        Reviewed by Brent Fulgham.
+
+        CMake only searches for gperf if ENABLE_WEBCORE is on. ENABLE_WEBCORE needs to be set to ON.
+
+        * Source/cmake/OptionsAppleWin.cmake:
+
 2019-01-14  Carlos Garcia Campos  <cgar...@igalia.com>
 
         Unreviewed. Update OptionsGTK.cmake and NEWS for 2.23.3 release

Modified: trunk/Source/cmake/OptionsAppleWin.cmake (240117 => 240118)


--- trunk/Source/cmake/OptionsAppleWin.cmake	2019-01-17 19:10:53 UTC (rev 240117)
+++ trunk/Source/cmake/OptionsAppleWin.cmake	2019-01-17 19:13:50 UTC (rev 240118)
@@ -4,6 +4,8 @@
 
 include(OptionsWin)
 
+set(ENABLE_WEBCORE ON)
+
 SET_AND_EXPOSE_TO_BUILD(USE_CF ON)
 SET_AND_EXPOSE_TO_BUILD(USE_CFURLCONNECTION ON)
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to