Changeset 272348 in webkit


Ignore:
Timestamp:
Feb 3, 2021 4:08:45 PM (3 years ago)
Author:
achristensen@apple.com
Message:

Fix Catalyst build after r272228
https://bugs.webkit.org/show_bug.cgi?id=220683
<rdar://problem/73940814>

  • wtf/PlatformHave.h:

Turn off our use of UIEventAttribution on Catalyst until we update our internal bots.

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r272343 r272348  
     12021-02-03  Alex Christensen  <achristensen@webkit.org>
     2
     3        Fix Catalyst build after r272228
     4        https://bugs.webkit.org/show_bug.cgi?id=220683
     5        <rdar://problem/73940814>
     6
     7        * wtf/PlatformHave.h:
     8        Turn off our use of UIEventAttribution on Catalyst until we update our internal bots.
     9
    1102021-02-03  Jiewen Tan  <jiewen_tan@apple.com>
    211
  • trunk/Source/WTF/wtf/PlatformHave.h

    r272234 r272348  
    744744#endif
    745745
    746 #if ((PLATFORM(IOS) || PLATFORM(MACCATALYST)) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 150000)
     746// FIXME: This should include PLATFORM(MACCATALYST) but our internal bots have not updated enough yet.
     747// Try again when they do.  See rdar://problem/73940814
     748#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 150000
    747749#define HAVE_UI_EVENT_ATTRIBUTION 1
    748750#endif
Note: See TracChangeset for help on using the changeset viewer.