Changeset 38139 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Nov 5, 2008, 3:48:18 PM (17 years ago)
Author:
[email protected]
Message:

2008-11-05 Cameron Zwarich <[email protected]>

Not reviewed.

Fix the build for case-sensitive build systems.

  • JavaScriptCoreSources.bkl:
  • kjs/Shell.cpp:
  • runtime/Interpreter.cpp:
  • runtime/JSArray.cpp:
Location:
trunk/JavaScriptCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r38138 r38139  
     12008-11-05  Cameron Zwarich  <[email protected]>
     2
     3        Not reviewed.
     4
     5        Fix the build for case-sensitive build systems.
     6
     7        * JavaScriptCoreSources.bkl:
     8        * kjs/Shell.cpp:
     9        * runtime/Interpreter.cpp:
     10        * runtime/JSArray.cpp:
     11
    1122008-11-05  Cameron Zwarich  <[email protected]>
    213
  • trunk/JavaScriptCore/JavaScriptCoreSources.bkl

    r38137 r38139  
    5353        kjs/nodes2string.cpp
    5454        kjs/Parser.cpp
    55         kjs/regexp.cpp
    5655        kjs/ustring.cpp
    5756    </set>
     
    130129        runtime/PropertySlot.cpp
    131130        runtime/PrototypeFunction.cpp
     131        runtime/RegExp.cpp
    132132        runtime/RegExpConstructor.cpp
    133133        runtime/RegExpObject.cpp
  • trunk/JavaScriptCore/kjs/Shell.cpp

    r38054 r38139  
    2323#include "config.h"
    2424
     25#include "Completion.h"
    2526#include "CodeGenerator.h"
    2627#include "InitializeThreading.h"
     28#include "Interpreter.h"
    2729#include "JSArray.h"
    2830#include "JSLock.h"
    2931#include "PrototypeFunction.h"
    3032#include "SamplingTool.h"
    31 #include "completion.h"
    32 #include "interpreter.h"
    3333#include <math.h>
    3434#include <stdio.h>
  • trunk/JavaScriptCore/runtime/Interpreter.cpp

    r38137 r38139  
    2222
    2323#include "config.h"
    24 #include "interpreter.h"
     24#include "Interpreter.h"
    2525
     26#include "Completion.h"
    2627#include "ExecState.h"
    2728#include "JSGlobalObject.h"
     
    2930#include "Machine.h"
    3031#include "Parser.h"
    31 #include "completion.h"
    3232#include "Debugger.h"
    3333#include <stdio.h>
  • trunk/JavaScriptCore/runtime/JSArray.cpp

    r37938 r38139  
    2828#include <wtf/AVLTree.h>
    2929#include <wtf/Assertions.h>
    30 #include <operations.h>
     30#include <Operations.h>
    3131
    3232#define CHECK_ARRAY_CONSISTENCY 0
Note: See TracChangeset for help on using the changeset viewer.