Changeset 14162 in webkit for trunk/JavaScriptCore
- Timestamp:
- May 2, 2006, 3:48:58 PM (19 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r14156 r14162 1 2006-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 1 8 2006-05-02 Anders Carlsson <[email protected]> 2 9 -
trunk/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj
r13703 r14162 122 122 AdditionalOptions="
" 123 123 AdditionalIncludeDirectories=""$(WebKitOutputDir)\JavaScriptCore.intermediate\$(ConfigurationName)\JavaScriptCore.intermediate\DerivedSources\";../../;"../../os-win32/";../../pcre/;../../kjs/;../../kxmlcore/;../../../icu/include" 124 PreprocessorDefinitions="HAVE_CONFIG_H; WIN32; __STD_C "124 PreprocessorDefinitions="HAVE_CONFIG_H; WIN32; __STD_C;NDEBUG" 125 125 ExceptionHandling="0" 126 126 RuntimeLibrary="2" -
trunk/JavaScriptCore/kxmlcore/FastMalloc.cpp
r14004 r14162 66 66 #include "FastMalloc.h" 67 67 68 #ifndef USE_SYSTEM_MALLOC 68 69 #ifndef NDEBUG 69 70 #define USE_SYSTEM_MALLOC 1 70 71 #else 71 72 #define USE_SYSTEM_MALLOC 0 73 #endif 72 74 #endif 73 75
Note:
See TracChangeset
for help on using the changeset viewer.