config.m4 290 B

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