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

11 lines
305 B
Plaintext

PHP_ARG_ENABLE([tokenizer],
[whether to enable tokenizer support],
[AS_HELP_STRING([--disable-tokenizer],
[Disable tokenizer support])],
[yes])
if test "$PHP_TOKENIZER" != "no"; then
PHP_NEW_EXTENSION([tokenizer], [tokenizer.c tokenizer_data.c], [$ext_shared])
PHP_ADD_MAKEFILE_FRAGMENT
fi