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