Title: [237736] tags/Safari-607.1.12.1/Source/_javascript_Core
Revision
237736
Author
[email protected]
Date
2018-11-02 09:49:13 -0700 (Fri, 02 Nov 2018)

Log Message

Cherry-pick r237707. rdar://problem/45749094

    Unreviewed, _javascript_Core should only guarantee to produce a
    modulemap if we are building for iOSMac.

    * Configurations/_javascript_Core.xcconfig:

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@237707 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: tags/Safari-607.1.12.1/Source/_javascript_Core/ChangeLog (237735 => 237736)


--- tags/Safari-607.1.12.1/Source/_javascript_Core/ChangeLog	2018-11-02 15:59:23 UTC (rev 237735)
+++ tags/Safari-607.1.12.1/Source/_javascript_Core/ChangeLog	2018-11-02 16:49:13 UTC (rev 237736)
@@ -1,3 +1,21 @@
+2018-11-02  Kocsen Chung  <[email protected]>
+
+        Cherry-pick r237707. rdar://problem/45749094
+
+    Unreviewed, _javascript_Core should only guarantee to produce a
+    modulemap if we are building for iOSMac.
+    
+    * Configurations/_javascript_Core.xcconfig:
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@237707 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2018-11-01  Keith Miller  <[email protected]>
+
+            Unreviewed, _javascript_Core should only guarantee to produce a
+            modulemap if we are building for iOSMac.
+
+            * Configurations/_javascript_Core.xcconfig:
+
 2018-10-31  Jim Mason  <[email protected]>
 
         Static global 'fastHandlerInstalled' conditionally declared in WasmFaultSignalHandler.cpp

Modified: tags/Safari-607.1.12.1/Source/_javascript_Core/Configurations/_javascript_Core.xcconfig (237735 => 237736)


--- tags/Safari-607.1.12.1/Source/_javascript_Core/Configurations/_javascript_Core.xcconfig	2018-11-02 15:59:23 UTC (rev 237735)
+++ tags/Safari-607.1.12.1/Source/_javascript_Core/Configurations/_javascript_Core.xcconfig	2018-11-02 16:49:13 UTC (rev 237736)
@@ -24,7 +24,9 @@
 #include "FeatureDefines.xcconfig"
 #include "Version.xcconfig"
 
-DEFINES_MODULE = YES;
+DEFINES_MODULE = $(DEFINES_MODULE_$(WK_PLATFORM_NAME))
+DEFINES_MODULE_iosmac = YES;
+DEFINES_MODULE_ = NO;
 MODULEMAP_FILE = $(SRCROOT)/_javascript_Core.modulemap;
 
 // Prevent C++ standard library operator new, delete and their related exception types from being exported as weak symbols.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to