Changeset 48685 in webkit for trunk/JavaScriptCore
- Timestamp:
- Sep 23, 2009, 3:03:05 PM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r48662 r48685 1 2009-09-23 David Kilzer <[email protected]> 2 3 Move definition of USE(PLUGIN_HOST_PROCESS) from WebKitPrefix.h to Platform.h 4 5 Reviewed by Mark Rowe. 6 7 * wtf/Platform.h: Define WTF_USE_PLUGIN_HOST_PROCESS to 1 when 8 building on 64-bit SnowLeopard. Define to 0 elsewhere. 9 1 10 2009-09-22 Oliver Hunt <[email protected]> 2 11 -
trunk/JavaScriptCore/wtf/Platform.h
r48609 r48685 408 408 #define WTF_PLATFORM_CF 1 409 409 #define WTF_USE_PTHREADS 1 410 #if !defined(BUILDING_ON_LEOPARD) && !defined(BUILDING_ON_TIGER) && defined(__x86_64__) 411 #define WTF_USE_PLUGIN_HOST_PROCESS 1 412 #endif 410 413 #if !defined(ENABLE_MAC_JAVA_BRIDGE) 411 414 #define ENABLE_MAC_JAVA_BRIDGE 1 … … 416 419 #define HAVE_READLINE 1 417 420 #define HAVE_RUNLOOP_TIMER 1 418 #endif 421 #endif // PLATFORM(MAC) && !PLATFORM(IPHONE) 419 422 420 423 #if PLATFORM(CHROMIUM) && PLATFORM(DARWIN) … … 594 597 #if !defined(ENABLE_NETSCAPE_PLUGIN_API) 595 598 #define ENABLE_NETSCAPE_PLUGIN_API 1 599 #endif 600 601 #if !defined(WTF_USE_PLUGIN_HOST_PROCESS) 602 #define WTF_USE_PLUGIN_HOST_PROCESS 0 596 603 #endif 597 604
Note:
See TracChangeset
for help on using the changeset viewer.