From 25026bd84d7ab9e698cf9171b5a5b53e9ba56549 Mon Sep 17 00:00:00 2001 From: haszi Date: Fri, 17 May 2024 19:02:17 +0200 Subject: [PATCH 1/3] Define GLOB_BRACE if it is not defined Closes #39. Define GLOB_BRACE if it is not defined. Fix typo in directory path string. --- configure.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.php b/configure.php index e8ff9edba..cf1879aac 100755 --- a/configure.php +++ b/configure.php @@ -688,7 +688,7 @@ function getFileModificationHistory(): array { echo "Iterating over extension specific version files... "; if ($ac["GENERATE"] != "no") { - $globdir = dirname($ac["GENERATE"]) . "/{../,./}versions.xml"; + $globdir = dirname($ac["GENERATE"]) . "/{../../}versions.xml"; } else { if (file_exists($ac['rootdir'] . '/en/trunk')) { @@ -698,6 +698,9 @@ function getFileModificationHistory(): array { } $globdir .= "/*/*/versions.xml"; } + if (!defined('GLOB_BRACE')) { + GLOB_BRACE = 0; + } foreach(glob($globdir, GLOB_BRACE) as $file) { if($tmp->load($file)) { foreach($tmp->getElementsByTagName("function") as $function) { From 1c46e78f0760d35dc478e833bad484a153724e2e Mon Sep 17 00:00:00 2001 From: haszi Date: Fri, 17 May 2024 19:11:16 +0200 Subject: [PATCH 2/3] Fix constant assignment --- configure.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.php b/configure.php index cf1879aac..2ffe6c784 100755 --- a/configure.php +++ b/configure.php @@ -699,7 +699,7 @@ function getFileModificationHistory(): array { $globdir .= "/*/*/versions.xml"; } if (!defined('GLOB_BRACE')) { - GLOB_BRACE = 0; + defined('GLOB_BRACE', 0); } foreach(glob($globdir, GLOB_BRACE) as $file) { if($tmp->load($file)) { From fa01d474171dccefec9381fa82536537025b2ca5 Mon Sep 17 00:00:00 2001 From: haszi Date: Fri, 17 May 2024 19:13:55 +0200 Subject: [PATCH 3/3] Fix typo --- configure.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.php b/configure.php index 2ffe6c784..8e0ab5abc 100755 --- a/configure.php +++ b/configure.php @@ -699,7 +699,7 @@ function getFileModificationHistory(): array { $globdir .= "/*/*/versions.xml"; } if (!defined('GLOB_BRACE')) { - defined('GLOB_BRACE', 0); + define('GLOB_BRACE', 0); } foreach(glob($globdir, GLOB_BRACE) as $file) { if($tmp->load($file)) {