diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2023-05-26 22:52:47 +0000 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2023-06-17 17:36:59 +0000 |
commit | 3dd6cae4b7623ef20ebc17ccf8dd182748c7040b (patch) | |
tree | 4b2a88056e33acd44e6c718b8e1d354efdd37b65 /config.guess | |
parent | e54344bd3252108c7c113ea773b3ae9a4e72b427 (diff) | |
download | lynx-snapshots-3dd6cae4b7623ef20ebc17ccf8dd182748c7040b.tar.gz |
snapshot of project "lynx", label v2-9-0dev_12d
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/config.guess b/config.guess index a419d864..69188da7 100755 --- a/config.guess +++ b/config.guess @@ -1,10 +1,10 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright 1992-2022 Free Software Foundation, Inc. +# Copyright 1992-2023 Free Software Foundation, Inc. # shellcheck disable=SC2006,SC2268 # see below for rationale -timestamp='2022-08-01' +timestamp='2023-01-01' # 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-2022 Free Software Foundation, Inc. +Copyright 1992-2023 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." @@ -966,6 +966,12 @@ EOF GNU_REL=`echo "$UNAME_RELEASE" | sed -e 's/[-(].*//'` GUESS=$UNAME_MACHINE-unknown-$GNU_SYS$GNU_REL-$LIBC ;; + x86_64:[Mm]anagarm:*:*|i?86:[Mm]anagarm:*:*) + GUESS="$UNAME_MACHINE-pc-managarm-mlibc" + ;; + *:[Mm]anagarm:*:*) + GUESS="$UNAME_MACHINE-unknown-managarm-mlibc" + ;; *:Minix:*:*) GUESS=$UNAME_MACHINE-unknown-minix ;; |