mirror of
https://github.com/php/php-src.git
synced 2026-04-28 02:33:17 +02:00
1ceadaed52
This adds Autoconf quote characters to all PHP_NEW_EXTENSION arguments and syncs the CS across the php-src Autotools build system.
10 lines
303 B
Plaintext
10 lines
303 B
Plaintext
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
|