Changeset 35965 in webkit


Ignore:
Timestamp:
Aug 28, 2008 4:44:16 AM (16 years ago)
Author:
ap@webkit.org
Message:

Not reviewed, build fix (at least for OpenBSD, posssibly more).

https://bugs.webkit.org/show_bug.cgi?id=20545
missing #include <unistd.h> in JavaScriptCore/VM/SamplingTool.cpp

  • VM/SamplingTool.cpp: add the missing include.
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r35940 r35965  
     12008-08-28  Alexey Proskuryakov  <ap@webkit.org>
     2
     3        Not reviewed, build fix (at least for OpenBSD, posssibly more).
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=20545
     6        missing #include <unistd.h> in JavaScriptCore/VM/SamplingTool.cpp
     7
     8        * VM/SamplingTool.cpp: add the missing include.
     9
    1102008-08-26  Kevin McCullough  <kmccullough@apple.com>
    211
  • trunk/JavaScriptCore/VM/SamplingTool.cpp

    r35653 r35965  
    3434#include "Opcode.h"
    3535
     36#if !PLATFORM(WIN_OS)
     37#include <unistd.h>
     38#endif
     39
    3640namespace KJS {
    3741
Note: See TracChangeset for help on using the changeset viewer.