mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00

- remove some outdated and not used macro calls - remove some unused variables - Remove not needed comment from tokenizer config.m4 - Remove not needed comment - remove not needed local variables for editors and syntax highlighting
12 lines
338 B
Text
12 lines
338 B
Text
dnl config.m4 for extension tokenizer
|
|
|
|
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
|