Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
  Fail early in *nix configuration build script
This commit is contained in:
Christoph M. Becker 2024-11-09 14:04:06 +01:00
commit 11da498add
No known key found for this signature in database
GPG Key ID: D66C9593118BCCB6
6 changed files with 9 additions and 6 deletions

3
NEWS
View File

@ -5,6 +5,9 @@ PHP NEWS
- Calendar:
. Fixed jdtogregorian overflow. (David Carlier)
- Core:
. Fail early in *nix configuration build script. (hakre)
- FPM:
. Fixed GH-16432 (PHP-FPM 8.2 SIGSEGV in fpm_get_status). (Jakub Zelenka)

View File

@ -32,7 +32,7 @@ header_list=
olddir=$(pwd)
# Go to project root.
cd $(CDPATH= cd -- "$(dirname -- "$0")/../" && pwd -P)
cd "$(CDPATH='' cd -- "$(dirname -- "$0")/../" && pwd -P)" || exit
module_ptrs="$(echo $extensions | $AWK -f ./build/order_by_dep.awk)"

View File

@ -8,9 +8,9 @@ force=0
debug=0
# Go to project root.
cd $(CDPATH= cd -- "$(dirname -- "$0")" && pwd -P)
cd "$(CDPATH='' cd -- "$(dirname -- "$0")" && pwd -P)" || exit
php_extra_version=$(grep '^AC_INIT(' configure.ac)
php_extra_version=$(grep '^AC_INIT(' configure.ac) || exit
case "$php_extra_version" in
*-dev*)
dev=1

View File

@ -3,7 +3,7 @@
# Generate credits_*.h headers from the ext/*/CREDITS and sapi/*/CREDITS files.
# Go to project root directory
cd $(CDPATH= cd -- "$(dirname -- "$0")/../../" && pwd -P)
cd "$(CDPATH='' cd -- "$(dirname -- "$0")/../../" && pwd -P)" || exit
awkprog='
BEGIN { FS = "\n|\r\n|\r"; RS = "" }

View File

@ -41,7 +41,7 @@ SED=${SED:-sed}
MAKE=${MAKE:-make}
# Go to project root.
cd $(CDPATH= cd -- "$(dirname -- "$0")/../../" && pwd -P)
cd "$(CDPATH='' cd -- "$(dirname -- "$0")/../../" && pwd -P)" || exit
# Check required bison version from the configure.ac file.
required_bison_version=$($SED -n 's/PHP_PROG_BISON(\[\([0-9\.]*\)\].*/\1/p' configure.ac)

View File

@ -15,7 +15,7 @@ if [[ $($tar --version) == *"bsdtar"* ]]; then
fi
# Go to project root directory.
cd $(CDPATH= cd -- "$(dirname -- "$0")/../../" && pwd -P)
cd "$(CDPATH='' cd -- "$(dirname -- "$0")/../../" && pwd -P)" || exit
# Process options and arguments.
while :; do