Changeset 161513 in webkit


Ignore:
Timestamp:
Jan 8, 2014 11:20:17 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

[WinCairo] Compile error.
https://bugs.webkit.org/show_bug.cgi?id=126534

Patch by peavo@outlook.com <peavo@outlook.com> on 2014-01-08
Reviewed by Brent Fulgham.

  • WebKitPrefix.h: Define STDC_LIMIT_MACROS, so INTMAX_MAX will be defined (needed by std C++ library).
Location:
trunk/Source/WebKit/win
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/win/ChangeLog

    r161338 r161513  
     12014-01-08  peavo@outlook.com  <peavo@outlook.com>
     2
     3        [WinCairo] Compile error.
     4        https://bugs.webkit.org/show_bug.cgi?id=126534
     5
     6        Reviewed by Brent Fulgham.
     7
     8        * WebKitPrefix.h: Define __STDC_LIMIT_MACROS, so INTMAX_MAX will be defined (needed by std C++ library).
     9
    1102014-01-06  László Langó  <lango@inf.u-szeged.hu>
    211
  • trunk/Source/WebKit/win/WebKitPrefix.h

    r156302 r161513  
    3939#endif
    4040
     41// Needed for limit defines, like INTMAX_MAX, which is used by the std C++ library
     42#ifndef __STDC_LIMIT_MACROS
     43#define __STDC_LIMIT_MACROS
     44#endif
     45
    4146#include <CoreFoundation/CoreFoundation.h>
    4247#include <WebKit/WebKit.h>
Note: See TracChangeset for help on using the changeset viewer.