Title: [199651] trunk/Source/_javascript_Core
Revision
199651
Author
[email protected]
Date
2016-04-17 23:52:41 -0700 (Sun, 17 Apr 2016)

Log Message

Fix incorrect assumption that APPLE implies Mac.
https://bugs.webkit.org/show_bug.cgi?id=156683

Addresses build failure introduced in r199094

Patch by Jeremy Huddleston Sequoia <[email protected]> on 2016-04-17
Reviewed by Alex Christensen.

* CMakeLists.txt:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/CMakeLists.txt (199650 => 199651)


--- trunk/Source/_javascript_Core/CMakeLists.txt	2016-04-18 06:06:42 UTC (rev 199650)
+++ trunk/Source/_javascript_Core/CMakeLists.txt	2016-04-18 06:52:41 UTC (rev 199651)
@@ -1329,7 +1329,7 @@
 WEBKIT_WRAP_SOURCELIST(${_javascript_Core_SOURCES})
 WEBKIT_FRAMEWORK(_javascript_Core)
 
-if (NOT APPLE)
+if (NOT "${PORT}" STREQUAL "Mac")
     if (${_javascript_Core_LIBRARY_TYPE} STREQUAL "SHARED")
         POPULATE_LIBRARY_VERSION(_javascript_CORE)
         set_target_properties(_javascript_Core PROPERTIES VERSION ${_javascript_CORE_VERSION} SOVERSION ${_javascript_CORE_VERSION_MAJOR})

Modified: trunk/Source/_javascript_Core/ChangeLog (199650 => 199651)


--- trunk/Source/_javascript_Core/ChangeLog	2016-04-18 06:06:42 UTC (rev 199650)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-04-18 06:52:41 UTC (rev 199651)
@@ -1,3 +1,14 @@
+2016-04-17  Jeremy Huddleston Sequoia  <[email protected]>
+
+        Fix incorrect assumption that APPLE implies Mac.
+        https://bugs.webkit.org/show_bug.cgi?id=156683
+    
+        Addresses build failure introduced in r199094
+
+        Reviewed by Alex Christensen.
+
+        * CMakeLists.txt:
+
 2016-04-17  Benjamin Poulain  <[email protected]>
 
         [JSC] ReduceDoubleToFloat should work accross Phis
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to