mirror of
https://github.com/php/php-src.git
synced 2025-01-21 11:13:38 +08:00
10 lines
186 B
Plaintext
10 lines
186 B
Plaintext
|
// $Id$
|
||
|
// vim:ft=javascript
|
||
|
|
||
|
ARG_ENABLE("shmop", "shmop support", "no");
|
||
|
|
||
|
if (PHP_SHMOP == "yes") {
|
||
|
EXTENSION("shmop", "shmop.c");
|
||
|
AC_DEFINE('HAVE_SHMOP', 1, 'Have SHMOP support');
|
||
|
}
|