xref: /PHP-5.5/ext/sysvshm/config.m4 (revision a20383ba)
1dnl
2dnl $Id$
3dnl
4
5PHP_ARG_ENABLE(sysvshm,whether to enable System V shared memory support,
6[  --enable-sysvshm        Enable the System V shared memory support])
7
8if test "$PHP_SYSVSHM" != "no"; then
9  AC_DEFINE(HAVE_SYSVSHM, 1, [ ])
10  PHP_NEW_EXTENSION(sysvshm, sysvshm.c, $ext_shared)
11fi
12