Changeset 64591 in webkit


Ignore:
Timestamp:
Aug 3, 2010 3:04:23 PM (14 years ago)
Author:
ggaren@apple.com
Message:

2010-08-03 Alex Milowski <alex@milowski.com>

Reviewed by Beth Dakin.

Changed the ENABLE_MATHML value to enable MathML by default.

  • Configurations/FeatureDefines.xcconfig:

2010-08-03 Geoffrey Garen <ggaren@apple.com>

Reviewed by Mark Rowe.

https://bugs.webkit.org/show_bug.cgi?id=43444
PLATFORM(CF) is false on Windows in JavaScriptCore

Moved some PLATFORM(WIN) #defines down into JavaScriptCore.

  • config.h: Moved WTF_PLATFORM_CF 1 and WTF_USE_PTHREADS 0 to wtf/Platform.h. Removed #undef WTF_USE_WININET because wtf/Platform.h no longer #defines it.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r64589 r64591  
    2626        (JSC::JSArray::increaseVectorPrefixLength):
    2727        * runtime/JSArray.h:
     28
     292010-08-03  Geoffrey Garen  <ggaren@apple.com>
     30
     31        Reviewed by Mark Rowe.
     32
     33        https://bugs.webkit.org/show_bug.cgi?id=43444
     34        PLATFORM(CF) is false on Windows in JavaScriptCore
     35
     36        Moved some PLATFORM(WIN) #defines down into JavaScriptCore.
     37
     38        * wtf/Platform.h: Added WTF_PLATFORM_CF 1 and WTF_USE_PTHREADS 0, inherited
     39        from WebCore/config.h. Removed WTF_USE_WININET 1 since WebCore/config.h
     40        just #undefined that later.
    2841
    29422010-08-03  Geoffrey Garen  <ggaren@apple.com>
  • trunk/JavaScriptCore/wtf/Platform.h

    r64401 r64591  
    649649
    650650#if PLATFORM(WIN)
    651 #define WTF_USE_WININET 1
     651#define WTF_PLATFORM_CF 1
     652#define WTF_USE_PTHREADS 0
    652653#endif
    653654
  • trunk/WebCore/ChangeLog

    r64589 r64591  
     12010-08-03  Geoffrey Garen  <ggaren@apple.com>
     2
     3        Reviewed by Mark Rowe.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=43444
     6        PLATFORM(CF) is false on Windows in JavaScriptCore
     7
     8        Moved some PLATFORM(WIN) #defines down into JavaScriptCore.
     9
     10        * config.h: Moved WTF_PLATFORM_CF 1 and WTF_USE_PTHREADS 0 to wtf/Platform.h.
     11        Removed #undef WTF_USE_WININET because wtf/Platform.h no longer #defines it.
     12
    1132010-08-03  Alex Milowski  <alex@milowski.com>
    214
  • trunk/WebCore/config.h

    r64272 r64591  
    153153#undef WTF_USE_CURL
    154154#endif
    155 #undef WTF_USE_WININET
    156 #define WTF_PLATFORM_CF 1
    157 #define WTF_USE_PTHREADS 0
    158155#endif
    159156
Note: See TracChangeset for help on using the changeset viewer.