From 925de1da313f099d7df0e81a306a11ff6acba712 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Thu, 1 Aug 2024 08:43:29 +0200 Subject: [PATCH 1/2] Autotools: Update config.guess to 2024-07-27 and config.sub to 2024-05-27 ``` wget -O build/config.guess https://git.savannah.gnu.org/cgit/config.git/plain/config.guess wget -O build/config.sub https://git.savannah.gnu.org/cgit/config.git/plain/config.sub ``` --- build/config.guess | 11 +- build/config.sub | 729 ++++++++++++++++++++++++++++++++++----------- 2 files changed, 563 insertions(+), 177 deletions(-) diff --git a/build/config.guess b/build/config.guess index f6d217a49f8f4..48a684601bd23 100755 --- a/build/config.guess +++ b/build/config.guess @@ -4,7 +4,7 @@ # shellcheck disable=SC2006,SC2268 # see below for rationale -timestamp='2024-01-01' +timestamp='2024-07-27' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -123,7 +123,7 @@ set_cc_for_build() { dummy=$tmp/dummy case ${CC_FOR_BUILD-},${HOST_CC-},${CC-} in ,,) echo "int x;" > "$dummy.c" - for driver in cc gcc c89 c99 ; do + for driver in cc gcc c17 c99 c89 ; do if ($driver -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then CC_FOR_BUILD=$driver break @@ -634,7 +634,8 @@ EOF sed 's/^ //' << EOF > "$dummy.c" #include - main() + int + main () { if (!__power_pc()) exit(1); @@ -718,7 +719,8 @@ EOF #include #include - int main () + int + main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); @@ -1621,6 +1623,7 @@ cat > "$dummy.c" <&2 exit 1 ;; - kfreebsd*-gnu*- | kopensolaris*-gnu*-) + kfreebsd*-gnu*- | knetbsd*-gnu*- | netbsd*-gnu*- | kopensolaris*-gnu*-) ;; vxworks-simlinux- | vxworks-simwindows- | vxworks-spe-) ;; @@ -1864,6 +2245,8 @@ case $kernel-$os-$obj in ;; os2-emx-) ;; + rtmk-nova-) + ;; *-eabi*- | *-gnueabi*-) ;; none--*) @@ -1890,7 +2273,7 @@ case $vendor in *-riscix*) vendor=acorn ;; - *-sunos*) + *-sunos* | *-solaris*) vendor=sun ;; *-cnk* | *-aix*) From ed43a01b4e67bfa14930ed7cf46720bffd137003 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Thu, 1 Aug 2024 09:08:10 +0200 Subject: [PATCH 2/2] [skip ci] Update NEWS --- NEWS | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NEWS b/NEWS index d8f9f9b4c4f7a..e54e118690821 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,10 @@ PHP NEWS 01 Aug 2024, PHP 8.4.0alpha4 +- Core: + . Updated build system scripts config.guess to 2024-07-27 and config.sub to + 2024-05-27. (Peter Kokot) + - GMP: . RFC: Change GMP bool cast behavior. (Saki Takamachi)