php-src/ext/tokenizer/config.w32
Peter Kokot 09d0e38ecf
Remove unsynced and unused HAVE_<extension> defines (#14233)
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)
2024-05-18 14:10:47 +02:00

8 lines
165 B
JavaScript

// vim:ft=javascript
ARG_ENABLE("tokenizer", "tokenizer support", "yes");
if (PHP_TOKENIZER == "yes") {
EXTENSION("tokenizer", "tokenizer.c tokenizer_data.c");
}