mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-09 15:18:41 +00:00
2b4d41abb1
These date back to the initial checkin and mostly haven't been updated ever since. Besides the provided code samples aren't really suitable as a getting started guide.
10 lines
337 B
Makefile
10 lines
337 B
Makefile
# add json extension, if needed (ie, for PHP >= 5.5)
|
|
ifneq (,$(realpath $(EXTENSION_DIR)/json.so))
|
|
PHP_TEST_SHARED_EXTENSIONS+=-d extension=$(EXTENSION_DIR)/json.so
|
|
endif
|
|
|
|
# add pthreads extension, if available
|
|
ifneq (,$(realpath $(EXTENSION_DIR)/pthreads.so))
|
|
PHP_TEST_SHARED_EXTENSIONS+=-d extension=$(EXTENSION_DIR)/pthreads.so
|
|
endif
|