Changeset 142189 in webkit


Ignore:
Timestamp:
Feb 7, 2013 3:29:42 PM (11 years ago)
Author:
benjamin@webkit.org
Message:

Fix two exports of WebCore symbols on iOS
https://bugs.webkit.org/show_bug.cgi?id=109238

Patch by Benjamin Poulain <bpoulain@apple.com> on 2013-02-07
Reviewed by David Kilzer.

  • WebCore.exp.in: Export wkCTFontTransformGlyphs but not

wkCGContextDrawsWithCorrectShadowOffsets on iOS.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r142187 r142189  
     12013-02-07  Benjamin Poulain  <bpoulain@apple.com>
     2
     3        Fix two exports of WebCore symbols on iOS
     4        https://bugs.webkit.org/show_bug.cgi?id=109238
     5
     6        Reviewed by David Kilzer.
     7
     8        * WebCore.exp.in: Export wkCTFontTransformGlyphs but not
     9        wkCGContextDrawsWithCorrectShadowOffsets on iOS.
     10
    1112013-02-07  Hans Muller  <hmuller@adobe.com>
    212
  • trunk/Source/WebCore/WebCore.exp.in

    r141789 r142189  
    15261526_wkCGContextGetShouldSmoothFonts
    15271527_wkCGContextResetClip
    1528 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1080
     1528#if !PLATFORM(IOS) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1080
    15291529_wkCGContextDrawsWithCorrectShadowOffsets
    15301530#endif
    15311531_wkCGPatternCreateWithImageAndTransform
    1532 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090
     1532#if PLATFORM(IOS) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090
    15331533_wkCTFontTransformGlyphs
    15341534#endif
Note: See TracChangeset for help on using the changeset viewer.