mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

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]
8 lines
238 B
JavaScript
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');
|
|
}
|