Blame autoconf/config.guess

Packit Service 5195f2
#! /bin/sh
Packit Service 5195f2
# Attempt to guess a canonical system name.
Packit Service 5195f2
#   Copyright 1992-2014 Free Software Foundation, Inc.
Packit Service 5195f2
Packit Service 5195f2
timestamp='2014-03-23'
Packit Service 5195f2
Packit Service 5195f2
# This file is free software; you can redistribute it and/or modify it
Packit Service 5195f2
# under the terms of the GNU General Public License as published by
Packit Service 5195f2
# the Free Software Foundation; either version 3 of the License, or
Packit Service 5195f2
# (at your option) any later version.
Packit Service 5195f2
#
Packit Service 5195f2
# This program is distributed in the hope that it will be useful, but
Packit Service 5195f2
# WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 5195f2
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 5195f2
# General Public License for more details.
Packit Service 5195f2
#
Packit Service 5195f2
# You should have received a copy of the GNU General Public License
Packit Service 5195f2
# along with this program; if not, see <http://www.gnu.org/licenses/>.
Packit Service 5195f2
#
Packit Service 5195f2
# As a special exception to the GNU General Public License, if you
Packit Service 5195f2
# distribute this file as part of a program that contains a
Packit Service 5195f2
# configuration script generated by Autoconf, you may include it under
Packit Service 5195f2
# the same distribution terms that you use for the rest of that
Packit Service 5195f2
# program.  This Exception is an additional permission under section 7
Packit Service 5195f2
# of the GNU General Public License, version 3 ("GPLv3").
Packit Service 5195f2
#
Packit Service 5195f2
# Originally written by Per Bothner.
Packit Service 5195f2
#
Packit Service 5195f2
# You can get the latest version of this script from:
Packit Service 5195f2
# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
Packit Service 5195f2
#
Packit Service 5195f2
# Please send patches with a ChangeLog entry to config-patches@gnu.org.
Packit Service 5195f2
Packit Service 5195f2
Packit Service 5195f2
me=`echo "$0" | sed -e 's,.*/,,'`
Packit Service 5195f2
Packit Service 5195f2
usage="\
Packit Service 5195f2
Usage: $0 [OPTION]
Packit Service 5195f2
Packit Service 5195f2
Output the configuration name of the system \`$me' is run on.
Packit Service 5195f2
Packit Service 5195f2
Operation modes:
Packit Service 5195f2
  -h, --help         print this help, then exit
Packit Service 5195f2
  -t, --time-stamp   print date of last modification, then exit
Packit Service 5195f2
  -v, --version      print version number, then exit
Packit Service 5195f2
Packit Service 5195f2
Report bugs and patches to <config-patches@gnu.org>."
Packit Service 5195f2
Packit Service 5195f2
version="\
Packit Service 5195f2
GNU config.guess ($timestamp)
Packit Service 5195f2
Packit Service 5195f2
Originally written by Per Bothner.
Packit Service 5195f2
Copyright 1992-2014 Free Software Foundation, Inc.
Packit Service 5195f2
Packit Service 5195f2
This is free software; see the source for copying conditions.  There is NO
Packit Service 5195f2
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
Packit Service 5195f2
Packit Service 5195f2
help="
Packit Service 5195f2
Try \`$me --help' for more information."
Packit Service 5195f2
Packit Service 5195f2
# Parse command line
Packit Service 5195f2
while test $# -gt 0 ; do
Packit Service 5195f2
  case $1 in
Packit Service 5195f2
    --time-stamp | --time* | -t )
Packit Service 5195f2
       echo "$timestamp" ; exit ;;
Packit Service 5195f2
    --version | -v )
Packit Service 5195f2
       echo "$version" ; exit ;;
Packit Service 5195f2
    --help | --h* | -h )
Packit Service 5195f2
       echo "$usage"; exit ;;
Packit Service 5195f2
    -- )     # Stop option processing
Packit Service 5195f2
       shift; break ;;
Packit Service 5195f2
    - )	# Use stdin as input.
Packit Service 5195f2
       break ;;
Packit Service 5195f2
    -* )
Packit Service 5195f2
       echo "$me: invalid option $1$help" >&2
Packit Service 5195f2
       exit 1 ;;
Packit Service 5195f2
    * )
Packit Service 5195f2
       break ;;
Packit Service 5195f2
  esac
Packit Service 5195f2
done
Packit Service 5195f2
Packit Service 5195f2
if test $# != 0; then
Packit Service 5195f2
  echo "$me: too many arguments$help" >&2
Packit Service 5195f2
  exit 1
Packit Service 5195f2
fi
Packit Service 5195f2
Packit Service 5195f2
trap 'exit 1' 1 2 15
Packit Service 5195f2
Packit Service 5195f2
# CC_FOR_BUILD -- compiler used by this script. Note that the use of a
Packit Service 5195f2
# compiler to aid in system detection is discouraged as it requires
Packit Service 5195f2
# temporary files to be created and, as you can see below, it is a
Packit Service 5195f2
# headache to deal with in a portable fashion.
Packit Service 5195f2
Packit Service 5195f2
# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still
Packit Service 5195f2
# use `HOST_CC' if defined, but it is deprecated.
Packit Service 5195f2
Packit Service 5195f2
# Portable tmp directory creation inspired by the Autoconf team.
Packit Service 5195f2
Packit Service 5195f2
set_cc_for_build='
Packit Service 5195f2
trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ;
Packit Service 5195f2
trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
Packit Service 5195f2
: ${TMPDIR=/tmp} ;
Packit Service 5195f2
 { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
Packit Service 5195f2
 { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
Packit Service 5195f2
 { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } ||
Packit Service 5195f2
 { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ;
Packit Service 5195f2
dummy=$tmp/dummy ;
Packit Service 5195f2
tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ;
Packit Service 5195f2
case $CC_FOR_BUILD,$HOST_CC,$CC in
Packit Service 5195f2
 ,,)    echo "int x;" > $dummy.c ;
Packit Service 5195f2
	for c in cc gcc c89 c99 ; do
Packit Service 5195f2
	  if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then
Packit Service 5195f2
	     CC_FOR_BUILD="$c"; break ;
Packit Service 5195f2
	  fi ;
Packit Service 5195f2
	done ;
Packit Service 5195f2
	if test x"$CC_FOR_BUILD" = x ; then
Packit Service 5195f2
	  CC_FOR_BUILD=no_compiler_found ;
Packit Service 5195f2
	fi
Packit Service 5195f2
	;;
Packit Service 5195f2
 ,,*)   CC_FOR_BUILD=$CC ;;
Packit Service 5195f2
 ,*,*)  CC_FOR_BUILD=$HOST_CC ;;
Packit Service 5195f2
esac ; set_cc_for_build= ;'
Packit Service 5195f2
Packit Service 5195f2
# This is needed to find uname on a Pyramid OSx when run in the BSD universe.
Packit Service 5195f2
# (ghazi@noc.rutgers.edu 1994-08-24)
Packit Service 5195f2
if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
Packit Service 5195f2
	PATH=$PATH:/.attbin ; export PATH
Packit Service 5195f2
fi
Packit Service 5195f2
Packit Service 5195f2
UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
Packit Service 5195f2
UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
Packit Service 5195f2
UNAME_SYSTEM=`(uname -s) 2>/dev/null`  || UNAME_SYSTEM=unknown
Packit Service 5195f2
UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
Packit Service 5195f2
Packit Service 5195f2
case "${UNAME_SYSTEM}" in
Packit Service 5195f2
Linux|GNU|GNU/*)
Packit Service 5195f2
	# If the system lacks a compiler, then just pick glibc.
Packit Service 5195f2
	# We could probably try harder.
Packit Service 5195f2
	LIBC=gnu
Packit Service 5195f2
Packit Service 5195f2
	eval $set_cc_for_build
Packit Service 5195f2
	cat <<-EOF > $dummy.c
Packit Service 5195f2
	#include <features.h>
Packit Service 5195f2
	#if defined(__UCLIBC__)
Packit Service 5195f2
	LIBC=uclibc
Packit Service 5195f2
	#elif defined(__dietlibc__)
Packit Service 5195f2
	LIBC=dietlibc
Packit Service 5195f2
	#else
Packit Service 5195f2
	LIBC=gnu
Packit Service 5195f2
	#endif
Packit Service 5195f2
	EOF
Packit Service 5195f2
	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`
Packit Service 5195f2
	;;
Packit Service 5195f2
esac
Packit Service 5195f2
Packit Service 5195f2
# Note: order is significant - the case branches are not exclusive.
Packit Service 5195f2
Packit Service 5195f2
case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
Packit Service 5195f2
    *:NetBSD:*:*)
Packit Service 5195f2
	# NetBSD (nbsd) targets should (where applicable) match one or
Packit Service 5195f2
	# more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*,
Packit Service 5195f2
	# *-*-netbsdecoff* and *-*-netbsd*.  For targets that recently
Packit Service 5195f2
	# switched to ELF, *-*-netbsd* would select the old
Packit Service 5195f2
	# object file format.  This provides both forward
Packit Service 5195f2
	# compatibility and a consistent mechanism for selecting the
Packit Service 5195f2
	# object file format.
Packit Service 5195f2
	#
Packit Service 5195f2
	# Note: NetBSD doesn't particularly care about the vendor
Packit Service 5195f2
	# portion of the name.  We always set it to "unknown".
Packit Service 5195f2
	sysctl="sysctl -n hw.machine_arch"
Packit Service 5195f2
	UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \
Packit Service 5195f2
	    /usr/sbin/$sysctl 2>/dev/null || echo unknown)`
Packit Service 5195f2
	case "${UNAME_MACHINE_ARCH}" in
Packit Service 5195f2
	    armeb) machine=armeb-unknown ;;
Packit Service 5195f2
	    arm*) machine=arm-unknown ;;
Packit Service 5195f2
	    sh3el) machine=shl-unknown ;;
Packit Service 5195f2
	    sh3eb) machine=sh-unknown ;;
Packit Service 5195f2
	    sh5el) machine=sh5le-unknown ;;
Packit Service 5195f2
	    *) machine=${UNAME_MACHINE_ARCH}-unknown ;;
Packit Service 5195f2
	esac
Packit Service 5195f2
	# The Operating System including object format, if it has switched
Packit Service 5195f2
	# to ELF recently, or will in the future.
Packit Service 5195f2
	case "${UNAME_MACHINE_ARCH}" in
Packit Service 5195f2
	    arm*|i386|m68k|ns32k|sh3*|sparc|vax)
Packit Service 5195f2
		eval $set_cc_for_build
Packit Service 5195f2
		if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
Packit Service 5195f2
			| grep -q __ELF__
Packit Service 5195f2
		then
Packit Service 5195f2
		    # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout).
Packit Service 5195f2
		    # Return netbsd for either.  FIX?
Packit Service 5195f2
		    os=netbsd
Packit Service 5195f2
		else
Packit Service 5195f2
		    os=netbsdelf
Packit Service 5195f2
		fi
Packit Service 5195f2
		;;
Packit Service 5195f2
	    *)
Packit Service 5195f2
		os=netbsd
Packit Service 5195f2
		;;
Packit Service 5195f2
	esac
Packit Service 5195f2
	# The OS release
Packit Service 5195f2
	# Debian GNU/NetBSD machines have a different userland, and
Packit Service 5195f2
	# thus, need a distinct triplet. However, they do not need
Packit Service 5195f2
	# kernel version information, so it can be replaced with a
Packit Service 5195f2
	# suitable tag, in the style of linux-gnu.
Packit Service 5195f2
	case "${UNAME_VERSION}" in
Packit Service 5195f2
	    Debian*)
Packit Service 5195f2
		release='-gnu'
Packit Service 5195f2
		;;
Packit Service 5195f2
	    *)
Packit Service 5195f2
		release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
Packit Service 5195f2
		;;
Packit Service 5195f2
	esac
Packit Service 5195f2
	# Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
Packit Service 5195f2
	# contains redundant information, the shorter form:
Packit Service 5195f2
	# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
Packit Service 5195f2
	echo "${machine}-${os}${release}"
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:Bitrig:*:*)
Packit Service 5195f2
	UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'`
Packit Service 5195f2
	echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:OpenBSD:*:*)
Packit Service 5195f2
	UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
Packit Service 5195f2
	echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:ekkoBSD:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:SolidBSD:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    macppc:MirBSD:*:*)
Packit Service 5195f2
	echo powerpc-unknown-mirbsd${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:MirBSD:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    alpha:OSF1:*:*)
Packit Service 5195f2
	case $UNAME_RELEASE in
Packit Service 5195f2
	*4.0)
Packit Service 5195f2
		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
Packit Service 5195f2
		;;
Packit Service 5195f2
	*5.*)
Packit Service 5195f2
		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
Packit Service 5195f2
		;;
Packit Service 5195f2
	esac
Packit Service 5195f2
	# According to Compaq, /usr/sbin/psrinfo has been available on
Packit Service 5195f2
	# OSF/1 and Tru64 systems produced since 1995.  I hope that
Packit Service 5195f2
	# covers most systems running today.  This code pipes the CPU
Packit Service 5195f2
	# types through head -n 1, so we only detect the type of CPU 0.
Packit Service 5195f2
	ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \(.*\) processor.*$/\1/p' | head -n 1`
Packit Service 5195f2
	case "$ALPHA_CPU_TYPE" in
Packit Service 5195f2
	    "EV4 (21064)")
Packit Service 5195f2
		UNAME_MACHINE="alpha" ;;
Packit Service 5195f2
	    "EV4.5 (21064)")
Packit Service 5195f2
		UNAME_MACHINE="alpha" ;;
Packit Service 5195f2
	    "LCA4 (21066/21068)")
Packit Service 5195f2
		UNAME_MACHINE="alpha" ;;
Packit Service 5195f2
	    "EV5 (21164)")
Packit Service 5195f2
		UNAME_MACHINE="alphaev5" ;;
Packit Service 5195f2
	    "EV5.6 (21164A)")
Packit Service 5195f2
		UNAME_MACHINE="alphaev56" ;;
Packit Service 5195f2
	    "EV5.6 (21164PC)")
Packit Service 5195f2
		UNAME_MACHINE="alphapca56" ;;
Packit Service 5195f2
	    "EV5.7 (21164PC)")
Packit Service 5195f2
		UNAME_MACHINE="alphapca57" ;;
Packit Service 5195f2
	    "EV6 (21264)")
Packit Service 5195f2
		UNAME_MACHINE="alphaev6" ;;
Packit Service 5195f2
	    "EV6.7 (21264A)")
Packit Service 5195f2
		UNAME_MACHINE="alphaev67" ;;
Packit Service 5195f2
	    "EV6.8CB (21264C)")
Packit Service 5195f2
		UNAME_MACHINE="alphaev68" ;;
Packit Service 5195f2
	    "EV6.8AL (21264B)")
Packit Service 5195f2
		UNAME_MACHINE="alphaev68" ;;
Packit Service 5195f2
	    "EV6.8CX (21264D)")
Packit Service 5195f2
		UNAME_MACHINE="alphaev68" ;;
Packit Service 5195f2
	    "EV6.9A (21264/EV69A)")
Packit Service 5195f2
		UNAME_MACHINE="alphaev69" ;;
Packit Service 5195f2
	    "EV7 (21364)")
Packit Service 5195f2
		UNAME_MACHINE="alphaev7" ;;
Packit Service 5195f2
	    "EV7.9 (21364A)")
Packit Service 5195f2
		UNAME_MACHINE="alphaev79" ;;
Packit Service 5195f2
	esac
Packit Service 5195f2
	# A Pn.n version is a patched version.
Packit Service 5195f2
	# A Vn.n version is a released version.
Packit Service 5195f2
	# A Tn.n version is a released field test version.
Packit Service 5195f2
	# A Xn.n version is an unreleased experimental baselevel.
Packit Service 5195f2
	# 1.2 uses "1.2" for uname -r.
Packit Service 5195f2
	echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
Packit Service 5195f2
	# Reset EXIT trap before exiting to avoid spurious non-zero exit code.
Packit Service 5195f2
	exitcode=$?
Packit Service 5195f2
	trap '' 0
Packit Service 5195f2
	exit $exitcode ;;
Packit Service 5195f2
    Alpha\ *:Windows_NT*:*)
Packit Service 5195f2
	# How do we know it's Interix rather than the generic POSIX subsystem?
Packit Service 5195f2
	# Should we change UNAME_MACHINE based on the output of uname instead
Packit Service 5195f2
	# of the specific Alpha model?
Packit Service 5195f2
	echo alpha-pc-interix
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    21064:Windows_NT:50:3)
Packit Service 5195f2
	echo alpha-dec-winnt3.5
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    Amiga*:UNIX_System_V:4.0:*)
Packit Service 5195f2
	echo m68k-unknown-sysv4
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:[Aa]miga[Oo][Ss]:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-amigaos
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:[Mm]orph[Oo][Ss]:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-morphos
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:OS/390:*:*)
Packit Service 5195f2
	echo i370-ibm-openedition
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:z/VM:*:*)
Packit Service 5195f2
	echo s390-ibm-zvmoe
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:OS400:*:*)
Packit Service 5195f2
	echo powerpc-ibm-os400
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
Packit Service 5195f2
	echo arm-acorn-riscix${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    arm*:riscos:*:*|arm*:RISCOS:*:*)
Packit Service 5195f2
	echo arm-unknown-riscos
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*)
Packit Service 5195f2
	echo hppa1.1-hitachi-hiuxmpp
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*)
Packit Service 5195f2
	# akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.
Packit Service 5195f2
	if test "`(/bin/universe) 2>/dev/null`" = att ; then
Packit Service 5195f2
		echo pyramid-pyramid-sysv3
Packit Service 5195f2
	else
Packit Service 5195f2
		echo pyramid-pyramid-bsd
Packit Service 5195f2
	fi
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    NILE*:*:*:dcosx)
Packit Service 5195f2
	echo pyramid-pyramid-svr4
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    DRS?6000:unix:4.0:6*)
Packit Service 5195f2
	echo sparc-icl-nx6
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*)
Packit Service 5195f2
	case `/usr/bin/uname -p` in
Packit Service 5195f2
	    sparc) echo sparc-icl-nx7; exit ;;
Packit Service 5195f2
	esac ;;
Packit Service 5195f2
    s390x:SunOS:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    sun4H:SunOS:5.*:*)
Packit Service 5195f2
	echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
Packit Service 5195f2
	echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*)
Packit Service 5195f2
	echo i386-pc-auroraux${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
Packit Service 5195f2
	eval $set_cc_for_build
Packit Service 5195f2
	SUN_ARCH="i386"
Packit Service 5195f2
	# If there is a compiler, see if it is configured for 64-bit objects.
Packit Service 5195f2
	# Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
Packit Service 5195f2
	# This test works for both compilers.
Packit Service 5195f2
	if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
Packit Service 5195f2
	    if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
Packit Service 5195f2
		(CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
Packit Service 5195f2
		grep IS_64BIT_ARCH >/dev/null
Packit Service 5195f2
	    then
Packit Service 5195f2
		SUN_ARCH="x86_64"
Packit Service 5195f2
	    fi
Packit Service 5195f2
	fi
Packit Service 5195f2
	echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    sun4*:SunOS:6*:*)
Packit Service 5195f2
	# According to config.sub, this is the proper way to canonicalize
Packit Service 5195f2
	# SunOS6.  Hard to guess exactly what SunOS6 will be like, but
Packit Service 5195f2
	# it's likely to be more like Solaris than SunOS4.
Packit Service 5195f2
	echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    sun4*:SunOS:*:*)
Packit Service 5195f2
	case "`/usr/bin/arch -k`" in
Packit Service 5195f2
	    Series*|S4*)
Packit Service 5195f2
		UNAME_RELEASE=`uname -v`
Packit Service 5195f2
		;;
Packit Service 5195f2
	esac
Packit Service 5195f2
	# Japanese Language versions have a version number like `4.1.3-JL'.
Packit Service 5195f2
	echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    sun3*:SunOS:*:*)
Packit Service 5195f2
	echo m68k-sun-sunos${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    sun*:*:4.2BSD:*)
Packit Service 5195f2
	UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
Packit Service 5195f2
	test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
Packit Service 5195f2
	case "`/bin/arch`" in
Packit Service 5195f2
	    sun3)
Packit Service 5195f2
		echo m68k-sun-sunos${UNAME_RELEASE}
Packit Service 5195f2
		;;
Packit Service 5195f2
	    sun4)
Packit Service 5195f2
		echo sparc-sun-sunos${UNAME_RELEASE}
Packit Service 5195f2
		;;
Packit Service 5195f2
	esac
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    aushp:SunOS:*:*)
Packit Service 5195f2
	echo sparc-auspex-sunos${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    # The situation for MiNT is a little confusing.  The machine name
Packit Service 5195f2
    # can be virtually everything (everything which is not
Packit Service 5195f2
    # "atarist" or "atariste" at least should have a processor
Packit Service 5195f2
    # > m68000).  The system name ranges from "MiNT" over "FreeMiNT"
Packit Service 5195f2
    # to the lowercase version "mint" (or "freemint").  Finally
Packit Service 5195f2
    # the system name "TOS" denotes a system which is actually not
Packit Service 5195f2
    # MiNT.  But MiNT is downward compatible to TOS, so this should
Packit Service 5195f2
    # be no problem.
Packit Service 5195f2
    atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
Packit Service 5195f2
	echo m68k-atari-mint${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
Packit Service 5195f2
	echo m68k-atari-mint${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
Packit Service 5195f2
	echo m68k-atari-mint${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
Packit Service 5195f2
	echo m68k-milan-mint${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
Packit Service 5195f2
	echo m68k-hades-mint${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
Packit Service 5195f2
	echo m68k-unknown-mint${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    m68k:machten:*:*)
Packit Service 5195f2
	echo m68k-apple-machten${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    powerpc:machten:*:*)
Packit Service 5195f2
	echo powerpc-apple-machten${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    RISC*:Mach:*:*)
Packit Service 5195f2
	echo mips-dec-mach_bsd4.3
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    RISC*:ULTRIX:*:*)
Packit Service 5195f2
	echo mips-dec-ultrix${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    VAX*:ULTRIX*:*:*)
Packit Service 5195f2
	echo vax-dec-ultrix${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    2020:CLIX:*:* | 2430:CLIX:*:*)
Packit Service 5195f2
	echo clipper-intergraph-clix${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    mips:*:*:UMIPS | mips:*:*:RISCos)
Packit Service 5195f2
	eval $set_cc_for_build
Packit Service 5195f2
	sed 's/^	//' << EOF >$dummy.c
Packit Service 5195f2
#ifdef __cplusplus
Packit Service 5195f2
#include <stdio.h>  /* for printf() prototype */
Packit Service 5195f2
	int main (int argc, char *argv[]) {
Packit Service 5195f2
#else
Packit Service 5195f2
	int main (argc, argv) int argc; char *argv[]; {
Packit Service 5195f2
#endif
Packit Service 5195f2
	#if defined (host_mips) && defined (MIPSEB)
Packit Service 5195f2
	#if defined (SYSTYPE_SYSV)
Packit Service 5195f2
	  printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0);
Packit Service 5195f2
	#endif
Packit Service 5195f2
	#if defined (SYSTYPE_SVR4)
Packit Service 5195f2
	  printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0);
Packit Service 5195f2
	#endif
Packit Service 5195f2
	#if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)
Packit Service 5195f2
	  printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0);
Packit Service 5195f2
	#endif
Packit Service 5195f2
	#endif
Packit Service 5195f2
	  exit (-1);
Packit Service 5195f2
	}
Packit Service 5195f2
EOF
Packit Service 5195f2
	$CC_FOR_BUILD -o $dummy $dummy.c &&
Packit Service 5195f2
	  dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` &&
Packit Service 5195f2
	  SYSTEM_NAME=`$dummy $dummyarg` &&
Packit Service 5195f2
	    { echo "$SYSTEM_NAME"; exit; }
Packit Service 5195f2
	echo mips-mips-riscos${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    Motorola:PowerMAX_OS:*:*)
Packit Service 5195f2
	echo powerpc-motorola-powermax
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    Motorola:*:4.3:PL8-*)
Packit Service 5195f2
	echo powerpc-harris-powermax
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*)
Packit Service 5195f2
	echo powerpc-harris-powermax
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    Night_Hawk:Power_UNIX:*:*)
Packit Service 5195f2
	echo powerpc-harris-powerunix
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    m88k:CX/UX:7*:*)
Packit Service 5195f2
	echo m88k-harris-cxux7
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    m88k:*:4*:R4*)
Packit Service 5195f2
	echo m88k-motorola-sysv4
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    m88k:*:3*:R3*)
Packit Service 5195f2
	echo m88k-motorola-sysv3
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    AViiON:dgux:*:*)
Packit Service 5195f2
	# DG/UX returns AViiON for all architectures
Packit Service 5195f2
	UNAME_PROCESSOR=`/usr/bin/uname -p`
Packit Service 5195f2
	if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ]
Packit Service 5195f2
	then
Packit Service 5195f2
	    if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \
Packit Service 5195f2
	       [ ${TARGET_BINARY_INTERFACE}x = x ]
Packit Service 5195f2
	    then
Packit Service 5195f2
		echo m88k-dg-dgux${UNAME_RELEASE}
Packit Service 5195f2
	    else
Packit Service 5195f2
		echo m88k-dg-dguxbcs${UNAME_RELEASE}
Packit Service 5195f2
	    fi
Packit Service 5195f2
	else
Packit Service 5195f2
	    echo i586-dg-dgux${UNAME_RELEASE}
Packit Service 5195f2
	fi
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    M88*:DolphinOS:*:*)	# DolphinOS (SVR3)
Packit Service 5195f2
	echo m88k-dolphin-sysv3
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    M88*:*:R3*:*)
Packit Service 5195f2
	# Delta 88k system running SVR3
Packit Service 5195f2
	echo m88k-motorola-sysv3
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)
Packit Service 5195f2
	echo m88k-tektronix-sysv3
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
Packit Service 5195f2
	echo m68k-tektronix-bsd
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:IRIX*:*:*)
Packit Service 5195f2
	echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    ????????:AIX?:[12].1:2)   # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
Packit Service 5195f2
	echo romp-ibm-aix     # uname -m gives an 8 hex-code CPU id
Packit Service 5195f2
	exit ;;               # Note that: echo "'`uname -s`'" gives 'AIX '
Packit Service 5195f2
    i*86:AIX:*:*)
Packit Service 5195f2
	echo i386-ibm-aix
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    ia64:AIX:*:*)
Packit Service 5195f2
	if [ -x /usr/bin/oslevel ] ; then
Packit Service 5195f2
		IBM_REV=`/usr/bin/oslevel`
Packit Service 5195f2
	else
Packit Service 5195f2
		IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
Packit Service 5195f2
	fi
Packit Service 5195f2
	echo ${UNAME_MACHINE}-ibm-aix${IBM_REV}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:AIX:2:3)
Packit Service 5195f2
	if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
Packit Service 5195f2
		eval $set_cc_for_build
Packit Service 5195f2
		sed 's/^		//' << EOF >$dummy.c
Packit Service 5195f2
		#include <sys/systemcfg.h>
Packit Service 5195f2
Packit Service 5195f2
		main()
Packit Service 5195f2
			{
Packit Service 5195f2
			if (!__power_pc())
Packit Service 5195f2
				exit(1);
Packit Service 5195f2
			puts("powerpc-ibm-aix3.2.5");
Packit Service 5195f2
			exit(0);
Packit Service 5195f2
			}
Packit Service 5195f2
EOF
Packit Service 5195f2
		if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy`
Packit Service 5195f2
		then
Packit Service 5195f2
			echo "$SYSTEM_NAME"
Packit Service 5195f2
		else
Packit Service 5195f2
			echo rs6000-ibm-aix3.2.5
Packit Service 5195f2
		fi
Packit Service 5195f2
	elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
Packit Service 5195f2
		echo rs6000-ibm-aix3.2.4
Packit Service 5195f2
	else
Packit Service 5195f2
		echo rs6000-ibm-aix3.2
Packit Service 5195f2
	fi
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:AIX:*:[4567])
Packit Service 5195f2
	IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
Packit Service 5195f2
	if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
Packit Service 5195f2
		IBM_ARCH=rs6000
Packit Service 5195f2
	else
Packit Service 5195f2
		IBM_ARCH=powerpc
Packit Service 5195f2
	fi
Packit Service 5195f2
	if [ -x /usr/bin/oslevel ] ; then
Packit Service 5195f2
		IBM_REV=`/usr/bin/oslevel`
Packit Service 5195f2
	else
Packit Service 5195f2
		IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
Packit Service 5195f2
	fi
Packit Service 5195f2
	echo ${IBM_ARCH}-ibm-aix${IBM_REV}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:AIX:*:*)
Packit Service 5195f2
	echo rs6000-ibm-aix
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    ibmrt:4.4BSD:*|romp-ibm:BSD:*)
Packit Service 5195f2
	echo romp-ibm-bsd4.4
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    ibmrt:*BSD:*|romp-ibm:BSD:*)            # covers RT/PC BSD and
Packit Service 5195f2
	echo romp-ibm-bsd${UNAME_RELEASE}   # 4.3 with uname added to
Packit Service 5195f2
	exit ;;                             # report: romp-ibm BSD 4.3
Packit Service 5195f2
    *:BOSX:*:*)
Packit Service 5195f2
	echo rs6000-bull-bosx
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    DPX/2?00:B.O.S.:*:*)
Packit Service 5195f2
	echo m68k-bull-sysv3
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    9000/[34]??:4.3bsd:1.*:*)
Packit Service 5195f2
	echo m68k-hp-bsd
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
Packit Service 5195f2
	echo m68k-hp-bsd4.4
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    9000/[34678]??:HP-UX:*:*)
Packit Service 5195f2
	HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
Packit Service 5195f2
	case "${UNAME_MACHINE}" in
Packit Service 5195f2
	    9000/31? )            HP_ARCH=m68000 ;;
Packit Service 5195f2
	    9000/[34]?? )         HP_ARCH=m68k ;;
Packit Service 5195f2
	    9000/[678][0-9][0-9])
Packit Service 5195f2
		if [ -x /usr/bin/getconf ]; then
Packit Service 5195f2
		    sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
Packit Service 5195f2
		    sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
Packit Service 5195f2
		    case "${sc_cpu_version}" in
Packit Service 5195f2
		      523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0
Packit Service 5195f2
		      528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1
Packit Service 5195f2
		      532)                      # CPU_PA_RISC2_0
Packit Service 5195f2
			case "${sc_kernel_bits}" in
Packit Service 5195f2
			  32) HP_ARCH="hppa2.0n" ;;
Packit Service 5195f2
			  64) HP_ARCH="hppa2.0w" ;;
Packit Service 5195f2
			  '') HP_ARCH="hppa2.0" ;;   # HP-UX 10.20
Packit Service 5195f2
			esac ;;
Packit Service 5195f2
		    esac
Packit Service 5195f2
		fi
Packit Service 5195f2
		if [ "${HP_ARCH}" = "" ]; then
Packit Service 5195f2
		    eval $set_cc_for_build
Packit Service 5195f2
		    sed 's/^		//' << EOF >$dummy.c
Packit Service 5195f2
Packit Service 5195f2
		#define _HPUX_SOURCE
Packit Service 5195f2
		#include <stdlib.h>
Packit Service 5195f2
		#include <unistd.h>
Packit Service 5195f2
Packit Service 5195f2
		int main ()
Packit Service 5195f2
		{
Packit Service 5195f2
		#if defined(_SC_KERNEL_BITS)
Packit Service 5195f2
		    long bits = sysconf(_SC_KERNEL_BITS);
Packit Service 5195f2
		#endif
Packit Service 5195f2
		    long cpu  = sysconf (_SC_CPU_VERSION);
Packit Service 5195f2
Packit Service 5195f2
		    switch (cpu)
Packit Service 5195f2
			{
Packit Service 5195f2
			case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
Packit Service 5195f2
			case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
Packit Service 5195f2
			case CPU_PA_RISC2_0:
Packit Service 5195f2
		#if defined(_SC_KERNEL_BITS)
Packit Service 5195f2
			    switch (bits)
Packit Service 5195f2
				{
Packit Service 5195f2
				case 64: puts ("hppa2.0w"); break;
Packit Service 5195f2
				case 32: puts ("hppa2.0n"); break;
Packit Service 5195f2
				default: puts ("hppa2.0"); break;
Packit Service 5195f2
				} break;
Packit Service 5195f2
		#else  /* !defined(_SC_KERNEL_BITS) */
Packit Service 5195f2
			    puts ("hppa2.0"); break;
Packit Service 5195f2
		#endif
Packit Service 5195f2
			default: puts ("hppa1.0"); break;
Packit Service 5195f2
			}
Packit Service 5195f2
		    exit (0);
Packit Service 5195f2
		}
Packit Service 5195f2
EOF
Packit Service 5195f2
		    (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
Packit Service 5195f2
		    test -z "$HP_ARCH" && HP_ARCH=hppa
Packit Service 5195f2
		fi ;;
Packit Service 5195f2
	esac
Packit Service 5195f2
	if [ ${HP_ARCH} = "hppa2.0w" ]
Packit Service 5195f2
	then
Packit Service 5195f2
	    eval $set_cc_for_build
Packit Service 5195f2
Packit Service 5195f2
	    # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating
Packit Service 5195f2
	    # 32-bit code.  hppa64-hp-hpux* has the same kernel and a compiler
Packit Service 5195f2
	    # generating 64-bit code.  GNU and HP use different nomenclature:
Packit Service 5195f2
	    #
Packit Service 5195f2
	    # $ CC_FOR_BUILD=cc ./config.guess
Packit Service 5195f2
	    # => hppa2.0w-hp-hpux11.23
Packit Service 5195f2
	    # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess
Packit Service 5195f2
	    # => hppa64-hp-hpux11.23
Packit Service 5195f2
Packit Service 5195f2
	    if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) |
Packit Service 5195f2
		grep -q __LP64__
Packit Service 5195f2
	    then
Packit Service 5195f2
		HP_ARCH="hppa2.0w"
Packit Service 5195f2
	    else
Packit Service 5195f2
		HP_ARCH="hppa64"
Packit Service 5195f2
	    fi
Packit Service 5195f2
	fi
Packit Service 5195f2
	echo ${HP_ARCH}-hp-hpux${HPUX_REV}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    ia64:HP-UX:*:*)
Packit Service 5195f2
	HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
Packit Service 5195f2
	echo ia64-hp-hpux${HPUX_REV}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    3050*:HI-UX:*:*)
Packit Service 5195f2
	eval $set_cc_for_build
Packit Service 5195f2
	sed 's/^	//' << EOF >$dummy.c
Packit Service 5195f2
	#include <unistd.h>
Packit Service 5195f2
	int
Packit Service 5195f2
	main ()
Packit Service 5195f2
	{
Packit Service 5195f2
	  long cpu = sysconf (_SC_CPU_VERSION);
Packit Service 5195f2
	  /* The order matters, because CPU_IS_HP_MC68K erroneously returns
Packit Service 5195f2
	     true for CPU_PA_RISC1_0.  CPU_IS_PA_RISC returns correct
Packit Service 5195f2
	     results, however.  */
Packit Service 5195f2
	  if (CPU_IS_PA_RISC (cpu))
Packit Service 5195f2
	    {
Packit Service 5195f2
	      switch (cpu)
Packit Service 5195f2
		{
Packit Service 5195f2
		  case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break;
Packit Service 5195f2
		  case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break;
Packit Service 5195f2
		  case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break;
Packit Service 5195f2
		  default: puts ("hppa-hitachi-hiuxwe2"); break;
Packit Service 5195f2
		}
Packit Service 5195f2
	    }
Packit Service 5195f2
	  else if (CPU_IS_HP_MC68K (cpu))
Packit Service 5195f2
	    puts ("m68k-hitachi-hiuxwe2");
Packit Service 5195f2
	  else puts ("unknown-hitachi-hiuxwe2");
Packit Service 5195f2
	  exit (0);
Packit Service 5195f2
	}
Packit Service 5195f2
EOF
Packit Service 5195f2
	$CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` &&
Packit Service 5195f2
		{ echo "$SYSTEM_NAME"; exit; }
Packit Service 5195f2
	echo unknown-hitachi-hiuxwe2
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
Packit Service 5195f2
	echo hppa1.1-hp-bsd
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    9000/8??:4.3bsd:*:*)
Packit Service 5195f2
	echo hppa1.0-hp-bsd
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*)
Packit Service 5195f2
	echo hppa1.0-hp-mpeix
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
Packit Service 5195f2
	echo hppa1.1-hp-osf
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    hp8??:OSF1:*:*)
Packit Service 5195f2
	echo hppa1.0-hp-osf
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*86:OSF1:*:*)
Packit Service 5195f2
	if [ -x /usr/sbin/sysversion ] ; then
Packit Service 5195f2
	    echo ${UNAME_MACHINE}-unknown-osf1mk
Packit Service 5195f2
	else
Packit Service 5195f2
	    echo ${UNAME_MACHINE}-unknown-osf1
Packit Service 5195f2
	fi
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    parisc*:Lites*:*:*)
Packit Service 5195f2
	echo hppa1.1-hp-lites
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
Packit Service 5195f2
	echo c1-convex-bsd
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
Packit Service 5195f2
	if getsysinfo -f scalar_acc
Packit Service 5195f2
	then echo c32-convex-bsd
Packit Service 5195f2
	else echo c2-convex-bsd
Packit Service 5195f2
	fi
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
Packit Service 5195f2
	echo c34-convex-bsd
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
Packit Service 5195f2
	echo c38-convex-bsd
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
Packit Service 5195f2
	echo c4-convex-bsd
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    CRAY*Y-MP:*:*:*)
Packit Service 5195f2
	echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    CRAY*[A-Z]90:*:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \
Packit Service 5195f2
	| sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
Packit Service 5195f2
	      -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \
Packit Service 5195f2
	      -e 's/\.[^.]*$/.X/'
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    CRAY*TS:*:*:*)
Packit Service 5195f2
	echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    CRAY*T3E:*:*:*)
Packit Service 5195f2
	echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    CRAY*SV1:*:*:*)
Packit Service 5195f2
	echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:UNICOS/mp:*:*)
Packit Service 5195f2
	echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
Packit Service 5195f2
	FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
Packit Service 5195f2
	FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
Packit Service 5195f2
	FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
Packit Service 5195f2
	echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    5000:UNIX_System_V:4.*:*)
Packit Service 5195f2
	FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
Packit Service 5195f2
	FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'`
Packit Service 5195f2
	echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    sparc*:BSD/OS:*:*)
Packit Service 5195f2
	echo sparc-unknown-bsdi${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:BSD/OS:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:FreeBSD:*:*)
Packit Service 5195f2
	UNAME_PROCESSOR=`/usr/bin/uname -p`
Packit Service 5195f2
	case ${UNAME_PROCESSOR} in
Packit Service 5195f2
	    amd64)
Packit Service 5195f2
		echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
Packit Service 5195f2
	    *)
Packit Service 5195f2
		echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
Packit Service 5195f2
	esac
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*:CYGWIN*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-pc-cygwin
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:MINGW64*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-pc-mingw64
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:MINGW*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-pc-mingw32
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:MSYS*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-pc-msys
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*:windows32*:*)
Packit Service 5195f2
	# uname -m includes "-pc" on this system.
Packit Service 5195f2
	echo ${UNAME_MACHINE}-mingw32
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*:PW*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-pc-pw32
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:Interix*:*)
Packit Service 5195f2
	case ${UNAME_MACHINE} in
Packit Service 5195f2
	    x86)
Packit Service 5195f2
		echo i586-pc-interix${UNAME_RELEASE}
Packit Service 5195f2
		exit ;;
Packit Service 5195f2
	    authenticamd | genuineintel | EM64T)
Packit Service 5195f2
		echo x86_64-unknown-interix${UNAME_RELEASE}
Packit Service 5195f2
		exit ;;
Packit Service 5195f2
	    IA64)
Packit Service 5195f2
		echo ia64-unknown-interix${UNAME_RELEASE}
Packit Service 5195f2
		exit ;;
Packit Service 5195f2
	esac ;;
Packit Service 5195f2
    [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
Packit Service 5195f2
	echo i${UNAME_MACHINE}-pc-mks
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    8664:Windows_NT:*)
Packit Service 5195f2
	echo x86_64-pc-mks
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*:Windows_NT*:* | Pentium*:Windows_NT*:*)
Packit Service 5195f2
	# How do we know it's Interix rather than the generic POSIX subsystem?
Packit Service 5195f2
	# It also conflicts with pre-2.0 versions of AT&T UWIN. Should we
Packit Service 5195f2
	# UNAME_MACHINE based on the output of uname instead of i386?
Packit Service 5195f2
	echo i586-pc-interix
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*:UWIN*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-pc-uwin
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
Packit Service 5195f2
	echo x86_64-unknown-cygwin
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    p*:CYGWIN*:*)
Packit Service 5195f2
	echo powerpcle-unknown-cygwin
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    prep*:SunOS:5.*:*)
Packit Service 5195f2
	echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:GNU:*:*)
Packit Service 5195f2
	# the GNU system
Packit Service 5195f2
	echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:GNU/*:*:*)
Packit Service 5195f2
	# other systems with GNU libc and userland
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*86:Minix:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-pc-minix
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    aarch64:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    aarch64_be:Linux:*:*)
Packit Service 5195f2
	UNAME_MACHINE=aarch64_be
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    alpha:Linux:*:*)
Packit Service 5195f2
	case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
Packit Service 5195f2
	  EV5)   UNAME_MACHINE=alphaev5 ;;
Packit Service 5195f2
	  EV56)  UNAME_MACHINE=alphaev56 ;;
Packit Service 5195f2
	  PCA56) UNAME_MACHINE=alphapca56 ;;
Packit Service 5195f2
	  PCA57) UNAME_MACHINE=alphapca56 ;;
Packit Service 5195f2
	  EV6)   UNAME_MACHINE=alphaev6 ;;
Packit Service 5195f2
	  EV67)  UNAME_MACHINE=alphaev67 ;;
Packit Service 5195f2
	  EV68*) UNAME_MACHINE=alphaev68 ;;
Packit Service 5195f2
	esac
Packit Service 5195f2
	objdump --private-headers /bin/sh | grep -q ld.so.1
Packit Service 5195f2
	if test "$?" = 0 ; then LIBC="gnulibc1" ; fi
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    arc:Linux:*:* | arceb:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    arm*:Linux:*:*)
Packit Service 5195f2
	eval $set_cc_for_build
Packit Service 5195f2
	if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
Packit Service 5195f2
	    | grep -q __ARM_EABI__
Packit Service 5195f2
	then
Packit Service 5195f2
	    echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Packit Service 5195f2
	else
Packit Service 5195f2
	    if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
Packit Service 5195f2
		| grep -q __ARM_PCS_VFP
Packit Service 5195f2
	    then
Packit Service 5195f2
		echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi
Packit Service 5195f2
	    else
Packit Service 5195f2
		echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf
Packit Service 5195f2
	    fi
Packit Service 5195f2
	fi
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    avr32*:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    cris:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-axis-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    crisv32:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-axis-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    frv:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    hexagon:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*86:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-pc-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    ia64:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    m32r*:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    m68*:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    mips:Linux:*:* | mips64:Linux:*:*)
Packit Service 5195f2
	eval $set_cc_for_build
Packit Service 5195f2
	sed 's/^	//' << EOF >$dummy.c
Packit Service 5195f2
	#undef CPU
Packit Service 5195f2
	#undef ${UNAME_MACHINE}
Packit Service 5195f2
	#undef ${UNAME_MACHINE}el
Packit Service 5195f2
	#if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
Packit Service 5195f2
	CPU=${UNAME_MACHINE}el
Packit Service 5195f2
	#else
Packit Service 5195f2
	#if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
Packit Service 5195f2
	CPU=${UNAME_MACHINE}
Packit Service 5195f2
	#else
Packit Service 5195f2
	CPU=
Packit Service 5195f2
	#endif
Packit Service 5195f2
	#endif
Packit Service 5195f2
EOF
Packit Service 5195f2
	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
Packit Service 5195f2
	test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }
Packit Service 5195f2
	;;
Packit Service 5195f2
    openrisc*:Linux:*:*)
Packit Service 5195f2
	echo or1k-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    or32:Linux:*:* | or1k*:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    padre:Linux:*:*)
Packit Service 5195f2
	echo sparc-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    parisc64:Linux:*:* | hppa64:Linux:*:*)
Packit Service 5195f2
	echo hppa64-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    parisc:Linux:*:* | hppa:Linux:*:*)
Packit Service 5195f2
	# Look for CPU level
Packit Service 5195f2
	case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
Packit Service 5195f2
	  PA7*) echo hppa1.1-unknown-linux-${LIBC} ;;
Packit Service 5195f2
	  PA8*) echo hppa2.0-unknown-linux-${LIBC} ;;
Packit Service 5195f2
	  *)    echo hppa-unknown-linux-${LIBC} ;;
Packit Service 5195f2
	esac
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    ppc64:Linux:*:*)
Packit Service 5195f2
	echo powerpc64-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    ppc:Linux:*:*)
Packit Service 5195f2
	echo powerpc-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    ppc64le:Linux:*:*)
Packit Service 5195f2
	echo powerpc64le-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    ppcle:Linux:*:*)
Packit Service 5195f2
	echo powerpcle-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    s390:Linux:*:* | s390x:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-ibm-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    sh64*:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    sh*:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    sparc:Linux:*:* | sparc64:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    tile*:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    vax:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-dec-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    x86_64:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    xtensa*:Linux:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*86:DYNIX/ptx:4*:*)
Packit Service 5195f2
	# ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
Packit Service 5195f2
	# earlier versions are messed up and put the nodename in both
Packit Service 5195f2
	# sysname and nodename.
Packit Service 5195f2
	echo i386-sequent-sysv4
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*86:UNIX_SV:4.2MP:2.*)
Packit Service 5195f2
	# Unixware is an offshoot of SVR4, but it has its own version
Packit Service 5195f2
	# number series starting with 2...
Packit Service 5195f2
	# I am not positive that other SVR4 systems won't match this,
Packit Service 5195f2
	# I just have to hope.  -- rms.
Packit Service 5195f2
	# Use sysv4.2uw... so that sysv4* matches it.
Packit Service 5195f2
	echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*86:OS/2:*:*)
Packit Service 5195f2
	# If we were able to find `uname', then EMX Unix compatibility
Packit Service 5195f2
	# is probably installed.
Packit Service 5195f2
	echo ${UNAME_MACHINE}-pc-os2-emx
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*86:XTS-300:*:STOP)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-stop
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*86:atheos:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-atheos
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*86:syllable:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-pc-syllable
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*)
Packit Service 5195f2
	echo i386-unknown-lynxos${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*86:*DOS:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-pc-msdosdjgpp
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
Packit Service 5195f2
	UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
Packit Service 5195f2
	if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
Packit Service 5195f2
		echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL}
Packit Service 5195f2
	else
Packit Service 5195f2
		echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL}
Packit Service 5195f2
	fi
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*86:*:5:[678]*)
Packit Service 5195f2
	# UnixWare 7.x, OpenUNIX and OpenServer 6.
Packit Service 5195f2
	case `/bin/uname -X | grep "^Machine"` in
Packit Service 5195f2
	    *486*)	     UNAME_MACHINE=i486 ;;
Packit Service 5195f2
	    *Pentium)	     UNAME_MACHINE=i586 ;;
Packit Service 5195f2
	    *Pent*|*Celeron) UNAME_MACHINE=i686 ;;
Packit Service 5195f2
	esac
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*86:*:3.2:*)
Packit Service 5195f2
	if test -f /usr/options/cb.name; then
Packit Service 5195f2
		UNAME_REL=`sed -n 's/.*Version //p' 
Packit Service 5195f2
		echo ${UNAME_MACHINE}-pc-isc$UNAME_REL
Packit Service 5195f2
	elif /bin/uname -X 2>/dev/null >/dev/null ; then
Packit Service 5195f2
		UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')`
Packit Service 5195f2
		(/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486
Packit Service 5195f2
		(/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \
Packit Service 5195f2
			&& UNAME_MACHINE=i586
Packit Service 5195f2
		(/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \
Packit Service 5195f2
			&& UNAME_MACHINE=i686
Packit Service 5195f2
		(/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \
Packit Service 5195f2
			&& UNAME_MACHINE=i686
Packit Service 5195f2
		echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
Packit Service 5195f2
	else
Packit Service 5195f2
		echo ${UNAME_MACHINE}-pc-sysv32
Packit Service 5195f2
	fi
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    pc:*:*:*)
Packit Service 5195f2
	# Left here for compatibility:
Packit Service 5195f2
	# uname -m prints for DJGPP always 'pc', but it prints nothing about
Packit Service 5195f2
	# the processor, so we play safe by assuming i586.
Packit Service 5195f2
	# Note: whatever this is, it MUST be the same as what config.sub
Packit Service 5195f2
	# prints for the "djgpp" host, or else GDB configury will decide that
Packit Service 5195f2
	# this is a cross-build.
Packit Service 5195f2
	echo i586-pc-msdosdjgpp
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    Intel:Mach:3*:*)
Packit Service 5195f2
	echo i386-pc-mach3
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    paragon:*:*:*)
Packit Service 5195f2
	echo i860-intel-osf1
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i860:*:4.*:*) # i860-SVR4
Packit Service 5195f2
	if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
Packit Service 5195f2
	  echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
Packit Service 5195f2
	else # Add other i860-SVR4 vendors below as they are discovered.
Packit Service 5195f2
	  echo i860-unknown-sysv${UNAME_RELEASE}  # Unknown i860-SVR4
Packit Service 5195f2
	fi
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    mini*:CTIX:SYS*5:*)
Packit Service 5195f2
	# "miniframe"
Packit Service 5195f2
	echo m68010-convergent-sysv
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    mc68k:UNIX:SYSTEM5:3.51m)
Packit Service 5195f2
	echo m68k-convergent-sysv
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    M680?0:D-NIX:5.3:*)
Packit Service 5195f2
	echo m68k-diab-dnix
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    M68*:*:R3V[5678]*:*)
Packit Service 5195f2
	test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;;
Packit Service 5195f2
    3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0)
Packit Service 5195f2
	OS_REL=''
Packit Service 5195f2
	test -r /etc/.relid \
Packit Service 5195f2
	&& OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
Packit Service 5195f2
	/bin/uname -p 2>/dev/null | grep 86 >/dev/null \
Packit Service 5195f2
	  && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
Packit Service 5195f2
	/bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
Packit Service 5195f2
	  && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
Packit Service 5195f2
    3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
Packit Service 5195f2
	/bin/uname -p 2>/dev/null | grep 86 >/dev/null \
Packit Service 5195f2
	  && { echo i486-ncr-sysv4; exit; } ;;
Packit Service 5195f2
    NCR*:*:4.2:* | MPRAS*:*:4.2:*)
Packit Service 5195f2
	OS_REL='.3'
Packit Service 5195f2
	test -r /etc/.relid \
Packit Service 5195f2
	    && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
Packit Service 5195f2
	/bin/uname -p 2>/dev/null | grep 86 >/dev/null \
Packit Service 5195f2
	    && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
Packit Service 5195f2
	/bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
Packit Service 5195f2
	    && { echo i586-ncr-sysv4.3${OS_REL}; exit; }
Packit Service 5195f2
	/bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \
Packit Service 5195f2
	    && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
Packit Service 5195f2
    m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
Packit Service 5195f2
	echo m68k-unknown-lynxos${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    mc68030:UNIX_System_V:4.*:*)
Packit Service 5195f2
	echo m68k-atari-sysv4
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    TSUNAMI:LynxOS:2.*:*)
Packit Service 5195f2
	echo sparc-unknown-lynxos${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    rs6000:LynxOS:2.*:*)
Packit Service 5195f2
	echo rs6000-unknown-lynxos${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*)
Packit Service 5195f2
	echo powerpc-unknown-lynxos${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    SM[BE]S:UNIX_SV:*:*)
Packit Service 5195f2
	echo mips-dde-sysv${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    RM*:ReliantUNIX-*:*:*)
Packit Service 5195f2
	echo mips-sni-sysv4
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    RM*:SINIX-*:*:*)
Packit Service 5195f2
	echo mips-sni-sysv4
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:SINIX-*:*:*)
Packit Service 5195f2
	if uname -p 2>/dev/null >/dev/null ; then
Packit Service 5195f2
		UNAME_MACHINE=`(uname -p) 2>/dev/null`
Packit Service 5195f2
		echo ${UNAME_MACHINE}-sni-sysv4
Packit Service 5195f2
	else
Packit Service 5195f2
		echo ns32k-sni-sysv
Packit Service 5195f2
	fi
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    PENTIUM:*:4.0*:*)	# Unisys `ClearPath HMP IX 4000' SVR4/MP effort
Packit Service 5195f2
			# says <Richard.M.Bartel@ccMail.Census.GOV>
Packit Service 5195f2
	echo i586-unisys-sysv4
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:UNIX_System_V:4*:FTX*)
Packit Service 5195f2
	# From Gerald Hewes <hewes@openmarket.com>.
Packit Service 5195f2
	# How about differentiating between stratus architectures? -djm
Packit Service 5195f2
	echo hppa1.1-stratus-sysv4
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:*:*:FTX*)
Packit Service 5195f2
	# From seanf@swdc.stratus.com.
Packit Service 5195f2
	echo i860-stratus-sysv4
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*86:VOS:*:*)
Packit Service 5195f2
	# From Paul.Green@stratus.com.
Packit Service 5195f2
	echo ${UNAME_MACHINE}-stratus-vos
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:VOS:*:*)
Packit Service 5195f2
	# From Paul.Green@stratus.com.
Packit Service 5195f2
	echo hppa1.1-stratus-vos
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    mc68*:A/UX:*:*)
Packit Service 5195f2
	echo m68k-apple-aux${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    news*:NEWS-OS:6*:*)
Packit Service 5195f2
	echo mips-sony-newsos6
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
Packit Service 5195f2
	if [ -d /usr/nec ]; then
Packit Service 5195f2
		echo mips-nec-sysv${UNAME_RELEASE}
Packit Service 5195f2
	else
Packit Service 5195f2
		echo mips-unknown-sysv${UNAME_RELEASE}
Packit Service 5195f2
	fi
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    BeBox:BeOS:*:*)	# BeOS running on hardware made by Be, PPC only.
Packit Service 5195f2
	echo powerpc-be-beos
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    BeMac:BeOS:*:*)	# BeOS running on Mac or Mac clone, PPC only.
Packit Service 5195f2
	echo powerpc-apple-beos
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    BePC:BeOS:*:*)	# BeOS running on Intel PC compatible.
Packit Service 5195f2
	echo i586-pc-beos
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    BePC:Haiku:*:*)	# Haiku running on Intel PC compatible.
Packit Service 5195f2
	echo i586-pc-haiku
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    x86_64:Haiku:*:*)
Packit Service 5195f2
	echo x86_64-unknown-haiku
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    SX-4:SUPER-UX:*:*)
Packit Service 5195f2
	echo sx4-nec-superux${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    SX-5:SUPER-UX:*:*)
Packit Service 5195f2
	echo sx5-nec-superux${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    SX-6:SUPER-UX:*:*)
Packit Service 5195f2
	echo sx6-nec-superux${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    SX-7:SUPER-UX:*:*)
Packit Service 5195f2
	echo sx7-nec-superux${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    SX-8:SUPER-UX:*:*)
Packit Service 5195f2
	echo sx8-nec-superux${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    SX-8R:SUPER-UX:*:*)
Packit Service 5195f2
	echo sx8r-nec-superux${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    Power*:Rhapsody:*:*)
Packit Service 5195f2
	echo powerpc-apple-rhapsody${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:Rhapsody:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:Darwin:*:*)
Packit Service 5195f2
	UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
Packit Service 5195f2
	eval $set_cc_for_build
Packit Service 5195f2
	if test "$UNAME_PROCESSOR" = unknown ; then
Packit Service 5195f2
	    UNAME_PROCESSOR=powerpc
Packit Service 5195f2
	fi
Packit Service 5195f2
	if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then
Packit Service 5195f2
	    if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
Packit Service 5195f2
		if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
Packit Service 5195f2
		    (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
Packit Service 5195f2
		    grep IS_64BIT_ARCH >/dev/null
Packit Service 5195f2
		then
Packit Service 5195f2
		    case $UNAME_PROCESSOR in
Packit Service 5195f2
			i386) UNAME_PROCESSOR=x86_64 ;;
Packit Service 5195f2
			powerpc) UNAME_PROCESSOR=powerpc64 ;;
Packit Service 5195f2
		    esac
Packit Service 5195f2
		fi
Packit Service 5195f2
	    fi
Packit Service 5195f2
	elif test "$UNAME_PROCESSOR" = i386 ; then
Packit Service 5195f2
	    # Avoid executing cc on OS X 10.9, as it ships with a stub
Packit Service 5195f2
	    # that puts up a graphical alert prompting to install
Packit Service 5195f2
	    # developer tools.  Any system running Mac OS X 10.7 or
Packit Service 5195f2
	    # later (Darwin 11 and later) is required to have a 64-bit
Packit Service 5195f2
	    # processor. This is not true of the ARM version of Darwin
Packit Service 5195f2
	    # that Apple uses in portable devices.
Packit Service 5195f2
	    UNAME_PROCESSOR=x86_64
Packit Service 5195f2
	fi
Packit Service 5195f2
	echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:procnto*:*:* | *:QNX:[0123456789]*:*)
Packit Service 5195f2
	UNAME_PROCESSOR=`uname -p`
Packit Service 5195f2
	if test "$UNAME_PROCESSOR" = "x86"; then
Packit Service 5195f2
		UNAME_PROCESSOR=i386
Packit Service 5195f2
		UNAME_MACHINE=pc
Packit Service 5195f2
	fi
Packit Service 5195f2
	echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:QNX:*:4*)
Packit Service 5195f2
	echo i386-pc-qnx
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    NEO-?:NONSTOP_KERNEL:*:*)
Packit Service 5195f2
	echo neo-tandem-nsk${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    NSE-*:NONSTOP_KERNEL:*:*)
Packit Service 5195f2
	echo nse-tandem-nsk${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    NSR-?:NONSTOP_KERNEL:*:*)
Packit Service 5195f2
	echo nsr-tandem-nsk${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:NonStop-UX:*:*)
Packit Service 5195f2
	echo mips-compaq-nonstopux
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    BS2000:POSIX*:*:*)
Packit Service 5195f2
	echo bs2000-siemens-sysv
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    DS/*:UNIX_System_V:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:Plan9:*:*)
Packit Service 5195f2
	# "uname -m" is not consistent, so use $cputype instead. 386
Packit Service 5195f2
	# is converted to i386 for consistency with other x86
Packit Service 5195f2
	# operating systems.
Packit Service 5195f2
	if test "$cputype" = "386"; then
Packit Service 5195f2
	    UNAME_MACHINE=i386
Packit Service 5195f2
	else
Packit Service 5195f2
	    UNAME_MACHINE="$cputype"
Packit Service 5195f2
	fi
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-plan9
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:TOPS-10:*:*)
Packit Service 5195f2
	echo pdp10-unknown-tops10
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:TENEX:*:*)
Packit Service 5195f2
	echo pdp10-unknown-tenex
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*)
Packit Service 5195f2
	echo pdp10-dec-tops20
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*)
Packit Service 5195f2
	echo pdp10-xkl-tops20
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:TOPS-20:*:*)
Packit Service 5195f2
	echo pdp10-unknown-tops20
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:ITS:*:*)
Packit Service 5195f2
	echo pdp10-unknown-its
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    SEI:*:*:SEIUX)
Packit Service 5195f2
	echo mips-sei-seiux${UNAME_RELEASE}
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:DragonFly:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    *:*VMS:*:*)
Packit Service 5195f2
	UNAME_MACHINE=`(uname -p) 2>/dev/null`
Packit Service 5195f2
	case "${UNAME_MACHINE}" in
Packit Service 5195f2
	    A*) echo alpha-dec-vms ; exit ;;
Packit Service 5195f2
	    I*) echo ia64-dec-vms ; exit ;;
Packit Service 5195f2
	    V*) echo vax-dec-vms ; exit ;;
Packit Service 5195f2
	esac ;;
Packit Service 5195f2
    *:XENIX:*:SysV)
Packit Service 5195f2
	echo i386-pc-xenix
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*86:skyos:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//'
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*86:rdos:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-pc-rdos
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    i*86:AROS:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-pc-aros
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
    x86_64:VMkernel:*:*)
Packit Service 5195f2
	echo ${UNAME_MACHINE}-unknown-esx
Packit Service 5195f2
	exit ;;
Packit Service 5195f2
esac
Packit Service 5195f2
Packit Service 5195f2
cat >&2 <
Packit Service 5195f2
$0: unable to guess system type
Packit Service 5195f2
Packit Service 5195f2
This script, last modified $timestamp, has failed to recognize
Packit Service 5195f2
the operating system you are using. It is advised that you
Packit Service 5195f2
download the most up to date version of the config scripts from
Packit Service 5195f2
Packit Service 5195f2
  http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
Packit Service 5195f2
and
Packit Service 5195f2
  http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
Packit Service 5195f2
Packit Service 5195f2
If the version you run ($0) is already up to date, please
Packit Service 5195f2
send the following data and any information you think might be
Packit Service 5195f2
pertinent to <config-patches@gnu.org> in order to provide the needed
Packit Service 5195f2
information to handle your system.
Packit Service 5195f2
Packit Service 5195f2
config.guess timestamp = $timestamp
Packit Service 5195f2
Packit Service 5195f2
uname -m = `(uname -m) 2>/dev/null || echo unknown`
Packit Service 5195f2
uname -r = `(uname -r) 2>/dev/null || echo unknown`
Packit Service 5195f2
uname -s = `(uname -s) 2>/dev/null || echo unknown`
Packit Service 5195f2
uname -v = `(uname -v) 2>/dev/null || echo unknown`
Packit Service 5195f2
Packit Service 5195f2
/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null`
Packit Service 5195f2
/bin/uname -X     = `(/bin/uname -X) 2>/dev/null`
Packit Service 5195f2
Packit Service 5195f2
hostinfo               = `(hostinfo) 2>/dev/null`
Packit Service 5195f2
/bin/universe          = `(/bin/universe) 2>/dev/null`
Packit Service 5195f2
/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null`
Packit Service 5195f2
/bin/arch              = `(/bin/arch) 2>/dev/null`
Packit Service 5195f2
/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null`
Packit Service 5195f2
/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null`
Packit Service 5195f2
Packit Service 5195f2
UNAME_MACHINE = ${UNAME_MACHINE}
Packit Service 5195f2
UNAME_RELEASE = ${UNAME_RELEASE}
Packit Service 5195f2
UNAME_SYSTEM  = ${UNAME_SYSTEM}
Packit Service 5195f2
UNAME_VERSION = ${UNAME_VERSION}
Packit Service 5195f2
EOF
Packit Service 5195f2
Packit Service 5195f2
exit 1
Packit Service 5195f2
Packit Service 5195f2
# Local variables:
Packit Service 5195f2
# eval: (add-hook 'write-file-hooks 'time-stamp)
Packit Service 5195f2
# time-stamp-start: "timestamp='"
Packit Service 5195f2
# time-stamp-format: "%:y-%02m-%02d"
Packit Service 5195f2
# time-stamp-end: "'"
Packit Service 5195f2
# End: