Changeset 28479 in webkit for trunk/JavaScriptCore/kjs


Ignore:
Timestamp:
Dec 5, 2007, 9:25:45 PM (17 years ago)
Author:
[email protected]
Message:

Qt Windows build fix. Include the time-related headers in the correct place.

Location:
trunk/JavaScriptCore/kjs
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/JSGlobalObject.cpp

    r28474 r28479  
    4242#include "regexp_object.h"
    4343#include "string_object.h"
     44
     45#if HAVE(SYS_TIME_H)
    4446#include <sys/time.h>
     47#endif
     48
     49#if PLATFORM(WIN_OS)
     50#include <windows.h>
     51#endif
     52
     53#if PLATFORM(QT)
     54#include <QDateTime>
     55#endif
    4556
    4657namespace KJS {
  • trunk/JavaScriptCore/kjs/interpreter.cpp

    r28468 r28479  
    5252#include <stdio.h>
    5353#include <wtf/Assertions.h>
    54 
    55 #if HAVE(SYS_TIME_H)
    56 #include <sys/time.h>
    57 #endif
    58 
    59 #if PLATFORM(WIN_OS)
    60 #include <windows.h>
    61 #endif
    62 
    63 #if PLATFORM(QT)
    64 #include <QDateTime>
    65 #endif
    6654
    6755namespace KJS {
Note: See TracChangeset for help on using the changeset viewer.