Changeset 175244 in webkit


Ignore:
Timestamp:
Oct 28, 2014 12:05:37 AM (9 years ago)
Author:
mitz@apple.com
Message:

[Mac] OS X Mavericks build broken with public SDK
https://bugs.webkit.org/show_bug.cgi?id=138108

Reviewed by Mark Rowe.

  • Shared/API/Cocoa/WKFoundation.h: Only define the NSEventModifierFlags type when using a

version of the OS X SDK that doesn’t define it.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r175238 r175244  
     12014-10-28  Dan Bernstein  <mitz@apple.com>
     2
     3        [Mac] OS X Mavericks build broken with public SDK
     4        https://bugs.webkit.org/show_bug.cgi?id=138108
     5
     6        Reviewed by Mark Rowe.
     7
     8        * Shared/API/Cocoa/WKFoundation.h: Only define the NSEventModifierFlags type when using a
     9        version of the OS X SDK that doesn’t define it.
     10
    1112014-10-27  Conrad Shultz  <conrad_shultz@apple.com>
    212
  • trunk/Source/WebKit2/Shared/API/Cocoa/WKFoundation.h

    r170495 r175244  
    5454#ifdef __OBJC__
    5555#import <Foundation/Foundation.h>
     56
     57#if __MAC_OS_X_VERSION_MAX_ALLOWED < 101000
    5658typedef NSUInteger NSEventModifierFlags;
     59#endif
    5760
    5861#if __MAC_OS_X_VERSION_MAX_ALLOWED < 1090
Note: See TracChangeset for help on using the changeset viewer.