Changeset 29941 in webkit for trunk/JavaScriptCore
- Timestamp:
- Feb 2, 2008, 3:13:40 PM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r29836 r29941 1 2008-02-02 Tony Chang <[email protected]> 2 3 Reviewed by darin. Landed by eseidel. 4 5 Add #define guards for WIN32_LEAN_AND_MEAN and _CRT_RAND_S. 6 7 * kjs/config.h: 8 * wtf/FastMalloc.cpp: 9 * wtf/TCSpinLock.h: 10 1 11 2008-01-28 Sam Weinig <[email protected]> 2 12 -
trunk/JavaScriptCore/kjs/config.h
r27994 r29941 46 46 #if !COMPILER(MSVC7) 47 47 // We need to define this before the first #include of stdlib.h or it won't contain rand_s. 48 #ifndef _CRT_RAND_S 48 49 #define _CRT_RAND_S 50 #endif 49 51 #endif 50 52 -
trunk/JavaScriptCore/wtf/FastMalloc.cpp
r29194 r29941 227 227 #include <stdio.h> 228 228 #if COMPILER(MSVC) 229 #ifndef WIN32_LEAN_AND_MEAN 229 230 #define WIN32_LEAN_AND_MEAN 231 #endif 230 232 #include <windows.h> 231 233 #endif -
trunk/JavaScriptCore/wtf/TCSpinLock.h
r28847 r29941 50 50 51 51 #if COMPILER(MSVC) 52 #ifndef WIN32_LEAN_AND_MEAN 52 53 #define WIN32_LEAN_AND_MEAN 54 #endif 53 55 #include <windows.h> 54 56 #endif
Note:
See TracChangeset
for help on using the changeset viewer.