This repository has been archived on 2020-03-30. You can view files and clone it, but cannot push or open issues/pull-requests.
|
ARG_ENABLE("collections", "enable collections support", "no");
|
|
|
|
if (PHP_COLLECTIONS != "no") {
|
|
SRC="src/collections.c \
|
|
src/collections_me.c \
|
|
src/collections_methods.c"
|
|
EXTENSION("collections", SRC, true, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
|
|
}
|