1PHP_ARG_ENABLE([shmop],
2 [whether to enable shmop support],
3 [AS_HELP_STRING([--enable-shmop],
4 [Enable shmop support])])
5
6if test "$PHP_SHMOP" != "no"; then
7 AC_DEFINE(HAVE_SHMOP, 1, [ ])
8 PHP_NEW_EXTENSION(shmop, shmop.c, $ext_shared)
9fi
10