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

8 lines
273 B
Plaintext

ARG_ENABLE('%EXTNAME%', '%EXTNAME% support', 'no');
if (PHP_%EXTNAMECAPS% != 'no') {
AC_DEFINE('HAVE_%EXTNAMECAPS%', 1, "Define to 1 if the PHP extension '%EXTNAME%' is available.");
EXTENSION('%EXTNAME%', '%EXTNAME%.c', null, '/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1');
}