Changeset 211503 in webkit


Ignore:
Timestamp:
Feb 1, 2017 12:03:48 PM (7 years ago)
Author:
Wenson Hsieh
Message:

Unreviewed, fix the WebKit nightly open source build
<rdar://problem/30308635>

We cannot assume all internal SDKs have the latest WebKitAdditions, so we need an explicit header check here.

  • wtf/Platform.h:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r211482 r211503  
     12017-02-01  Wenson Hsieh  <wenson_hsieh@apple.com>
     2
     3        Unreviewed, fix the WebKit nightly open source build
     4        <rdar://problem/30308635>
     5
     6        We cannot assume all internal SDKs have the latest WebKitAdditions, so we need an explicit header check here.
     7
     8        * wtf/Platform.h:
     9
    1102017-02-01  Andreas Kling  <akling@apple.com>
    211
  • trunk/Source/WTF/wtf/Platform.h

    r211342 r211503  
    670670#include <wtf/FeatureDefines.h>
    671671
    672 #if USE(APPLE_INTERNAL_SDK)
     672#if USE(APPLE_INTERNAL_SDK) && __has_include(<WebKitAdditions/AdditionalFeatureDefines.h>)
    673673#include <WebKitAdditions/AdditionalFeatureDefines.h>
    674674#endif
Note: See TracChangeset for help on using the changeset viewer.