blob: 6c1709d71526ac5f453ede146be73d1acbe45b2e (
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
|