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 [Define to 1 if the PHP extension 'sysvshm' is available.]) 9 PHP_NEW_EXTENSION([sysvshm], [sysvshm.c], [$ext_shared]) 10fi 11