php-src/ext/ctype/config.m4
Peter Kokot f66feaec0f
Sync HAVE_<extension> help texts (#15167)
This syncs all help texts of extension preprocessor macros to the same
style "Define to 1 if the PHP extension '<ext>' is available.".
[skip ci]
2024-08-02 01:41:47 +02:00

12 lines
329 B
Plaintext

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],
[Define to 1 if the PHP extension 'ctype' is available.])
PHP_NEW_EXTENSION([ctype], [ctype.c], [$ext_shared])
fi