Changeset 39558 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jan 2, 2009, 1:25:17 PM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r39556 r39558 1 2009-01-02 David Kilzer <[email protected]> 2 3 Attempt to fix Qt Linux build after r39553 4 5 * wtf/RandomNumberSeed.h: Include <sys/time.h> for gettimeofday(). 6 Include <sys/types.h> and <unistd.h> for getpid(). 7 1 8 2009-01-02 David Kilzer <[email protected]> 2 9 -
trunk/JavaScriptCore/wtf/RandomNumberSeed.h
r39553 r39558 30 30 #include <time.h> 31 31 32 #if HAVE(SYS_TIME_H) 33 #include <sys/time.h> 34 #endif 35 36 #if PLATFORM(UNIX) 37 #include <sys/types.h> 38 #include <unistd.h> 39 #endif 40 32 41 // Internal JavaScriptCore usage only 33 42 namespace WTF {
Note:
See TracChangeset
for help on using the changeset viewer.