Changeset 171965 in webkit


Ignore:
Timestamp:
Aug 1, 2014 11:06:53 PM (10 years ago)
Author:
mitz@apple.com
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.

Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/mac/ChangeLog

    r171826 r171965  
     12014-08-01  Dan Bernstein  <mitz@apple.com>
     2
     3        <rdar://problem/17891752> [iOS] WebKit links against libraries it doesn’t use
     4        https://bugs.webkit.org/show_bug.cgi?id=135536
     5
     6        Reviewed by Tim Horton.
     7
     8        * Configurations/WebKitLegacy.xcconfig: Removed -framework MobileAsset from
     9        OTHER_LDFLAGS_iphoneos.
     10
    1112014-07-30  Andy Estes  <aestes@apple.com>
    212
  • trunk/Source/WebKit/mac/Configurations/WebKitLegacy.xcconfig

    r171212 r171965  
    8686
    8787OTHER_LDFLAGS = $(inherited) $(OTHER_LDFLAGS_$(PLATFORM_NAME));
    88 OTHER_LDFLAGS_iphoneos = -lobjc -framework CFNetwork -framework CoreFoundation -framework CoreGraphics -framework CoreText -framework Foundation -framework GraphicsServices -framework ImageIO -framework OpenGLES -framework MobileAsset -lMobileGestalt;
     88OTHER_LDFLAGS_iphoneos = -lobjc -framework CFNetwork -framework CoreFoundation -framework CoreGraphics -framework CoreText -framework Foundation -framework GraphicsServices -framework ImageIO -framework OpenGLES -lMobileGestalt;
    8989OTHER_LDFLAGS_iphonesimulator = $(OTHER_LDFLAGS_iphoneos);
    9090OTHER_LDFLAGS_macosx = -framework Carbon -framework Cocoa -framework DiskArbitration -framework IOKit -framework OpenGL;
  • trunk/Source/WebKit2/ChangeLog

    r171959 r171965  
     12014-08-01  Dan Bernstein  <mitz@apple.com>
     2
     3        <rdar://problem/17891752> [iOS] WebKit links against libraries it doesn’t use
     4        https://bugs.webkit.org/show_bug.cgi?id=135536
     5
     6        Reviewed by Tim Horton.
     7
     8        * Configurations/WebKit.xcconfig: Removed -lassertion_extension and -framework MobileAsset
     9        from FRAMEWORK_AND_LIBRARY_LDFLAGS_iphonesimulator.
     10
    1112014-08-01  Joseph Pecoraro  <pecoraro@apple.com>
    212
  • trunk/Source/WebKit2/Configurations/WebKit.xcconfig

    r171212 r171965  
    3131
    3232FRAMEWORK_AND_LIBRARY_LDFLAGS = $(FRAMEWORK_AND_LIBRARY_LDFLAGS_$(PLATFORM_NAME));
    33 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;
     33FRAMEWORK_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;
    3434FRAMEWORK_AND_LIBRARY_LDFLAGS_iphoneos = $(FRAMEWORK_AND_LIBRARY_LDFLAGS_iphonesimulator) -framework IOSurface;
    3535FRAMEWORK_AND_LIBRARY_LDFLAGS_macosx = -framework ApplicationServices -framework Carbon -framework Cocoa -framework CoreServices -framework IOKit -framework CoreAudio -framework IOSurface -framework OpenGL;
Note: See TracChangeset for help on using the changeset viewer.