mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00

This syncs build system gaps of some extensions' definitions being defined on Windows and some on *nix. These are not used anywhere and are only defined in some build system and not the other: * HAVE_INTL (was present only on Windows) * HAVE_PDO_DBLIB (was present only on Autotools) * HAVE_PDO_FIREBIRD (was present only on Autotools) * HAVE_TOKENIZER (was present only on Windows)
7 lines
165 B
JavaScript
7 lines
165 B
JavaScript
// vim:ft=javascript
|
|
|
|
ARG_ENABLE("tokenizer", "tokenizer support", "yes");
|
|
|
|
if (PHP_TOKENIZER == "yes") {
|
|
EXTENSION("tokenizer", "tokenizer.c tokenizer_data.c");
|
|
}
|