mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
13 lines
326 B
Plaintext
13 lines
326 B
Plaintext
dnl $Id$
|
|
dnl config.m4 for extension tokenizer
|
|
|
|
dnl Otherwise use enable:
|
|
|
|
PHP_ARG_ENABLE(tokenizer, whether to enable tokenizer support,
|
|
[ --disable-tokenizer Disable tokenizer support], yes)
|
|
|
|
if test "$PHP_TOKENIZER" != "no"; then
|
|
PHP_NEW_EXTENSION(tokenizer, tokenizer.c, $ext_shared)
|
|
PHP_ADD_MAKEFILE_FRAGMENT
|
|
fi
|