php-src/ext/dl_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

12 lines
286 B
Plaintext

PHP_ARG_ENABLE([dl-test],
[whether to enable dl-test extension],
[AS_HELP_STRING([--enable-dl-test],
[Enable dl_test extension])])
if test "$PHP_DL_TEST" != "no"; then
PHP_NEW_EXTENSION([dl_test],
[dl_test.c],
[shared],,
[-DZEND_ENABLE_STATIC_TSRMLS_CACHE=1])
fi