xref: /php-src/ext/ctype/config.m4 (revision f66feaec)
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    [Define to 1 if the PHP extension 'ctype' is available.])
10  PHP_NEW_EXTENSION([ctype], [ctype.c], [$ext_shared])
11fi
12