xref: /PHP-7.3/ext/shmop/config.m4 (revision 902d39a3)
1dnl config.m4 for extension shmop
2
3PHP_ARG_ENABLE(shmop, whether to enable shmop support,
4[  --enable-shmop          Enable shmop support])
5
6if test "$PHP_SHMOP" != "no"; then
7  AC_DEFINE(HAVE_SHMOP, 1, [ ])
8  PHP_NEW_EXTENSION(shmop, shmop.c, $ext_shared)
9fi
10