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