Changeset 173393 in webkit


Ignore:
Timestamp:
Sep 8, 2014 11:59:15 AM (10 years ago)
Author:
mitz@apple.com
Message:

HAVE(VOUCHERS) is not available outside of WebKit2
https://bugs.webkit.org/show_bug.cgi?id=136637

Reviewed by Tim Horton.

Source/WebKit2:

  • config.h: Moved the definition of HAVE_VOUCHERS from here to wtf’s Platform.h.

Source/WTF:

  • wtf/Platform.h: Moved the definition of HAVE_VOUCHERS from WebKit2’s config.h here.
Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r173385 r173393  
     12014-09-08  Dan Bernstein  <mitz@apple.com>
     2
     3        HAVE(VOUCHERS) is not available outside of WebKit2
     4        https://bugs.webkit.org/show_bug.cgi?id=136637
     5
     6        Reviewed by Tim Horton.
     7
     8        * wtf/Platform.h: Moved the definition of HAVE_VOUCHERS from WebKit2’s config.h here.
     9
    1102014-09-08  Tim Horton  <timothy_horton@apple.com>
    211
  • trunk/Source/WTF/wtf/Platform.h

    r173310 r173393  
    10041004#endif
    10051005
     1006#ifndef HAVE_VOUCHERS
     1007#if PLATFORM(IOS) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000)
     1008#define HAVE_VOUCHERS 1
     1009#endif
     1010#endif
     1011
    10061012#define WTF_USE_GRAMMAR_CHECKING 1
    10071013
  • trunk/Source/WebKit2/ChangeLog

    r173387 r173393  
     12014-09-08  Dan Bernstein  <mitz@apple.com>
     2
     3        HAVE(VOUCHERS) is not available outside of WebKit2
     4        https://bugs.webkit.org/show_bug.cgi?id=136637
     5
     6        Reviewed by Tim Horton.
     7
     8        * config.h: Moved the definition of HAVE_VOUCHERS from here to wtf’s Platform.h.
     9
    1102014-09-08  Tim Horton  <timothy_horton@apple.com>
    211
  • trunk/Source/WebKit2/config.h

    r173283 r173393  
    8888#endif
    8989
    90 #ifndef HAVE_VOUCHERS
    91 #if PLATFORM(IOS) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000)
    92 #define HAVE_VOUCHERS 1
    93 #endif
    94 #endif
    95 
    9690#ifndef HAVE_SEC_ACCESS_CONTROL
    9791#if PLATFORM(IOS) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000)
Note: See TracChangeset for help on using the changeset viewer.