diff options
Diffstat (limited to 'build-aux/config.guess')
| -rwxr-xr-x | build-aux/config.guess | 26 | 
1 files changed, 16 insertions, 10 deletions
| diff --git a/build-aux/config.guess b/build-aux/config.guess index f6d217a4..a9d01fde 100755 --- a/build-aux/config.guess +++ b/build-aux/config.guess @@ -1,10 +1,10 @@  #! /bin/sh  # Attempt to guess a canonical system name. -#   Copyright 1992-2024 Free Software Foundation, Inc. +#   Copyright 1992-2025 Free Software Foundation, Inc.  # shellcheck disable=SC2006,SC2268 # see below for rationale -timestamp='2024-01-01' +timestamp='2025-07-10'  # 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 @@ -60,7 +60,7 @@ version="\  GNU config.guess ($timestamp)  Originally written by Per Bothner. -Copyright 1992-2024 Free Software Foundation, Inc. +Copyright 1992-2025 Free Software Foundation, Inc.  This is free software; see the source for copying conditions.  There is NO  warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -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 <sys/systemcfg.h> -		main() +		int +		main ()  			{  			if (!__power_pc())  				exit(1); @@ -718,7 +719,8 @@ EOF  		#include <stdlib.h>  		#include <unistd.h> -		int main () +		int +		main ()  		{  		#if defined(_SC_KERNEL_BITS)  		    long bits = sysconf(_SC_KERNEL_BITS); @@ -1595,8 +1597,11 @@ EOF      *:Unleashed:*:*)  	GUESS=$UNAME_MACHINE-unknown-unleashed$UNAME_RELEASE  	;; -    *:Ironclad:*:*) -	GUESS=$UNAME_MACHINE-unknown-ironclad +    x86_64:[Ii]ronclad:*:*|i?86:[Ii]ronclad:*:*) +	GUESS=$UNAME_MACHINE-pc-ironclad-mlibc +	;; +    *:[Ii]ronclad:*:*) +	GUESS=$UNAME_MACHINE-unknown-ironclad-mlibc  	;;  esac @@ -1621,6 +1626,7 @@ cat > "$dummy.c" <<EOF  #endif  #endif  #endif +int  main ()  {  #if defined (sony) @@ -1805,8 +1811,8 @@ fi  exit 1  # Local variables: -# eval: (add-hook 'before-save-hook 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp nil t)  # time-stamp-start: "timestamp='" -# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-format: "%Y-%02m-%02d"  # time-stamp-end: "'"  # End: | 
