config.m4 309 B

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