Title: [171965] trunk/Source
Revision
171965
Author
m...@apple.com
Date
2014-08-01 23:06:53 -0700 (Fri, 01 Aug 2014)

Log Message

<rdar://problem/17891752> [iOS] WebKit links against libraries it doesn’t use
https://bugs.webkit.org/show_bug.cgi?id=135536

Reviewed by Tim Horton.


Source/WebKit/mac: 
* Configurations/WebKitLegacy.xcconfig: Removed -framework MobileAsset from
OTHER_LDFLAGS_iphoneos.

Source/WebKit2: 
* Configurations/WebKit.xcconfig: Removed -lassertion_extension and -framework MobileAsset
from FRAMEWORK_AND_LIBRARY_LDFLAGS_iphonesimulator.

Modified Paths

Diff

Modified: trunk/Source/WebKit/mac/ChangeLog (171964 => 171965)


--- trunk/Source/WebKit/mac/ChangeLog	2014-08-02 05:10:46 UTC (rev 171964)
+++ trunk/Source/WebKit/mac/ChangeLog	2014-08-02 06:06:53 UTC (rev 171965)
@@ -1,3 +1,13 @@
+2014-08-01  Dan Bernstein  <m...@apple.com>
+
+        <rdar://problem/17891752> [iOS] WebKit links against libraries it doesn’t use
+        https://bugs.webkit.org/show_bug.cgi?id=135536
+
+        Reviewed by Tim Horton.
+
+        * Configurations/WebKitLegacy.xcconfig: Removed -framework MobileAsset from
+        OTHER_LDFLAGS_iphoneos.
+
 2014-07-30  Andy Estes  <aes...@apple.com>
 
         USE(CONTENT_FILTERING) should be ENABLE(CONTENT_FILTERING)

Modified: trunk/Source/WebKit/mac/Configurations/WebKitLegacy.xcconfig (171964 => 171965)


--- trunk/Source/WebKit/mac/Configurations/WebKitLegacy.xcconfig	2014-08-02 05:10:46 UTC (rev 171964)
+++ trunk/Source/WebKit/mac/Configurations/WebKitLegacy.xcconfig	2014-08-02 06:06:53 UTC (rev 171965)
@@ -85,7 +85,7 @@
 UMBRELLA_FRAMEWORKS_DIR = $(PRODUCTION_FRAMEWORKS_DIR)/WebKit.framework/Versions/A/Frameworks;
 
 OTHER_LDFLAGS = $(inherited) $(OTHER_LDFLAGS_$(PLATFORM_NAME));
-OTHER_LDFLAGS_iphoneos = -lobjc -framework CFNetwork -framework CoreFoundation -framework CoreGraphics -framework CoreText -framework Foundation -framework GraphicsServices -framework ImageIO -framework OpenGLES -framework MobileAsset -lMobileGestalt;
+OTHER_LDFLAGS_iphoneos = -lobjc -framework CFNetwork -framework CoreFoundation -framework CoreGraphics -framework CoreText -framework Foundation -framework GraphicsServices -framework ImageIO -framework OpenGLES -lMobileGestalt;
 OTHER_LDFLAGS_iphonesimulator = $(OTHER_LDFLAGS_iphoneos);
 OTHER_LDFLAGS_macosx = -framework Carbon -framework Cocoa -framework DiskArbitration -framework IOKit -framework OpenGL;
 

Modified: trunk/Source/WebKit2/ChangeLog (171964 => 171965)


--- trunk/Source/WebKit2/ChangeLog	2014-08-02 05:10:46 UTC (rev 171964)
+++ trunk/Source/WebKit2/ChangeLog	2014-08-02 06:06:53 UTC (rev 171965)
@@ -1,3 +1,13 @@
+2014-08-01  Dan Bernstein  <m...@apple.com>
+
+        <rdar://problem/17891752> [iOS] WebKit links against libraries it doesn’t use
+        https://bugs.webkit.org/show_bug.cgi?id=135536
+
+        Reviewed by Tim Horton.
+
+        * Configurations/WebKit.xcconfig: Removed -lassertion_extension and -framework MobileAsset
+        from FRAMEWORK_AND_LIBRARY_LDFLAGS_iphonesimulator.
+
 2014-08-01  Joseph Pecoraro  <pecor...@apple.com>
 
         [iOS WK2] Add extension read permission to network sandbox profile

Modified: trunk/Source/WebKit2/Configurations/WebKit.xcconfig (171964 => 171965)


--- trunk/Source/WebKit2/Configurations/WebKit.xcconfig	2014-08-02 05:10:46 UTC (rev 171964)
+++ trunk/Source/WebKit2/Configurations/WebKit.xcconfig	2014-08-02 06:06:53 UTC (rev 171965)
@@ -30,7 +30,7 @@
 DYLIB_INSTALL_NAME_BASE = $(NORMAL_WEBKIT_FRAMEWORKS_DIR);
 
 FRAMEWORK_AND_LIBRARY_LDFLAGS = $(FRAMEWORK_AND_LIBRARY_LDFLAGS_$(PLATFORM_NAME));
-FRAMEWORK_AND_LIBRARY_LDFLAGS_iphonesimulator = -lobjc -framework AssertionServices -framework CFNetwork -framework CoreFoundation -framework CoreGraphics -framework CorePDF -framework CoreText -framework Foundation -framework GraphicsServices -framework ImageIO -framework UIKit -framework OpenGLES -framework MobileAsset -framework MobileCoreServices -lMobileGestalt -lassertion_extension;
+FRAMEWORK_AND_LIBRARY_LDFLAGS_iphonesimulator = -lobjc -framework AssertionServices -framework CFNetwork -framework CoreFoundation -framework CoreGraphics -framework CorePDF -framework CoreText -framework Foundation -framework GraphicsServices -framework ImageIO -framework UIKit -framework OpenGLES -framework MobileCoreServices -lMobileGestalt;
 FRAMEWORK_AND_LIBRARY_LDFLAGS_iphoneos = $(FRAMEWORK_AND_LIBRARY_LDFLAGS_iphonesimulator) -framework IOSurface;
 FRAMEWORK_AND_LIBRARY_LDFLAGS_macosx = -framework ApplicationServices -framework Carbon -framework Cocoa -framework CoreServices -framework IOKit -framework CoreAudio -framework IOSurface -framework OpenGL;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to