Changeset 14162 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
May 2, 2006, 3:48:58 PM (19 years ago)
Author:
sfalken
Message:

2006-05-02 Steve Falkenburg <[email protected]>

Reviewed by eric.

  • JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj: set NDEBUG for release build
  • kxmlcore/FastMalloc.cpp: Prevent USE_SYSTEM_MALLOC from being defined twice
Location:
trunk/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r14156 r14162  
     12006-05-02  Steve Falkenburg  <[email protected]>
     2
     3        Reviewed by eric.
     4
     5        * JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj: set NDEBUG for release build
     6        * kxmlcore/FastMalloc.cpp: Prevent USE_SYSTEM_MALLOC from being defined twice
     7
    182006-05-02  Anders Carlsson  <[email protected]>
    29
  • trunk/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj

    r13703 r14162  
    122122                                AdditionalOptions="&#x0D;&#x0A;"
    123123                                AdditionalIncludeDirectories="&quot;$(WebKitOutputDir)\JavaScriptCore.intermediate\$(ConfigurationName)\JavaScriptCore.intermediate\DerivedSources\&quot;;../../;&quot;../../os-win32/&quot;;../../pcre/;../../kjs/;../../kxmlcore/;../../../icu/include"
    124                                 PreprocessorDefinitions="HAVE_CONFIG_H; WIN32; __STD_C"
     124                                PreprocessorDefinitions="HAVE_CONFIG_H; WIN32; __STD_C;NDEBUG"
    125125                                ExceptionHandling="0"
    126126                                RuntimeLibrary="2"
  • trunk/JavaScriptCore/kxmlcore/FastMalloc.cpp

    r14004 r14162  
    6666#include "FastMalloc.h"
    6767
     68#ifndef USE_SYSTEM_MALLOC
    6869#ifndef NDEBUG
    6970#define USE_SYSTEM_MALLOC 1
    7071#else
    7172#define USE_SYSTEM_MALLOC 0
     73#endif
    7274#endif
    7375
Note: See TracChangeset for help on using the changeset viewer.