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