config.m4 297 B

123456789
  1. PHP_ARG_ENABLE([sysvshm],
  2. [whether to enable System V shared memory support],
  3. [AS_HELP_STRING([--enable-sysvshm],
  4. [Enable the System V shared memory support])])
  5. if test "$PHP_SYSVSHM" != "no"; then
  6. AC_DEFINE(HAVE_SYSVSHM, 1, [ ])
  7. PHP_NEW_EXTENSION(sysvshm, sysvshm.c, $ext_shared)
  8. fi