mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00

Some editors utilizing .editorconfig automatically trim whitespaces. For convenience this patch removes whitespaces in certain build files: - ext/*/config*.m4 - configure.ac - acinclude.m4
9 lines
260 B
Text
9 lines
260 B
Text
dnl config.m4 for extension shmop
|
|
|
|
PHP_ARG_ENABLE(shmop, whether to enable shmop support,
|
|
[ --enable-shmop Enable shmop support])
|
|
|
|
if test "$PHP_SHMOP" != "no"; then
|
|
AC_DEFINE(HAVE_SHMOP, 1, [ ])
|
|
PHP_NEW_EXTENSION(shmop, shmop.c, $ext_shared)
|
|
fi
|