Changeset 83526 in webkit


Ignore:
Timestamp:
Apr 11, 2011 4:06:22 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-04-11 Ben Taylor <bentaylor.solx86@gmail.com>

Reviewed by David Levin.

https://bugs.webkit.org/show_bug.cgi?id=57535

Better compile fix for Solaris 10/Sun Studio 12 CC
needing <sys/time.h>

  • loader/icon/IconRecord.h:
  • page/Page.h:
  • platform/network/ResourceResponseBase.h:
Location:
trunk/Source/WebCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r83522 r83526  
     12011-04-11  Ben Taylor  <bentaylor.solx86@gmail.com>
     2
     3        Reviewed by David Levin.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=57535
     6
     7        Better compile fix for Solaris 10/Sun Studio 12 CC
     8        needing <sys/time.h>
     9
     10        * loader/icon/IconRecord.h:
     11        * page/Page.h:
     12        * platform/network/ResourceResponseBase.h:
     13
    1142011-04-11  Alexey Proskuryakov  <ap@apple.com>
    215
  • trunk/Source/WebCore/loader/icon/IconRecord.h

    r83234 r83526  
    3838#include <wtf/OwnPtr.h>
    3939#include <wtf/text/StringHash.h>
     40
     41#if OS(SOLARIS)
     42#include <sys/types.h> // For time_t structure.
     43#endif
    4044
    4145namespace WebCore {
  • trunk/Source/WebCore/page/Page.h

    r82171 r83526  
    2929#include <wtf/HashSet.h>
    3030#include <wtf/Noncopyable.h>
     31
     32#if OS(SOLARIS)
     33#include <sys/time.h> // For time_t structure.
     34#endif
    3135
    3236#if PLATFORM(MAC)
  • trunk/Source/WebCore/platform/network/ResourceResponseBase.h

    r82764 r83526  
    3636#include <wtf/RefPtr.h>
    3737
     38#if OS(SOLARIS)
     39#include <sys/time.h> // For time_t structure.
     40#endif
     41
    3842namespace WebCore {
    3943
Note: See TracChangeset for help on using the changeset viewer.