php-src/ext/sysvshm/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

8 lines
238 B
JavaScript

// vim:ft=javascript
ARG_ENABLE('sysvshm', 'SysV Shared Memory support', 'no');
if (PHP_SYSVSHM != 'no') {
AC_DEFINE('HAVE_SYSVSHM', 1, "Define to 1 if the PHP extension 'sysvshm' is available.");
EXTENSION('sysvshm', 'sysvshm.c');
}