mirror of
https://github.com/phpv8/v8js.git
synced 2024-12-23 09:31:52 +00:00
libplatform stuff not needed on Windows
This commit is contained in:
parent
877ecfc720
commit
83a17b5e6a
4
v8js.cc
4
v8js.cc
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
#include <v8-debug.h>
|
#include <v8-debug.h>
|
||||||
|
|
||||||
#if PHP_V8_API_VERSION >= 3029036
|
#if !defined(_WIN32) && PHP_V8_API_VERSION >= 3029036
|
||||||
#include <libplatform/libplatform.h>
|
#include <libplatform/libplatform.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -869,7 +869,7 @@ static void php_v8js_init(TSRMLS_D) /* {{{ */
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if PHP_V8_API_VERSION >= 3029036
|
#if !defined(_WIN32) && PHP_V8_API_VERSION >= 3029036
|
||||||
v8::Platform* platform = v8::platform::CreateDefaultPlatform();
|
v8::Platform* platform = v8::platform::CreateDefaultPlatform();
|
||||||
v8::V8::InitializePlatform(platform);
|
v8::V8::InitializePlatform(platform);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user