config.m4 247 B

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