mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
Merge branch 'PHP-8.3' into PHP-8.4
* PHP-8.3: Fail early in *nix configuration build script
This commit is contained in:
commit
257387b9e5
6 changed files with 9 additions and 6 deletions
3
NEWS
3
NEWS
|
@ -5,6 +5,9 @@ PHP NEWS
|
||||||
- Calendar:
|
- Calendar:
|
||||||
. Fixed jdtogregorian overflow. (David Carlier)
|
. Fixed jdtogregorian overflow. (David Carlier)
|
||||||
|
|
||||||
|
- Core:
|
||||||
|
. Fail early in *nix configuration build script. (hakre)
|
||||||
|
|
||||||
- Curl:
|
- Curl:
|
||||||
. Fixed bug GH-16723 (CURLMOPT_PUSHFUNCTION issues). (cmb)
|
. Fixed bug GH-16723 (CURLMOPT_PUSHFUNCTION issues). (cmb)
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,7 @@ header_list=
|
||||||
olddir=$(pwd)
|
olddir=$(pwd)
|
||||||
|
|
||||||
# Go to project root.
|
# 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)"
|
module_ptrs="$(echo $extensions | $AWK -f ./build/order_by_dep.awk)"
|
||||||
|
|
||||||
|
|
|
@ -8,9 +8,9 @@ force=0
|
||||||
debug=0
|
debug=0
|
||||||
|
|
||||||
# Go to project root.
|
# 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
|
case "$php_extra_version" in
|
||||||
*-dev*)
|
*-dev*)
|
||||||
dev=1
|
dev=1
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
# Generate credits_*.h headers from the ext/*/CREDITS and sapi/*/CREDITS files.
|
# Generate credits_*.h headers from the ext/*/CREDITS and sapi/*/CREDITS files.
|
||||||
|
|
||||||
# Go to project root directory
|
# Go to project root directory
|
||||||
cd $(CDPATH= cd -- "$(dirname -- "$0")/../../" && pwd -P)
|
cd "$(CDPATH='' cd -- "$(dirname -- "$0")/../../" && pwd -P)" || exit
|
||||||
|
|
||||||
awkprog='
|
awkprog='
|
||||||
BEGIN { FS = "\n|\r\n|\r"; RS = "" }
|
BEGIN { FS = "\n|\r\n|\r"; RS = "" }
|
||||||
|
|
|
@ -42,7 +42,7 @@ SED=${SED:-sed}
|
||||||
MAKE=${MAKE:-make}
|
MAKE=${MAKE:-make}
|
||||||
|
|
||||||
# Go to project root.
|
# 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.
|
# Check required bison version from the configure.ac file.
|
||||||
required_bison_version=$($SED -n 's/PHP_PROG_BISON(\[\([0-9\.]*\)\].*/\1/p' configure.ac)
|
required_bison_version=$($SED -n 's/PHP_PROG_BISON(\[\([0-9\.]*\)\].*/\1/p' configure.ac)
|
||||||
|
|
|
@ -23,7 +23,7 @@ if [[ $($tar --version) == *"bsdtar"* ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Go to project root directory.
|
# Go to project root directory.
|
||||||
cd $(CDPATH= cd -- "$(dirname -- "$0")/../../" && pwd -P)
|
cd "$(CDPATH='' cd -- "$(dirname -- "$0")/../../" && pwd -P)" || exit
|
||||||
|
|
||||||
# Process options and arguments.
|
# Process options and arguments.
|
||||||
while :; do
|
while :; do
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue