9 lines
214 B
JavaScript
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.");
|
|
}
|