blob: 4017982a540361ce63f55f58bd26444bd329a302 (
plain)
1
2
3
4
5
6
7
8
|
dnl $Id$
PHP_ARG_ENABLE(shmop, whether to enable shmop support,
[ --enable-shmop Enable shmop support])
if test "$PHP_SHMOP" != "no"; then
AC_DEFINE(HAVE_SHMOP, 1, [ ])
PHP_NEW_EXTENSION(shmop, shmop.c, $ext_shared)
fi
|