Update re2c minimum versions in Windows checks and docs (#19039)

This commit is contained in:
Peter Kokot 2025-07-07 07:54:29 +02:00 committed by GitHub
parent c1ed6088a6
commit aa366b5113
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View file

@ -210,8 +210,8 @@ slightly different steps. We'll call attention where the steps differ.
> Do *not* bump the API versions after RC1. > Do *not* bump the API versions after RC1.
5. Compile and run `make test`, with and without ZTS (Zend Thread Safety), using 5. Compile and run `make test`, with and without ZTS (Zend Thread Safety), using
the correct Bison and re2c versions, e.g., for PHP 7.4, Bison 3.0.0 and re2c the correct Bison and re2c versions, e.g., for PHP 8.5, Bison 3.0.0 and re2c
0.13.4 are required, as a minimum. 1.0.3 are required, as a minimum.
For example: For example:
@ -555,8 +555,8 @@ slightly different steps. We'll call attention where the steps differ.
an example. an example.
6. Compile and run `make test`, with and without ZTS (Zend Thread Safety), using 6. Compile and run `make test`, with and without ZTS (Zend Thread Safety), using
the correct Bison and re2c versions, e.g., for PHP 7.4, Bison 3.0.0 and re2c the correct Bison and re2c versions, e.g., for PHP 8.5, Bison 3.0.0 and re2c
0.13.4 are required, as a minimum. 1.0.3 are required, as a minimum.
For example: For example:

View file

@ -56,7 +56,7 @@ var WINVER = "0x0602"; /* 8/2012 */
var MINBISON = "3.0.0"; var MINBISON = "3.0.0";
// There's a minimum requirement for re2c.. // There's a minimum requirement for re2c..
var MINRE2C = "0.13.4"; var MINRE2C = "1.0.3";
/* Store the enabled extensions (summary + QA check) */ /* Store the enabled extensions (summary + QA check) */
var extensions_enabled = new Array(); var extensions_enabled = new Array();