This repository has been archived on 2020-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
ext-collections/config.m4

10 lines
318 B
Plaintext

PHP_ARG_ENABLE(collections, for collections support,
[ --enable-collections Enable collections support])
if test "$PHP_COLLECTIONS" != "no"; then
COLLECTIONS_SRC="src/collections.c
src/collections_me.c
src/collections_methods.c"
PHP_NEW_EXTENSION(collections, $COLLECTIONS_SRC, $ext_shared)
fi