1PHP_ARG_ENABLE([ctype],
2 [whether to enable ctype functions],
3 [AS_HELP_STRING([--disable-ctype],
4 [Disable ctype functions])],
5 [yes])
6
7if test "$PHP_CTYPE" != "no"; then
8 AC_DEFINE(HAVE_CTYPE, 1, [ ])
9 PHP_NEW_EXTENSION(ctype, ctype.c, $ext_shared)
10fi
11