summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2019-03-18 15:04:09 +0100
committerChristoph M. Becker <cmbecker69@gmx.de>2019-03-18 15:04:09 +0100
commit7ef2fa6d0dd9972244cbc490bb3ff11cf050befe (patch)
tree215dd1e720f684ea9fbcad2112455257112b9996
parentab8782d1e69b05cca2584c16c1dadae67351acfa (diff)
parentf21c0549030762f8403f57eef375af9f946133e7 (diff)
downloadphp-git-7ef2fa6d0dd9972244cbc490bb3ff11cf050befe.tar.gz
Merge branch 'PHP-7.2' into PHP-7.3
* PHP-7.2: Add bison version check to configure
-rw-r--r--win32/build/confutils.js26
1 files changed, 25 insertions, 1 deletions
diff --git a/win32/build/confutils.js b/win32/build/confutils.js
index 82d10667bc..7a68d4288d 100644
--- a/win32/build/confutils.js
+++ b/win32/build/confutils.js
@@ -53,6 +53,9 @@ var PHP_MAKEFILE_FRAGMENTS = PHP_SRC_DIR + "\\Makefile.fragments.w32";
and manifest. */
var WINVER = "0x0601"; /* 7/2008r2 */
+// There's a minimum requirement for bison.
+var MINBISON = "3.0.0";
+
// There's a minimum requirement for re2c..
var MINRE2C = "0.13.4";
@@ -180,6 +183,8 @@ function probe_binary(EXE, what)
var command = 'cmd /c ""' + EXE;
if (what == "version") {
command = command + '" -v"';
+ } else if (what == "longversion") {
+ command = command + '" --version"';
}
var version = execute(command + '" 2>&1"');
@@ -2985,7 +2990,26 @@ function toolset_setup_project_tools()
// we don't want to define LIB, as that will override the default library path
// that is set in that env var
PATH_PROG('lib', null, 'MAKE_LIB');
- if (!PATH_PROG('bison')) {
+
+ var BISON = PATH_PROG('bison');
+ if (BISON) {
+ var BISONVERS = probe_binary(BISON, "longversion");
+ STDOUT.WriteLine(' Detected bison version ' + BISONVERS);
+
+ if (BISONVERS.match(/^\d+.\d+$/)) {
+ BISONVERS += ".0";
+ }
+
+ var hm = BISONVERS.match(/(\d+)\.(\d+)\.(\d+)/);
+ var nm = MINBISON.match(/(\d+)\.(\d+)\.(\d+)/);
+
+ var intvers = (hm[1]-0)*10000 + (hm[2]-0)*100 + (hm[3]-0);
+ var intmin = (nm[1]-0)*10000 + (nm[2]-0)*100 + (nm[3]-0);
+
+ if (intvers < intmin) {
+ ERROR('The minimum bison version requirement is ' + MINBISON);
+ }
+ } else {
ERROR('bison is required')
}