Ignore:
Timestamp:
Dec 15, 2008, 11:08:31 PM (16 years ago)
Author:
[email protected]
Message:

Reviewed by Darin Adler.

Don't use unique context group in JSGlobalContextCreate() on Tiger or Leopard.

  • API/JSContextRef.cpp: (JSGlobalContextCreate):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/API/JSContextRef.cpp

    r39127 r39330  
    6161JSGlobalContextRef JSGlobalContextCreate(JSClassRef globalObjectClass)
    6262{
    63 #if PLATFORM(DARWIN)
     63#if PLATFORM(DARWIN) && !defined(BUILDING_ON_TIGER) && !defined(BUILDING_ON_LEOPARD)
    6464    if (NSVersionOfLinkTimeLibrary("JavaScriptCore") <= webkitFirstVersionWithConcurrentGlobalContexts) {
    6565        JSLock lock(true);
Note: See TracChangeset for help on using the changeset viewer.