diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-05-07 13:47:49 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-05-07 13:47:49 +0300 |
commit | 3ff55e2709303f132d63d9cfa68b5d8d3616b1a9 (patch) | |
tree | e56ff4668e1c74d7f9ea97a80de1c8b887aa173b /build-aux/config.guess | |
parent | bd26081fcdfa8b7b566ce970baa53bfe05ca552e (diff) | |
parent | aa6a71c05ac79553f88583264179054998037f90 (diff) | |
download | egawk-3ff55e2709303f132d63d9cfa68b5d8d3616b1a9.tar.gz egawk-3ff55e2709303f132d63d9cfa68b5d8d3616b1a9.tar.bz2 egawk-3ff55e2709303f132d63d9cfa68b5d8d3616b1a9.zip |
Merge branch 'master' into feature/docit
Diffstat (limited to 'build-aux/config.guess')
-rwxr-xr-x | build-aux/config.guess | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/build-aux/config.guess b/build-aux/config.guess index 1972fda8..cc7a8107 100755 --- a/build-aux/config.guess +++ b/build-aux/config.guess @@ -2,7 +2,7 @@ # Attempt to guess a canonical system name. # Copyright 1992-2021 Free Software Foundation, Inc. -timestamp='2021-01-25' +timestamp='2021-04-21' # 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 @@ -261,6 +261,10 @@ case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in UNAME_MACHINE_ARCH=$(arch | sed 's/OpenBSD.//') echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE" exit ;; + *:SecBSD:*:*) + UNAME_MACHINE_ARCH=$(arch | sed 's/SecBSD.//') + echo "$UNAME_MACHINE_ARCH"-unknown-secbsd"$UNAME_RELEASE" + exit ;; *:LibertyBSD:*:*) UNAME_MACHINE_ARCH=$(arch | sed 's/^.*BSD\.//') echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE" @@ -949,7 +953,7 @@ EOF if test "$?" = 0 ; then LIBC=gnulibc1 ; fi echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; - arc:Linux:*:* | arceb:Linux:*:*) + arc:Linux:*:* | arceb:Linux:*:* | arc64:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arm*:Linux:*:*) |