Changeset 34425 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Jun 7, 2008, 3:59:39 AM (17 years ago)
Author:
[email protected]
Message:

More build fixes.

  • kjs/JSGlobalData.cpp: Fixed an included file name for case-sensitive file systems, fixed JSGlobalData::threadInstance() for non-multithreaded builds.
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r34424 r34425  
     12008-06-07  Alexey Proskuryakov  <[email protected]>
     2
     3        More build fixes.
     4
     5        * kjs/JSGlobalData.cpp: Fixed an included file name for case-sensitive file systems, fixed
     6        JSGlobalData::threadInstance() for non-multithreaded builds.
     7
    182008-06-07  Alexey Proskuryakov  <[email protected]>
    29
  • trunk/JavaScriptCore/kjs/JSGlobalData.cpp

    r34412 r34425  
    3636#include "lookup.h"
    3737#include "nodes.h"
    38 #include "parser.h"
     38#include "Parser.h"
    3939
    4040#if USE(MULTIPLE_THREADS)
     
    114114    return *sharedInstance;
    115115#else
    116     return globalSharedInstance();
     116    static JSGlobalData sharedInstance;
     117    return sharedInstance;
    117118#endif
    118119}
Note: See TracChangeset for help on using the changeset viewer.