Title: [258519] trunk/Source/WebKitLegacy/mac
Revision
258519
Author
[email protected]
Date
2020-03-16 14:41:31 -0700 (Mon, 16 Mar 2020)

Log Message

Always include System.framework in WebKitLegacy's CPLUSPLUSFLAGS
https://bugs.webkit.org/show_bug.cgi?id=209147

Reviewed by Darin Adler.

* Configurations/Base.xcconfig:
* Configurations/WebKitLegacy.xcconfig:
Bring WebKitLegacy's xcconfigs in line with all the other projects,
adding System.framework globally, and in Base.xcconfig.

Modified Paths

Diff

Modified: trunk/Source/WebKitLegacy/mac/ChangeLog (258518 => 258519)


--- trunk/Source/WebKitLegacy/mac/ChangeLog	2020-03-16 21:11:00 UTC (rev 258518)
+++ trunk/Source/WebKitLegacy/mac/ChangeLog	2020-03-16 21:41:31 UTC (rev 258519)
@@ -1,3 +1,15 @@
+2020-03-16  Timothy Horton  <[email protected]>
+
+        Always include System.framework in WebKitLegacy's CPLUSPLUSFLAGS
+        https://bugs.webkit.org/show_bug.cgi?id=209147
+
+        Reviewed by Darin Adler.
+
+        * Configurations/Base.xcconfig:
+        * Configurations/WebKitLegacy.xcconfig:
+        Bring WebKitLegacy's xcconfigs in line with all the other projects,
+        adding System.framework globally, and in Base.xcconfig.
+
 2020-03-16  Simon Fraser  <[email protected]>
 
         Remove FrameView::scheduleRenderingUpdate()

Modified: trunk/Source/WebKitLegacy/mac/Configurations/Base.xcconfig (258518 => 258519)


--- trunk/Source/WebKitLegacy/mac/Configurations/Base.xcconfig	2020-03-16 21:11:00 UTC (rev 258518)
+++ trunk/Source/WebKitLegacy/mac/Configurations/Base.xcconfig	2020-03-16 21:41:31 UTC (rev 258519)
@@ -123,7 +123,7 @@
 SUPPORTED_PLATFORMS = iphoneos iphonesimulator macosx appletvos appletvsimulator watchos watchsimulator;
 
 OTHER_CFLAGS = $(ASAN_OTHER_CFLAGS);
-OTHER_CPLUSPLUSFLAGS = $(ASAN_OTHER_CPLUSPLUSFLAGS);
+OTHER_CPLUSPLUSFLAGS = $(ASAN_OTHER_CPLUSPLUSFLAGS) -isystem $(SDKROOT)/System/Library/Frameworks/System.framework/PrivateHeaders;
 OTHER_LDFLAGS = $(ASAN_OTHER_LDFLAGS);
 
 WK_COCOA_TOUCH = $(WK_COCOA_TOUCH_$(WK_PLATFORM_NAME));

Modified: trunk/Source/WebKitLegacy/mac/Configurations/WebKitLegacy.xcconfig (258518 => 258519)


--- trunk/Source/WebKitLegacy/mac/Configurations/WebKitLegacy.xcconfig	2020-03-16 21:11:00 UTC (rev 258518)
+++ trunk/Source/WebKitLegacy/mac/Configurations/WebKitLegacy.xcconfig	2020-03-16 21:41:31 UTC (rev 258519)
@@ -45,7 +45,6 @@
 
 OTHER_CFLAGS = $(inherited) $(OTHER_CFLAGS_COCOA_TOUCH);
 OTHER_CFLAGS_COCOA_TOUCH = $(OTHER_CFLAGS_COCOA_TOUCH_$(WK_IS_COCOA_TOUCH));
-OTHER_CFLAGS_COCOA_TOUCH_YES = -isystem $(SDKROOT)/System/Library/Frameworks/System.framework/PrivateHeaders;
 OTHER_CFLAGS_COCOA_TOUCH_NO = -iframework $(SDKROOT)$(SYSTEM_LIBRARY_DIR)/Frameworks/WebKit.framework/Frameworks;
 OTHER_CPLUSPLUSFLAGS = $(inherited) $(OTHER_CFLAGS_COCOA_TOUCH);
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to