Changeset 37331 in webkit for trunk/JavaScriptCore
- Timestamp:
- Oct 6, 2008, 10:00:48 AM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r37326 r37331 1 2008-10-06 Ariya Hidayat <[email protected]> 2 3 Reviewed by Simon. 4 5 Build fix for MinGW. 6 7 * JavaScriptCore.pri: 8 * kjs/DateMath.cpp: 9 (JSC::highResUpTime): 10 1 11 2008-10-05 Cameron Zwarich <[email protected]> 2 12 -
trunk/JavaScriptCore/JavaScriptCore.pri
r36743 r37331 10 10 GENERATED_SOURCES_DIR_SLASH = $$GENERATED_SOURCES_DIR/ 11 11 win32-*: GENERATED_SOURCES_DIR_SLASH ~= s|/|\| 12 win32-g++: LIBS += -lwinmm 12 13 13 14 -
trunk/JavaScriptCore/kjs/DateMath.cpp
r36578 r37331 314 314 tickCountElapsed = (tickCount - tickCountLast); 315 315 else { 316 #if COMPILER(MINGW) 317 __int64 tickCountLarge = tickCount + 0x100000000ULL; 318 #else 316 319 __int64 tickCountLarge = tickCount + 0x100000000I64; 320 #endif 317 321 tickCountElapsed = tickCountLarge - tickCountLast; 318 322 }
Note:
See TracChangeset
for help on using the changeset viewer.