[Webkit-unassigned] [Bug 108101] New: PLATFORM(IOS) should come before __MAC_OS_X_VERSION_MIN_REQUIRED

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jan 28 12:30:41 PST 2013


https://bugs.webkit.org/show_bug.cgi?id=108101

           Summary: PLATFORM(IOS) should come before
                    __MAC_OS_X_VERSION_MIN_REQUIRED
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Platform
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: psolanki at apple.com


__MAC_OS_X_VERSION_MIN_REQUIRED is not defined on iOS so code like the following fails to achieve its intended purpose

#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1080 && !PLATFORM(IOS)

It should be updated to

#if !PLATFORM(IOS) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1080

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list