Blame config.guess

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