php-src/ext/zend_test/config.m4
Peter Kokot 1ceadaed52
Autotools: Normalize and quote all PHP_NEW_EXTENSION arguments (#15144)
This adds Autoconf quote characters to all PHP_NEW_EXTENSION arguments
and syncs the CS across the php-src Autotools build system.
2024-07-29 00:14:59 +02:00

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