Changeset 39558 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Jan 2, 2009, 1:25:17 PM (16 years ago)
Author:
[email protected]
Message:

Attempt to fix Qt Linux build after r39553

  • wtf/RandomNumberSeed.h: Include <sys/time.h> for gettimeofday(). Include <sys/types.h> and <unistd.h> for getpid().
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r39556 r39558  
     12009-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
    182009-01-02  David Kilzer  <[email protected]>
    29
  • trunk/JavaScriptCore/wtf/RandomNumberSeed.h

    r39553 r39558  
    3030#include <time.h>
    3131
     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
    3241// Internal JavaScriptCore usage only
    3342namespace WTF {
Note: See TracChangeset for help on using the changeset viewer.