aboutsummaryrefslogtreecommitdiffstats
path: root/exec/config.guess
diff options
context:
space:
mode:
authorPo Lu2023-11-26 08:27:38 +0800
committerPo Lu2023-11-26 08:28:45 +0800
commitfb0198bf7e2f2ebda42b4b580a6360b0c327697c (patch)
treeef8ce05666e1aede92bef9498969252b578a3955 /exec/config.guess
parentd2ce30afdd22291eeeaea7f3566bb7bd6bb14dda (diff)
downloademacs-fb0198bf7e2f2ebda42b4b580a6360b0c327697c.tar.gz
emacs-fb0198bf7e2f2ebda42b4b580a6360b0c327697c.zip
; Update Autoconf auxiliaries in exec
* exec/config.guess: * exec/config.sub: Update configury files.
Diffstat (limited to 'exec/config.guess')
-rwxr-xr-xexec/config.guess28
1 files changed, 17 insertions, 11 deletions
diff --git a/exec/config.guess b/exec/config.guess
index c7f17e8fb97..e7a6fe3e6d1 100755
--- a/exec/config.guess
+++ b/exec/config.guess
@@ -1,10 +1,10 @@
1#!/usr/bin/sh 1#!/usr/bin/sh
2# Attempt to guess a canonical system name. 2# Attempt to guess a canonical system name.
3# Copyright 1992-2022 Free Software Foundation, Inc. 3# Copyright 1992-2023 Free Software Foundation, Inc.
4 4
5# shellcheck disable=SC2006,SC2268 # see below for rationale 5# shellcheck disable=SC2006,SC2268 # see below for rationale
6 6
7timestamp='2022-05-25' 7timestamp='2023-06-23'
8 8
9# This file is free software; you can redistribute it and/or modify it 9# This file is free software; you can redistribute it and/or modify it
10# under the terms of the GNU General Public License as published by 10# under the terms of the GNU General Public License as published by
@@ -47,7 +47,7 @@ me=`echo "$0" | sed -e 's,.*/,,'`
47usage="\ 47usage="\
48Usage: $0 [OPTION] 48Usage: $0 [OPTION]
49 49
50Output the configuration name of the system \`$me' is run on. 50Output the configuration name of the system '$me' is run on.
51 51
52Options: 52Options:
53 -h, --help print this help, then exit 53 -h, --help print this help, then exit
@@ -60,13 +60,13 @@ version="\
60GNU config.guess ($timestamp) 60GNU config.guess ($timestamp)
61 61
62Originally written by Per Bothner. 62Originally written by Per Bothner.
63Copyright 1992-2022 Free Software Foundation, Inc. 63Copyright 1992-2023 Free Software Foundation, Inc.
64 64
65This is free software; see the source for copying conditions. There is NO 65This is free software; see the source for copying conditions. There is NO
66warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." 66warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
67 67
68help=" 68help="
69Try \`$me --help' for more information." 69Try '$me --help' for more information."
70 70
71# Parse command line 71# Parse command line
72while test $# -gt 0 ; do 72while test $# -gt 0 ; do
@@ -102,8 +102,8 @@ GUESS=
102# temporary files to be created and, as you can see below, it is a 102# temporary files to be created and, as you can see below, it is a
103# headache to deal with in a portable fashion. 103# headache to deal with in a portable fashion.
104 104
105# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still 105# Historically, 'CC_FOR_BUILD' used to be named 'HOST_CC'. We still
106# use `HOST_CC' if defined, but it is deprecated. 106# use 'HOST_CC' if defined, but it is deprecated.
107 107
108# Portable tmp directory creation inspired by the Autoconf team. 108# Portable tmp directory creation inspired by the Autoconf team.
109 109
@@ -459,7 +459,7 @@ case $UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION in
459 UNAME_RELEASE=`uname -v` 459 UNAME_RELEASE=`uname -v`
460 ;; 460 ;;
461 esac 461 esac
462 # Japanese Language versions have a version number like `4.1.3-JL'. 462 # Japanese Language versions have a version number like '4.1.3-JL'.
463 SUN_REL=`echo "$UNAME_RELEASE" | sed -e 's/-/_/'` 463 SUN_REL=`echo "$UNAME_RELEASE" | sed -e 's/-/_/'`
464 GUESS=sparc-sun-sunos$SUN_REL 464 GUESS=sparc-sun-sunos$SUN_REL
465 ;; 465 ;;
@@ -966,6 +966,12 @@ EOF
966 GNU_REL=`echo "$UNAME_RELEASE" | sed -e 's/[-(].*//'` 966 GNU_REL=`echo "$UNAME_RELEASE" | sed -e 's/[-(].*//'`
967 GUESS=$UNAME_MACHINE-unknown-$GNU_SYS$GNU_REL-$LIBC 967 GUESS=$UNAME_MACHINE-unknown-$GNU_SYS$GNU_REL-$LIBC
968 ;; 968 ;;
969 x86_64:[Mm]anagarm:*:*|i?86:[Mm]anagarm:*:*)
970 GUESS="$UNAME_MACHINE-pc-managarm-mlibc"
971 ;;
972 *:[Mm]anagarm:*:*)
973 GUESS="$UNAME_MACHINE-unknown-managarm-mlibc"
974 ;;
969 *:Minix:*:*) 975 *:Minix:*:*)
970 GUESS=$UNAME_MACHINE-unknown-minix 976 GUESS=$UNAME_MACHINE-unknown-minix
971 ;; 977 ;;
@@ -1036,7 +1042,7 @@ EOF
1036 k1om:Linux:*:*) 1042 k1om:Linux:*:*)
1037 GUESS=$UNAME_MACHINE-unknown-linux-$LIBC 1043 GUESS=$UNAME_MACHINE-unknown-linux-$LIBC
1038 ;; 1044 ;;
1039 loongarch32:Linux:*:* | loongarch64:Linux:*:* | loongarchx32:Linux:*:*) 1045 loongarch32:Linux:*:* | loongarch64:Linux:*:*)
1040 GUESS=$UNAME_MACHINE-unknown-linux-$LIBC 1046 GUESS=$UNAME_MACHINE-unknown-linux-$LIBC
1041 ;; 1047 ;;
1042 m32r*:Linux:*:*) 1048 m32r*:Linux:*:*)
@@ -1191,7 +1197,7 @@ EOF
1191 GUESS=$UNAME_MACHINE-pc-sysv4.2uw$UNAME_VERSION 1197 GUESS=$UNAME_MACHINE-pc-sysv4.2uw$UNAME_VERSION
1192 ;; 1198 ;;
1193 i*86:OS/2:*:*) 1199 i*86:OS/2:*:*)
1194 # If we were able to find `uname', then EMX Unix compatibility 1200 # If we were able to find 'uname', then EMX Unix compatibility
1195 # is probably installed. 1201 # is probably installed.
1196 GUESS=$UNAME_MACHINE-pc-os2-emx 1202 GUESS=$UNAME_MACHINE-pc-os2-emx
1197 ;; 1203 ;;
@@ -1332,7 +1338,7 @@ EOF
1332 GUESS=ns32k-sni-sysv 1338 GUESS=ns32k-sni-sysv
1333 fi 1339 fi
1334 ;; 1340 ;;
1335 PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort 1341 PENTIUM:*:4.0*:*) # Unisys 'ClearPath HMP IX 4000' SVR4/MP effort
1336 # says <Richard.M.Bartel@ccMail.Census.GOV> 1342 # says <Richard.M.Bartel@ccMail.Census.GOV>
1337 GUESS=i586-unisys-sysv4 1343 GUESS=i586-unisys-sysv4
1338 ;; 1344 ;;