mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
11 lines
253 B
Text
11 lines
253 B
Text
dnl
|
|
dnl $Id$
|
|
dnl
|
|
|
|
PHP_ARG_ENABLE(ctype, whether to enable ctype functions,
|
|
[ --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
|