blob: 79642f37d9737229d57bd069fc459b9343d972ef (
plain)
1
2
3
4
5
6
7
8
9
|
dnl config.m4 for extension shmop
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
|