Changeset 180865 in webkit


Ignore:
Timestamp:
Mar 1, 2015, 11:12:53 AM (10 years ago)
Author:
Brent Fulgham
Message:

[Win] Unreviewed build fix.

  • WebCorePrefix.h: Provide some default definitions to help build on Windows

machines with different application support libraries.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r180848 r180865  
     12015-03-01  Brent Fulgham  <bfulgham@apple.com>
     2
     3        [Win] Unreviewed build fix.
     4
     5        * WebCorePrefix.h: Provide some default definitions to help build on Windows
     6        machines with different application support libraries.
     7
    182015-02-28  Simon Fraser  <simon.fraser@apple.com>
    29
  • trunk/Source/WebCore/WebCorePrefix.h

    r180653 r180865  
    9898
    9999#include <CoreFoundation/CoreFoundation.h>
     100
     101#if OS(WINDOWS)
     102#ifndef CF_IMPLICIT_BRIDGING_ENABLED
     103#define CF_IMPLICIT_BRIDGING_ENABLED
     104#endif
     105
     106#ifndef CF_IMPLICIT_BRIDGING_DISABLED
     107#define CF_IMPLICIT_BRIDGING_DISABLED
     108#endif
     109
     110#include <CoreFoundation/CFBase.h>
     111
     112#ifndef CF_ENUM
     113#define CF_ENUM(_type, _name) _type _name; enum
     114#endif
     115#ifndef CF_OPTIONS
     116#define CF_OPTIONS(_type, _name) _type _name; enum
     117#endif
     118#ifndef CF_ENUM_DEPRECATED
     119#define CF_ENUM_DEPRECATED(_macIntro, _macDep, _iosIntro, _iosDep)
     120#endif
     121#ifndef CF_ENUM_AVAILABLE
     122#define CF_ENUM_AVAILABLE(_mac, _ios)
     123#endif
     124#endif
     125
    100126#if PLATFORM(WIN_CAIRO)
    101127#include <ConditionalMacros.h>
Note: See TracChangeset for help on using the changeset viewer.