1PHP_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 6if test "$PHP_SYSVSHM" != "no"; then 7 AC_DEFINE(HAVE_SYSVSHM, 1, [ ]) 8 PHP_NEW_EXTENSION(sysvshm, sysvshm.c, $ext_shared) 9fi 10