1dnl config.m4 for extension twig
2
3PHP_ARG_ENABLE(twig, whether to enable twig support,
4[  --enable-twig           Enable twig support])
5
6if test "$PHP_TWIG" != "no"; then
7  PHP_NEW_EXTENSION(twig, twig.c, $ext_shared)
8fi
9