Changeset 57108 in webkit


Ignore:
Timestamp:
Apr 5, 2010 5:55:17 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-05 Laszlo Gombos <Laszlo Gombos>

Reviewed by Kenneth Rohde Christiansen.

[Symbian] Consolidate Symbian WINSCW environment configuration
https://bugs.webkit.org/show_bug.cgi?id=37100

Move the "undefinition" of WIN32 and _WIN32 from WebCore/config.h
to JavaScriptCore/wtf/Platform.h as it is not specific to WebCore.

PLATFORM(WIN) and OS(WIN) no longer needs to be undefined as
undefining WIN32 takes care of it.

  • wtf/Platform.h:

2010-04-05 Laszlo Gombos <Laszlo Gombos>

Reviewed by Kenneth Rohde Christiansen.

[Symbian] Consolidate Symbian WINSCW environment configuration
https://bugs.webkit.org/show_bug.cgi?id=37100

Move the "undefinition" of WIN32 and _WIN32 from WebCore/config.h
to JavaScriptCore/wtf/Platform.h as it is not specific to WebCore.

No new tests as there is no new functionality.

  • config.h:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r57055 r57108  
     12010-04-05  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Symbian] Consolidate Symbian WINSCW environment configuration
     6        https://bugs.webkit.org/show_bug.cgi?id=37100
     7
     8        Move the "undefinition" of WIN32 and _WIN32 from WebCore/config.h
     9        to JavaScriptCore/wtf/Platform.h as it is not specific to WebCore.
     10
     11        PLATFORM(WIN) and OS(WIN) no longer needs to be undefined as
     12        undefining WIN32 takes care of it.
     13
     14        * wtf/Platform.h:
     15
    1162010-04-03  Gavin Barraclough  <barraclough@apple.com>
    217
  • trunk/JavaScriptCore/wtf/Platform.h

    r57025 r57108  
    9292#if defined(__WINSCW__)
    9393#define WTF_COMPILER_WINSCW 1
     94/* cross-compiling, it is not really windows */
     95#undef WIN32
     96#undef _WIN32
    9497#endif
    9598
     
    398401/* OS(SYMBIAN) - Symbian */
    399402#if defined (__SYMBIAN32__)
    400 /* we are cross-compiling, it is not really windows */
    401 #undef WTF_OS_WINDOWS
    402 #undef WTF_PLATFORM_WIN
    403403#define WTF_OS_SYMBIAN 1
    404404#endif
  • trunk/WebCore/ChangeLog

    r57107 r57108  
     12010-04-05  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Symbian] Consolidate Symbian WINSCW environment configuration
     6        https://bugs.webkit.org/show_bug.cgi?id=37100
     7
     8        Move the "undefinition" of WIN32 and _WIN32 from WebCore/config.h
     9        to JavaScriptCore/wtf/Platform.h as it is not specific to WebCore.
     10
     11        No new tests as there is no new functionality.
     12
     13        * config.h:
     14
    1152010-04-05  Leandro Pereira  <leandro@profusion.mobi>
    216
  • trunk/WebCore/config.h

    r57076 r57108  
    171171
    172172#if OS(SYMBIAN)
    173 #undef WIN32
    174 #undef _WIN32
    175173#define USE_SYSTEM_MALLOC 1
    176174#endif
Note: See TracChangeset for help on using the changeset viewer.