xref: /PHP-7.3/ext/ctype/config.m4 (revision 8d3f8ca1)
1dnl config.m4 for extension ctype
2
3PHP_ARG_ENABLE(ctype, whether to enable ctype functions,
4[  --disable-ctype         Disable ctype functions], yes)
5
6if test "$PHP_CTYPE" != "no"; then
7  AC_DEFINE(HAVE_CTYPE, 1, [ ])
8  PHP_NEW_EXTENSION(ctype, ctype.c, $ext_shared)
9fi
10