xref: /php-src/ext/shmop/config.m4 (revision f66feaec)
1PHP_ARG_ENABLE([shmop],
2  [whether to enable shmop support],
3  [AS_HELP_STRING([--enable-shmop],
4    [Enable shmop support])])
5
6if test "$PHP_SHMOP" != "no"; then
7  AC_DEFINE([HAVE_SHMOP], [1],
8    [Define to 1 if the PHP extension 'shmop' is available.])
9  PHP_NEW_EXTENSION([shmop], [shmop.c], [$ext_shared])
10fi
11