Bug 126534

Summary: [WinCairo] Compile error, INTMAX_MAX is not defined.
Product: WebKit Reporter: peavo
Component: WebKit Misc.Assignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: achristensen, bfulgham, commit-queue, roger_fong
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: PC   
OS: Unspecified   
Attachments:
Description Flags
Patch none

Description peavo 2014-01-06 12:05:35 PST
While compiling WebKit, I get the following compile error:

C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\ratio(122): error C2065: 'INTMAX_MAX' : undeclared identifier (..\..\win\WebBackForwardList.cpp)

INTMAX_MAX is defined in stdint.h, but only if __STDC_LIMIT_MACROS is defined. We need to define it.

A similar fix was done in r161149.
Comment 1 peavo 2014-01-06 12:12:43 PST
Created attachment 220446 [details]
Patch
Comment 2 Brent Fulgham 2014-01-08 10:48:04 PST
Comment on attachment 220446 [details]
Patch

r=me
Comment 3 WebKit Commit Bot 2014-01-08 11:16:18 PST
Comment on attachment 220446 [details]
Patch

Clearing flags on attachment: 220446

Committed r161513: <http://trac.webkit.org/changeset/161513>
Comment 4 WebKit Commit Bot 2014-01-08 11:16:20 PST
All reviewed patches have been landed.  Closing bug.
Comment 5 peavo 2014-01-08 11:32:28 PST
(In reply to comment #2)
> (From update of attachment 220446 [details])
> r=me

Thanks :)