mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

This adds Autoconf quote characters to all PHP_NEW_EXTENSION arguments and syncs the CS across the php-src Autotools build system.
17 lines
427 B
Text
17 lines
427 B
Text
PHP_ARG_ENABLE([zend-test],
|
|
[whether to enable zend_test extension],
|
|
[AS_HELP_STRING([--enable-zend-test],
|
|
[Enable zend_test extension])])
|
|
|
|
if test "$PHP_ZEND_TEST" != "no"; then
|
|
PHP_NEW_EXTENSION([zend_test], m4_normalize([
|
|
fiber.c
|
|
iterators.c
|
|
object_handlers.c
|
|
observer.c
|
|
test.c
|
|
zend_mm_custom_handlers.c
|
|
]),
|
|
[$ext_shared],,
|
|
[-DZEND_ENABLE_STATIC_TSRMLS_CACHE=1])
|
|
fi
|