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.
10 lines
305 B
Text
10 lines
305 B
Text
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
|