config.m4 260 B

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