php-src/ext/ctype/config.w32
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

9 lines
207 B
JavaScript

// vim:ft=javascript
ARG_ENABLE("ctype", "ctype", "yes");
if (PHP_CTYPE == "yes") {
EXTENSION("ctype", "ctype.c");
AC_DEFINE('HAVE_CTYPE', 1, "Define to 1 if the PHP extension 'ctype' is available.");
}