summaryrefslogtreecommitdiff
path: root/ext/sysvshm/config.m4
blob: bd6e40cca92dbcb16a48e2f277a8390a841ecacd (plain)
1
2
3
4
5
6
7
8
9
PHP_ARG_ENABLE([sysvshm],
  [whether to enable System V shared memory support],
  [AS_HELP_STRING([--enable-sysvshm],
    [Enable the System V shared memory support])])

if test "$PHP_SYSVSHM" != "no"; then
  AC_DEFINE(HAVE_SYSVSHM, 1, [ ])
  PHP_NEW_EXTENSION(sysvshm, sysvshm.c, $ext_shared)
fi