⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 101199 in webkit


Ignore:
Timestamp:
Nov 26, 2011, 7:05:49 PM (15 years ago)
Author:
kevino@webkit.org
Message:

[wx] Unreviewed build fixes for Windows.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r101197 r101199  
     12011-11-26  Kevin Ollivier  <kevino@theolliviers.com>
     2
     3        [wx] Unreviewed build fix. Change the order of wx header includes
     4        to avoid a windows.h inclusion order issue, and make sure a stub
     5        method returns a value.
     6
     7        * platform/wx/FileSystemWx.cpp:
     8        (WebCore::openFile):
     9
    1102011-11-26  Alejandro G. Castro  <alex@igalia.com>
    211
  • trunk/Source/WebCore/platform/wx/FileSystemWx.cpp

    r99809 r101199  
    3131#include "FileSystem.h"
    3232
    33 #include "NotImplemented.h"
    34 #include "PlatformString.h"
    35 #include <wtf/text/CString.h>
    36 
    3733#include <wx/wx.h>
    3834#include <wx/datetime.h>
     
    4339#include <wx/filename.h>
    4440
     41#include "NotImplemented.h"
     42#include "PlatformString.h"
     43#include <wtf/text/CString.h>
     44
    4545#if OS(DARWIN)
    4646#include <CoreFoundation/CoreFoundation.h>
     
    123123{
    124124    notImplemented();
     125    return 0;
    125126}
    126127   
  • trunk/Tools/ChangeLog

    r101189 r101199  
     12011-11-26  Kevin Ollivier  <kevino@theolliviers.com>
     2
     3        [wx] Unreviewed build fix. Enable the inspector.
     4       
     5        * waf/build/settings.py:
     6
    172011-11-26  Martin Robinson  <mrobinson@igalia.com>
    28
  • trunk/Tools/waf/build/settings.py

    r99811 r101199  
    239239
    240240    feature_defines = ['ENABLE_DATABASE', 'ENABLE_SQL_DATABASE', 'ENABLE_XSLT', 'ENABLE_JAVASCRIPT_DEBUGGER',
    241                     'ENABLE_SVG', 'ENABLE_FILTERS', 'ENABLE_SVG_FONTS',
     241                    'ENABLE_SVG', 'ENABLE_FILTERS', 'ENABLE_SVG_FONTS', 'ENABLE_INSPECTOR',
    242242                    'BUILDING_%s' % build_port.upper()]
    243243
Note: See TracChangeset for help on using the changeset viewer.