Update config.w32. Update README.

This commit is contained in:
CismonX 2018-08-16 01:23:05 +08:00
parent 7aab23d435
commit 7b88338374
2 changed files with 7 additions and 1 deletions

View File

@ -12,6 +12,9 @@ Method names and functionalities are inspired by [Kotlin.Collections](https://ko
### 1.1 Notes ### 1.1 Notes
* Requires PHP 7.1 and above. * Requires PHP 7.1 and above.
* Thread safety:
* Distinct objects: **safe**.
* Shared objects: **unsafe**.
## 2. Documentation ## 2. Documentation

View File

@ -1,5 +1,8 @@
ARG_ENABLE("collections", "enable collections support", "no"); ARG_ENABLE("collections", "enable collections support", "no");
if (PHP_COLLECTIONS != "no") { if (PHP_COLLECTIONS != "no") {
EXTENSION("collections", "src/collections.c src/collections_me.c src/collections_methods.c", true); SRC="src/collections.c \
src/collections_me.c \
src/collections_methods.c"
EXTENSION("collections", SRC, true, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
} }