Changeset 52637 in webkit


Ignore:
Timestamp:
Dec 29, 2009 3:19:45 PM (14 years ago)
Author:
eric@webkit.org
Message:

2009-12-29 Laszlo Gombos <Laszlo Gombos>

Reviewed by Maciej Stachowiak.

PLATFORM(CAIRO) should be defined by WIN_CAIRO define
https://bugs.webkit.org/show_bug.cgi?id=22250

  • wtf/Platform.h: Define WTF_PLATFORM_CAIRO for GTK port only For the WinCairo port WTF_PLATFORM_CAIRO is already defined in config.h
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r52602 r52637  
     12009-12-29  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
     2
     3        Reviewed by Maciej Stachowiak.
     4
     5        PLATFORM(CAIRO) should be defined by WIN_CAIRO define
     6        https://bugs.webkit.org/show_bug.cgi?id=22250
     7
     8        * wtf/Platform.h: Define WTF_PLATFORM_CAIRO for GTK port only
     9        For the WinCairo port WTF_PLATFORM_CAIRO is already defined in config.h
     10
    1112009-12-28  Shu Chang  <Chang.Shu@nokia.com>
    212
  • trunk/JavaScriptCore/wtf/Platform.h

    r52355 r52637  
    211211#endif
    212212
    213 /* Makes PLATFORM(WIN) default to PLATFORM(CAIRO) */
    214 /* FIXME: This should be changed from a blacklist to a whitelist */
    215 #if !PLATFORM(MAC) && !PLATFORM(QT) && !PLATFORM(WX) && !PLATFORM(CHROMIUM) && !PLATFORM(WINCE) && !PLATFORM(HAIKU) && !PLATFORM(ANDROID)
     213#if PLATFORM(GTK)
    216214#define WTF_PLATFORM_CAIRO 1
    217215#endif
Note: See TracChangeset for help on using the changeset viewer.