1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/shmop/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
214 B
JavaScript

// vim:ft=javascript
ARG_ENABLE("shmop", "shmop support", "no");
if (PHP_SHMOP == "yes") {
EXTENSION("shmop", "shmop.c");
AC_DEFINE('HAVE_SHMOP', 1, "Define to 1 if the PHP extension 'shmop' is available.");
}