annotate config.sub @ 2989:fed8a986d565

GTK3: Fix compiling with pre-2.22 WebKit2GTK. Missing exception variable, so just introduce a NULL one. Also the WebKitUserContentManager is NULL, causing it not to work. So make one during widget creation, allowing proper function. Might want to do this in the GTK4 code too just in case.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Tue, 04 Apr 2023 07:06:20 +0000
parents 83c17a84bc27
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1 #!/usr/bin/sh
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2 # Configuration validation subroutine script.
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
3 # Copyright 1992-2022 Free Software Foundation, Inc.
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
4
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
5 # shellcheck disable=SC2006,SC2268 # see below for rationale
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
6
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
7 timestamp='2022-01-03'
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
8
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
9 # This file is free software; you can redistribute it and/or modify it
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
10 # under the terms of the GNU General Public License as published by
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
11 # the Free Software Foundation, either version 3 of the License, or
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
12 # (at your option) any later version.
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
13 #
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
14 # This program is distributed in the hope that it will be useful, but
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
17 # General Public License for more details.
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
18 #
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
19 # You should have received a copy of the GNU General Public License
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
20 # along with this program; if not, see <https://www.gnu.org/licenses/>.
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
21 #
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
22 # As a special exception to the GNU General Public License, if you
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
23 # distribute this file as part of a program that contains a
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
24 # configuration script generated by Autoconf, you may include it under
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
25 # the same distribution terms that you use for the rest of that
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
26 # program. This Exception is an additional permission under section 7
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
27 # of the GNU General Public License, version 3 ("GPLv3").
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
28
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
29
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
30 # Please send patches to <config-patches@gnu.org>.
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
31 #
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
32 # Configuration subroutine to validate and canonicalize a configuration type.
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
33 # Supply the specified configuration type as an argument.
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
34 # If it is invalid, we print an error message on stderr and exit with code 1.
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
35 # Otherwise, we print the canonical config type on stdout and succeed.
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
36
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
37 # You can get the latest version of this script from:
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
38 # https://git.savannah.gnu.org/cgit/config.git/plain/config.sub
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
39
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
40 # This file is supposed to be the same for all GNU packages
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
41 # and recognize all the CPU types, system types and aliases
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
42 # that are meaningful with *any* GNU software.
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
43 # Each package is responsible for reporting which valid configurations
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
44 # it does not support. The user should be able to distinguish
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
45 # a failure to support a valid configuration from a meaningless
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
46 # configuration.
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
47
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
48 # The goal of this file is to map all the various variations of a given
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
49 # machine specification into a single specification in the form:
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
50 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
51 # or in some cases, the newer four-part form:
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
52 # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
53 # It is wrong to echo any other type of specification.
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
54
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
55 # The "shellcheck disable" line above the timestamp inhibits complaints
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
56 # about features and limitations of the classic Bourne shell that were
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
57 # superseded or lifted in POSIX. However, this script identifies a wide
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
58 # variety of pre-POSIX systems that do not have POSIX shells at all, and
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
59 # even some reasonably current systems (Solaris 10 as case-in-point) still
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
60 # have a pre-POSIX /bin/sh.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
61
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
62 me=`echo "$0" | sed -e 's,.*/,,'`
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
63
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
64 usage="\
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
65 Usage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
66
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
67 Canonicalize a configuration name.
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
68
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
69 Options:
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
70 -h, --help print this help, then exit
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
71 -t, --time-stamp print date of last modification, then exit
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
72 -v, --version print version number, then exit
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
73
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
74 Report bugs and patches to <config-patches@gnu.org>."
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
75
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
76 version="\
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
77 GNU config.sub ($timestamp)
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
78
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
79 Copyright 1992-2022 Free Software Foundation, Inc.
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
80
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
81 This is free software; see the source for copying conditions. There is NO
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
82 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
83
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
84 help="
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
85 Try \`$me --help' for more information."
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
86
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
87 # Parse command line
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
88 while test $# -gt 0 ; do
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
89 case $1 in
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
90 --time-stamp | --time* | -t )
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
91 echo "$timestamp" ; exit ;;
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
92 --version | -v )
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
93 echo "$version" ; exit ;;
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
94 --help | --h* | -h )
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
95 echo "$usage"; exit ;;
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
96 -- ) # Stop option processing
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
97 shift; break ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
98 - ) # Use stdin as input.
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
99 break ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
100 -* )
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
101 echo "$me: invalid option $1$help" >&2
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
102 exit 1 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
103
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
104 *local*)
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
105 # First pass through any local machine types.
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
106 echo "$1"
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
107 exit ;;
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
108
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
109 * )
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
110 break ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
111 esac
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
112 done
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
113
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
114 case $# in
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
115 0) echo "$me: missing argument$help" >&2
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
116 exit 1;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
117 1) ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
118 *) echo "$me: too many arguments$help" >&2
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
119 exit 1;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
120 esac
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
121
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
122 # Split fields of configuration type
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
123 # shellcheck disable=SC2162
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
124 saved_IFS=$IFS
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
125 IFS="-" read field1 field2 field3 field4 <<EOF
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
126 $1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
127 EOF
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
128 IFS=$saved_IFS
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
129
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
130 # Separate into logical components for further validation
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
131 case $1 in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
132 *-*-*-*-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
133 echo Invalid configuration \`"$1"\': more than four components >&2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
134 exit 1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
135 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
136 *-*-*-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
137 basic_machine=$field1-$field2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
138 basic_os=$field3-$field4
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
139 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
140 *-*-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
141 # Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
142 # parts
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
143 maybe_os=$field2-$field3
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
144 case $maybe_os in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
145 nto-qnx* | linux-* | uclinux-uclibc* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
146 | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
147 | netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
148 | storm-chaos* | os2-emx* | rtmk-nova*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
149 basic_machine=$field1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
150 basic_os=$maybe_os
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
151 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
152 android-linux)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
153 basic_machine=$field1-unknown
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
154 basic_os=linux-android
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
155 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
156 *)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
157 basic_machine=$field1-$field2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
158 basic_os=$field3
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
159 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
160 esac
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
161 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
162 *-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
163 # A lone config we happen to match not fitting any pattern
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
164 case $field1-$field2 in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
165 decstation-3100)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
166 basic_machine=mips-dec
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
167 basic_os=
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
168 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
169 *-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
170 # Second component is usually, but not always the OS
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
171 case $field2 in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
172 # Prevent following clause from handling this valid os
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
173 sun*os*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
174 basic_machine=$field1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
175 basic_os=$field2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
176 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
177 zephyr*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
178 basic_machine=$field1-unknown
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
179 basic_os=$field2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
180 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
181 # Manufacturers
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
182 dec* | mips* | sequent* | encore* | pc533* | sgi* | sony* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
183 | att* | 7300* | 3300* | delta* | motorola* | sun[234]* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
184 | unicom* | ibm* | next | hp | isi* | apollo | altos* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
185 | convergent* | ncr* | news | 32* | 3600* | 3100* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
186 | hitachi* | c[123]* | convex* | sun | crds | omron* | dg \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
187 | ultra | tti* | harris | dolphin | highlevel | gould \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
188 | cbm | ns | masscomp | apple | axis | knuth | cray \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
189 | microblaze* | sim | cisco \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
190 | oki | wec | wrs | winbond)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
191 basic_machine=$field1-$field2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
192 basic_os=
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
193 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
194 *)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
195 basic_machine=$field1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
196 basic_os=$field2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
197 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
198 esac
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
199 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
200 esac
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
201 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
202 *)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
203 # Convert single-component short-hands not valid as part of
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
204 # multi-component configurations.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
205 case $field1 in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
206 386bsd)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
207 basic_machine=i386-pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
208 basic_os=bsd
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
209 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
210 a29khif)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
211 basic_machine=a29k-amd
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
212 basic_os=udi
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
213 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
214 adobe68k)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
215 basic_machine=m68010-adobe
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
216 basic_os=scout
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
217 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
218 alliant)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
219 basic_machine=fx80-alliant
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
220 basic_os=
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
221 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
222 altos | altos3068)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
223 basic_machine=m68k-altos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
224 basic_os=
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
225 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
226 am29k)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
227 basic_machine=a29k-none
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
228 basic_os=bsd
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
229 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
230 amdahl)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
231 basic_machine=580-amdahl
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
232 basic_os=sysv
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
233 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
234 amiga)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
235 basic_machine=m68k-unknown
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
236 basic_os=
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
237 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
238 amigaos | amigados)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
239 basic_machine=m68k-unknown
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
240 basic_os=amigaos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
241 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
242 amigaunix | amix)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
243 basic_machine=m68k-unknown
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
244 basic_os=sysv4
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
245 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
246 apollo68)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
247 basic_machine=m68k-apollo
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
248 basic_os=sysv
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
249 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
250 apollo68bsd)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
251 basic_machine=m68k-apollo
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
252 basic_os=bsd
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
253 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
254 aros)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
255 basic_machine=i386-pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
256 basic_os=aros
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
257 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
258 aux)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
259 basic_machine=m68k-apple
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
260 basic_os=aux
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
261 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
262 balance)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
263 basic_machine=ns32k-sequent
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
264 basic_os=dynix
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
265 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
266 blackfin)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
267 basic_machine=bfin-unknown
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
268 basic_os=linux
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
269 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
270 cegcc)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
271 basic_machine=arm-unknown
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
272 basic_os=cegcc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
273 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
274 convex-c1)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
275 basic_machine=c1-convex
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
276 basic_os=bsd
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
277 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
278 convex-c2)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
279 basic_machine=c2-convex
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
280 basic_os=bsd
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
281 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
282 convex-c32)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
283 basic_machine=c32-convex
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
284 basic_os=bsd
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
285 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
286 convex-c34)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
287 basic_machine=c34-convex
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
288 basic_os=bsd
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
289 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
290 convex-c38)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
291 basic_machine=c38-convex
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
292 basic_os=bsd
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
293 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
294 cray)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
295 basic_machine=j90-cray
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
296 basic_os=unicos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
297 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
298 crds | unos)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
299 basic_machine=m68k-crds
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
300 basic_os=
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
301 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
302 da30)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
303 basic_machine=m68k-da30
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
304 basic_os=
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
305 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
306 decstation | pmax | pmin | dec3100 | decstatn)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
307 basic_machine=mips-dec
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
308 basic_os=
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
309 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
310 delta88)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
311 basic_machine=m88k-motorola
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
312 basic_os=sysv3
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
313 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
314 dicos)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
315 basic_machine=i686-pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
316 basic_os=dicos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
317 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
318 djgpp)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
319 basic_machine=i586-pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
320 basic_os=msdosdjgpp
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
321 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
322 ebmon29k)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
323 basic_machine=a29k-amd
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
324 basic_os=ebmon
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
325 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
326 es1800 | OSE68k | ose68k | ose | OSE)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
327 basic_machine=m68k-ericsson
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
328 basic_os=ose
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
329 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
330 gmicro)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
331 basic_machine=tron-gmicro
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
332 basic_os=sysv
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
333 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
334 go32)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
335 basic_machine=i386-pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
336 basic_os=go32
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
337 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
338 h8300hms)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
339 basic_machine=h8300-hitachi
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
340 basic_os=hms
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
341 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
342 h8300xray)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
343 basic_machine=h8300-hitachi
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
344 basic_os=xray
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
345 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
346 h8500hms)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
347 basic_machine=h8500-hitachi
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
348 basic_os=hms
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
349 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
350 harris)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
351 basic_machine=m88k-harris
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
352 basic_os=sysv3
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
353 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
354 hp300 | hp300hpux)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
355 basic_machine=m68k-hp
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
356 basic_os=hpux
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
357 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
358 hp300bsd)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
359 basic_machine=m68k-hp
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
360 basic_os=bsd
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
361 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
362 hppaosf)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
363 basic_machine=hppa1.1-hp
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
364 basic_os=osf
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
365 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
366 hppro)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
367 basic_machine=hppa1.1-hp
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
368 basic_os=proelf
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
369 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
370 i386mach)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
371 basic_machine=i386-mach
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
372 basic_os=mach
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
373 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
374 isi68 | isi)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
375 basic_machine=m68k-isi
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
376 basic_os=sysv
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
377 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
378 m68knommu)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
379 basic_machine=m68k-unknown
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
380 basic_os=linux
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
381 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
382 magnum | m3230)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
383 basic_machine=mips-mips
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
384 basic_os=sysv
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
385 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
386 merlin)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
387 basic_machine=ns32k-utek
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
388 basic_os=sysv
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
389 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
390 mingw64)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
391 basic_machine=x86_64-pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
392 basic_os=mingw64
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
393 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
394 mingw32)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
395 basic_machine=i686-pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
396 basic_os=mingw32
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
397 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
398 mingw32ce)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
399 basic_machine=arm-unknown
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
400 basic_os=mingw32ce
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
401 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
402 monitor)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
403 basic_machine=m68k-rom68k
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
404 basic_os=coff
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
405 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
406 morphos)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
407 basic_machine=powerpc-unknown
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
408 basic_os=morphos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
409 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
410 moxiebox)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
411 basic_machine=moxie-unknown
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
412 basic_os=moxiebox
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
413 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
414 msdos)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
415 basic_machine=i386-pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
416 basic_os=msdos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
417 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
418 msys)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
419 basic_machine=i686-pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
420 basic_os=msys
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
421 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
422 mvs)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
423 basic_machine=i370-ibm
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
424 basic_os=mvs
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
425 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
426 nacl)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
427 basic_machine=le32-unknown
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
428 basic_os=nacl
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
429 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
430 ncr3000)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
431 basic_machine=i486-ncr
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
432 basic_os=sysv4
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
433 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
434 netbsd386)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
435 basic_machine=i386-pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
436 basic_os=netbsd
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
437 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
438 netwinder)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
439 basic_machine=armv4l-rebel
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
440 basic_os=linux
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
441 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
442 news | news700 | news800 | news900)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
443 basic_machine=m68k-sony
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
444 basic_os=newsos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
445 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
446 news1000)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
447 basic_machine=m68030-sony
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
448 basic_os=newsos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
449 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
450 necv70)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
451 basic_machine=v70-nec
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
452 basic_os=sysv
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
453 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
454 nh3000)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
455 basic_machine=m68k-harris
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
456 basic_os=cxux
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
457 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
458 nh[45]000)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
459 basic_machine=m88k-harris
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
460 basic_os=cxux
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
461 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
462 nindy960)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
463 basic_machine=i960-intel
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
464 basic_os=nindy
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
465 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
466 mon960)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
467 basic_machine=i960-intel
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
468 basic_os=mon960
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
469 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
470 nonstopux)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
471 basic_machine=mips-compaq
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
472 basic_os=nonstopux
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
473 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
474 os400)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
475 basic_machine=powerpc-ibm
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
476 basic_os=os400
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
477 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
478 OSE68000 | ose68000)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
479 basic_machine=m68000-ericsson
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
480 basic_os=ose
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
481 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
482 os68k)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
483 basic_machine=m68k-none
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
484 basic_os=os68k
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
485 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
486 paragon)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
487 basic_machine=i860-intel
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
488 basic_os=osf
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
489 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
490 parisc)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
491 basic_machine=hppa-unknown
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
492 basic_os=linux
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
493 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
494 psp)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
495 basic_machine=mipsallegrexel-sony
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
496 basic_os=psp
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
497 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
498 pw32)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
499 basic_machine=i586-unknown
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
500 basic_os=pw32
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
501 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
502 rdos | rdos64)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
503 basic_machine=x86_64-pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
504 basic_os=rdos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
505 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
506 rdos32)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
507 basic_machine=i386-pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
508 basic_os=rdos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
509 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
510 rom68k)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
511 basic_machine=m68k-rom68k
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
512 basic_os=coff
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
513 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
514 sa29200)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
515 basic_machine=a29k-amd
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
516 basic_os=udi
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
517 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
518 sei)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
519 basic_machine=mips-sei
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
520 basic_os=seiux
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
521 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
522 sequent)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
523 basic_machine=i386-sequent
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
524 basic_os=
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
525 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
526 sps7)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
527 basic_machine=m68k-bull
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
528 basic_os=sysv2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
529 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
530 st2000)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
531 basic_machine=m68k-tandem
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
532 basic_os=
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
533 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
534 stratus)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
535 basic_machine=i860-stratus
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
536 basic_os=sysv4
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
537 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
538 sun2)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
539 basic_machine=m68000-sun
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
540 basic_os=
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
541 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
542 sun2os3)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
543 basic_machine=m68000-sun
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
544 basic_os=sunos3
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
545 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
546 sun2os4)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
547 basic_machine=m68000-sun
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
548 basic_os=sunos4
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
549 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
550 sun3)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
551 basic_machine=m68k-sun
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
552 basic_os=
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
553 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
554 sun3os3)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
555 basic_machine=m68k-sun
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
556 basic_os=sunos3
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
557 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
558 sun3os4)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
559 basic_machine=m68k-sun
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
560 basic_os=sunos4
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
561 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
562 sun4)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
563 basic_machine=sparc-sun
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
564 basic_os=
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
565 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
566 sun4os3)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
567 basic_machine=sparc-sun
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
568 basic_os=sunos3
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
569 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
570 sun4os4)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
571 basic_machine=sparc-sun
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
572 basic_os=sunos4
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
573 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
574 sun4sol2)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
575 basic_machine=sparc-sun
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
576 basic_os=solaris2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
577 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
578 sun386 | sun386i | roadrunner)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
579 basic_machine=i386-sun
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
580 basic_os=
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
581 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
582 sv1)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
583 basic_machine=sv1-cray
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
584 basic_os=unicos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
585 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
586 symmetry)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
587 basic_machine=i386-sequent
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
588 basic_os=dynix
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
589 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
590 t3e)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
591 basic_machine=alphaev5-cray
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
592 basic_os=unicos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
593 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
594 t90)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
595 basic_machine=t90-cray
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
596 basic_os=unicos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
597 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
598 toad1)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
599 basic_machine=pdp10-xkl
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
600 basic_os=tops20
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
601 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
602 tpf)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
603 basic_machine=s390x-ibm
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
604 basic_os=tpf
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
605 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
606 udi29k)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
607 basic_machine=a29k-amd
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
608 basic_os=udi
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
609 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
610 ultra3)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
611 basic_machine=a29k-nyu
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
612 basic_os=sym1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
613 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
614 v810 | necv810)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
615 basic_machine=v810-nec
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
616 basic_os=none
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
617 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
618 vaxv)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
619 basic_machine=vax-dec
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
620 basic_os=sysv
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
621 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
622 vms)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
623 basic_machine=vax-dec
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
624 basic_os=vms
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
625 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
626 vsta)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
627 basic_machine=i386-pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
628 basic_os=vsta
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
629 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
630 vxworks960)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
631 basic_machine=i960-wrs
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
632 basic_os=vxworks
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
633 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
634 vxworks68)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
635 basic_machine=m68k-wrs
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
636 basic_os=vxworks
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
637 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
638 vxworks29k)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
639 basic_machine=a29k-wrs
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
640 basic_os=vxworks
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
641 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
642 xbox)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
643 basic_machine=i686-pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
644 basic_os=mingw32
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
645 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
646 ymp)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
647 basic_machine=ymp-cray
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
648 basic_os=unicos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
649 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
650 *)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
651 basic_machine=$1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
652 basic_os=
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
653 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
654 esac
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
655 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
656 esac
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
657
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
658 # Decode 1-component or ad-hoc basic machines
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
659 case $basic_machine in
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
660 # Here we handle the default manufacturer of certain CPU types. It is in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
661 # some cases the only manufacturer, in others, it is the most popular.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
662 w89k)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
663 cpu=hppa1.1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
664 vendor=winbond
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
665 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
666 op50n)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
667 cpu=hppa1.1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
668 vendor=oki
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
669 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
670 op60c)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
671 cpu=hppa1.1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
672 vendor=oki
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
673 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
674 ibm*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
675 cpu=i370
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
676 vendor=ibm
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
677 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
678 orion105)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
679 cpu=clipper
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
680 vendor=highlevel
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
681 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
682 mac | mpw | mac-mpw)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
683 cpu=m68k
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
684 vendor=apple
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
685 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
686 pmac | pmac-mpw)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
687 cpu=powerpc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
688 vendor=apple
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
689 ;;
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
690
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
691 # Recognize the various machine names and aliases which stand
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
692 # for a CPU type and a company and sometimes even an OS.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
693 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
694 cpu=m68000
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
695 vendor=att
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
696 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
697 3b*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
698 cpu=we32k
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
699 vendor=att
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
700 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
701 bluegene*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
702 cpu=powerpc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
703 vendor=ibm
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
704 basic_os=cnk
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
705 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
706 decsystem10* | dec10*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
707 cpu=pdp10
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
708 vendor=dec
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
709 basic_os=tops10
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
710 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
711 decsystem20* | dec20*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
712 cpu=pdp10
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
713 vendor=dec
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
714 basic_os=tops20
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
715 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
716 delta | 3300 | motorola-3300 | motorola-delta \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
717 | 3300-motorola | delta-motorola)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
718 cpu=m68k
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
719 vendor=motorola
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
720 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
721 dpx2*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
722 cpu=m68k
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
723 vendor=bull
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
724 basic_os=sysv3
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
725 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
726 encore | umax | mmax)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
727 cpu=ns32k
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
728 vendor=encore
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
729 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
730 elxsi)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
731 cpu=elxsi
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
732 vendor=elxsi
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
733 basic_os=${basic_os:-bsd}
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
734 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
735 fx2800)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
736 cpu=i860
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
737 vendor=alliant
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
738 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
739 genix)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
740 cpu=ns32k
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
741 vendor=ns
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
742 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
743 h3050r* | hiux*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
744 cpu=hppa1.1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
745 vendor=hitachi
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
746 basic_os=hiuxwe2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
747 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
748 hp3k9[0-9][0-9] | hp9[0-9][0-9])
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
749 cpu=hppa1.0
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
750 vendor=hp
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
751 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
752 hp9k2[0-9][0-9] | hp9k31[0-9])
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
753 cpu=m68000
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
754 vendor=hp
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
755 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
756 hp9k3[2-9][0-9])
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
757 cpu=m68k
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
758 vendor=hp
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
759 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
760 hp9k6[0-9][0-9] | hp6[0-9][0-9])
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
761 cpu=hppa1.0
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
762 vendor=hp
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
763 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
764 hp9k7[0-79][0-9] | hp7[0-79][0-9])
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
765 cpu=hppa1.1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
766 vendor=hp
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
767 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
768 hp9k78[0-9] | hp78[0-9])
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
769 # FIXME: really hppa2.0-hp
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
770 cpu=hppa1.1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
771 vendor=hp
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
772 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
773 hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
774 # FIXME: really hppa2.0-hp
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
775 cpu=hppa1.1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
776 vendor=hp
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
777 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
778 hp9k8[0-9][13679] | hp8[0-9][13679])
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
779 cpu=hppa1.1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
780 vendor=hp
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
781 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
782 hp9k8[0-9][0-9] | hp8[0-9][0-9])
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
783 cpu=hppa1.0
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
784 vendor=hp
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
785 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
786 i*86v32)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
787 cpu=`echo "$1" | sed -e 's/86.*/86/'`
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
788 vendor=pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
789 basic_os=sysv32
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
790 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
791 i*86v4*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
792 cpu=`echo "$1" | sed -e 's/86.*/86/'`
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
793 vendor=pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
794 basic_os=sysv4
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
795 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
796 i*86v)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
797 cpu=`echo "$1" | sed -e 's/86.*/86/'`
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
798 vendor=pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
799 basic_os=sysv
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
800 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
801 i*86sol2)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
802 cpu=`echo "$1" | sed -e 's/86.*/86/'`
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
803 vendor=pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
804 basic_os=solaris2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
805 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
806 j90 | j90-cray)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
807 cpu=j90
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
808 vendor=cray
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
809 basic_os=${basic_os:-unicos}
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
810 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
811 iris | iris4d)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
812 cpu=mips
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
813 vendor=sgi
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
814 case $basic_os in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
815 irix*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
816 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
817 *)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
818 basic_os=irix4
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
819 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
820 esac
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
821 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
822 miniframe)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
823 cpu=m68000
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
824 vendor=convergent
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
825 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
826 *mint | mint[0-9]* | *MiNT | *MiNT[0-9]*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
827 cpu=m68k
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
828 vendor=atari
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
829 basic_os=mint
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
830 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
831 news-3600 | risc-news)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
832 cpu=mips
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
833 vendor=sony
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
834 basic_os=newsos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
835 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
836 next | m*-next)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
837 cpu=m68k
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
838 vendor=next
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
839 case $basic_os in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
840 openstep*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
841 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
842 nextstep*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
843 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
844 ns2*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
845 basic_os=nextstep2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
846 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
847 *)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
848 basic_os=nextstep3
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
849 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
850 esac
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
851 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
852 np1)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
853 cpu=np1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
854 vendor=gould
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
855 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
856 op50n-* | op60c-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
857 cpu=hppa1.1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
858 vendor=oki
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
859 basic_os=proelf
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
860 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
861 pa-hitachi)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
862 cpu=hppa1.1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
863 vendor=hitachi
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
864 basic_os=hiuxwe2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
865 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
866 pbd)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
867 cpu=sparc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
868 vendor=tti
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
869 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
870 pbb)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
871 cpu=m68k
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
872 vendor=tti
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
873 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
874 pc532)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
875 cpu=ns32k
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
876 vendor=pc532
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
877 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
878 pn)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
879 cpu=pn
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
880 vendor=gould
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
881 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
882 power)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
883 cpu=power
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
884 vendor=ibm
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
885 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
886 ps2)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
887 cpu=i386
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
888 vendor=ibm
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
889 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
890 rm[46]00)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
891 cpu=mips
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
892 vendor=siemens
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
893 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
894 rtpc | rtpc-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
895 cpu=romp
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
896 vendor=ibm
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
897 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
898 sde)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
899 cpu=mipsisa32
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
900 vendor=sde
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
901 basic_os=${basic_os:-elf}
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
902 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
903 simso-wrs)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
904 cpu=sparclite
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
905 vendor=wrs
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
906 basic_os=vxworks
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
907 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
908 tower | tower-32)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
909 cpu=m68k
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
910 vendor=ncr
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
911 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
912 vpp*|vx|vx-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
913 cpu=f301
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
914 vendor=fujitsu
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
915 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
916 w65)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
917 cpu=w65
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
918 vendor=wdc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
919 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
920 w89k-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
921 cpu=hppa1.1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
922 vendor=winbond
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
923 basic_os=proelf
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
924 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
925 none)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
926 cpu=none
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
927 vendor=none
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
928 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
929 leon|leon[3-9])
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
930 cpu=sparc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
931 vendor=$basic_machine
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
932 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
933 leon-*|leon[3-9]-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
934 cpu=sparc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
935 vendor=`echo "$basic_machine" | sed 's/-.*//'`
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
936 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
937
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
938 *-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
939 # shellcheck disable=SC2162
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
940 saved_IFS=$IFS
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
941 IFS="-" read cpu vendor <<EOF
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
942 $basic_machine
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
943 EOF
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
944 IFS=$saved_IFS
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
945 ;;
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
946 # We use `pc' rather than `unknown'
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
947 # because (1) that's what they normally are, and
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
948 # (2) the word "unknown" tends to confuse beginning users.
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
949 i*86 | x86_64)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
950 cpu=$basic_machine
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
951 vendor=pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
952 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
953 # These rules are duplicated from below for sake of the special case above;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
954 # i.e. things that normalized to x86 arches should also default to "pc"
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
955 pc98)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
956 cpu=i386
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
957 vendor=pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
958 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
959 x64 | amd64)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
960 cpu=x86_64
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
961 vendor=pc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
962 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
963 # Recognize the basic CPU types without company name.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
964 *)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
965 cpu=$basic_machine
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
966 vendor=unknown
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
967 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
968 esac
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
969
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
970 unset -v basic_machine
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
971
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
972 # Decode basic machines in the full and proper CPU-Company form.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
973 case $cpu-$vendor in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
974 # Here we handle the default manufacturer of certain CPU types in canonical form. It is in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
975 # some cases the only manufacturer, in others, it is the most popular.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
976 craynv-unknown)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
977 vendor=cray
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
978 basic_os=${basic_os:-unicosmp}
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
979 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
980 c90-unknown | c90-cray)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
981 vendor=cray
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
982 basic_os=${Basic_os:-unicos}
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
983 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
984 fx80-unknown)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
985 vendor=alliant
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
986 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
987 romp-unknown)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
988 vendor=ibm
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
989 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
990 mmix-unknown)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
991 vendor=knuth
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
992 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
993 microblaze-unknown | microblazeel-unknown)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
994 vendor=xilinx
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
995 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
996 rs6000-unknown)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
997 vendor=ibm
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
998 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
999 vax-unknown)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1000 vendor=dec
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1001 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1002 pdp11-unknown)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1003 vendor=dec
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1004 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1005 we32k-unknown)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1006 vendor=att
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1007 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1008 cydra-unknown)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1009 vendor=cydrome
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1010 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1011 i370-ibm*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1012 vendor=ibm
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1013 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1014 orion-unknown)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1015 vendor=highlevel
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1016 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1017 xps-unknown | xps100-unknown)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1018 cpu=xps100
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1019 vendor=honeywell
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1020 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1021
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1022 # Here we normalize CPU types with a missing or matching vendor
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1023 armh-unknown | armh-alt)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1024 cpu=armv7l
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1025 vendor=alt
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1026 basic_os=${basic_os:-linux-gnueabihf}
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1027 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1028 dpx20-unknown | dpx20-bull)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1029 cpu=rs6000
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1030 vendor=bull
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1031 basic_os=${basic_os:-bosx}
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1032 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1033
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1034 # Here we normalize CPU types irrespective of the vendor
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1035 amd64-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1036 cpu=x86_64
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1037 ;;
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1038 blackfin-*)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1039 cpu=bfin
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1040 basic_os=linux
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1041 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1042 c54x-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1043 cpu=tic54x
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1044 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1045 c55x-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1046 cpu=tic55x
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1047 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1048 c6x-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1049 cpu=tic6x
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1050 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1051 e500v[12]-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1052 cpu=powerpc
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1053 basic_os=${basic_os}"spe"
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1054 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1055 mips3*-*)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1056 cpu=mips64
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1057 ;;
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1058 ms1-*)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1059 cpu=mt
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1060 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1061 m68knommu-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1062 cpu=m68k
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1063 basic_os=linux
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1064 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1065 m9s12z-* | m68hcs12z-* | hcs12z-* | s12z-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1066 cpu=s12z
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1067 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1068 openrisc-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1069 cpu=or32
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1070 ;;
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1071 parisc-*)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1072 cpu=hppa
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1073 basic_os=linux
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1074 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1075 pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1076 cpu=i586
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1077 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1078 pentiumpro-* | p6-* | 6x86-* | athlon-* | athalon_*-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1079 cpu=i686
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1080 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1081 pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1082 cpu=i686
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1083 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1084 pentium4-*)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1085 cpu=i786
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1086 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1087 pc98-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1088 cpu=i386
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1089 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1090 ppc-* | ppcbe-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1091 cpu=powerpc
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1092 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1093 ppcle-* | powerpclittle-*)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1094 cpu=powerpcle
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1095 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1096 ppc64-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1097 cpu=powerpc64
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1098 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1099 ppc64le-* | powerpc64little-*)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1100 cpu=powerpc64le
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1101 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1102 sb1-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1103 cpu=mipsisa64sb1
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1104 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1105 sb1el-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1106 cpu=mipsisa64sb1el
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1107 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1108 sh5e[lb]-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1109 cpu=`echo "$cpu" | sed 's/^\(sh.\)e\(.\)$/\1\2e/'`
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1110 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1111 spur-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1112 cpu=spur
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1113 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1114 strongarm-* | thumb-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1115 cpu=arm
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1116 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1117 tx39-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1118 cpu=mipstx39
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1119 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1120 tx39el-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1121 cpu=mipstx39el
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1122 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1123 x64-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1124 cpu=x86_64
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1125 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1126 xscale-* | xscalee[bl]-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1127 cpu=`echo "$cpu" | sed 's/^xscale/arm/'`
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1128 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1129 arm64-* | aarch64le-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1130 cpu=aarch64
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1131 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1132
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1133 # Recognize the canonical CPU Types that limit and/or modify the
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1134 # company names they are paired with.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1135 cr16-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1136 basic_os=${basic_os:-elf}
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1137 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1138 crisv32-* | etraxfs*-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1139 cpu=crisv32
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1140 vendor=axis
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1141 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1142 cris-* | etrax*-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1143 cpu=cris
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1144 vendor=axis
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1145 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1146 crx-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1147 basic_os=${basic_os:-elf}
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1148 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1149 neo-tandem)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1150 cpu=neo
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1151 vendor=tandem
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1152 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1153 nse-tandem)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1154 cpu=nse
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1155 vendor=tandem
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1156 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1157 nsr-tandem)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1158 cpu=nsr
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1159 vendor=tandem
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1160 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1161 nsv-tandem)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1162 cpu=nsv
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1163 vendor=tandem
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1164 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1165 nsx-tandem)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1166 cpu=nsx
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1167 vendor=tandem
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1168 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1169 mipsallegrexel-sony)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1170 cpu=mipsallegrexel
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1171 vendor=sony
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1172 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1173 tile*-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1174 basic_os=${basic_os:-linux-gnu}
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1175 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1176
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1177 *)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1178 # Recognize the canonical CPU types that are allowed with any
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1179 # company name.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1180 case $cpu in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1181 1750a | 580 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1182 | a29k \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1183 | aarch64 | aarch64_be \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1184 | abacus \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1185 | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1186 | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1187 | alphapca5[67] | alpha64pca5[67] \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1188 | am33_2.0 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1189 | amdgcn \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1190 | arc | arceb | arc32 | arc64 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1191 | arm | arm[lb]e | arme[lb] | armv* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1192 | avr | avr32 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1193 | asmjs \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1194 | ba \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1195 | be32 | be64 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1196 | bfin | bpf | bs2000 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1197 | c[123]* | c30 | [cjt]90 | c4x \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1198 | c8051 | clipper | craynv | csky | cydra \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1199 | d10v | d30v | dlx | dsp16xx \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1200 | e2k | elxsi | epiphany \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1201 | f30[01] | f700 | fido | fr30 | frv | ft32 | fx80 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1202 | h8300 | h8500 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1203 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1204 | hexagon \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1205 | i370 | i*86 | i860 | i960 | ia16 | ia64 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1206 | ip2k | iq2000 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1207 | k1om \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1208 | le32 | le64 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1209 | lm32 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1210 | loongarch32 | loongarch64 | loongarchx32 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1211 | m32c | m32r | m32rle \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1212 | m5200 | m68000 | m680[012346]0 | m68360 | m683?2 | m68k \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1213 | m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1214 | m88110 | m88k | maxq | mb | mcore | mep | metag \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1215 | microblaze | microblazeel \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1216 | mips | mipsbe | mipseb | mipsel | mipsle \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1217 | mips16 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1218 | mips64 | mips64eb | mips64el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1219 | mips64octeon | mips64octeonel \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1220 | mips64orion | mips64orionel \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1221 | mips64r5900 | mips64r5900el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1222 | mips64vr | mips64vrel \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1223 | mips64vr4100 | mips64vr4100el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1224 | mips64vr4300 | mips64vr4300el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1225 | mips64vr5000 | mips64vr5000el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1226 | mips64vr5900 | mips64vr5900el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1227 | mipsisa32 | mipsisa32el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1228 | mipsisa32r2 | mipsisa32r2el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1229 | mipsisa32r3 | mipsisa32r3el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1230 | mipsisa32r5 | mipsisa32r5el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1231 | mipsisa32r6 | mipsisa32r6el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1232 | mipsisa64 | mipsisa64el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1233 | mipsisa64r2 | mipsisa64r2el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1234 | mipsisa64r3 | mipsisa64r3el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1235 | mipsisa64r5 | mipsisa64r5el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1236 | mipsisa64r6 | mipsisa64r6el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1237 | mipsisa64sb1 | mipsisa64sb1el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1238 | mipsisa64sr71k | mipsisa64sr71kel \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1239 | mipsr5900 | mipsr5900el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1240 | mipstx39 | mipstx39el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1241 | mmix \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1242 | mn10200 | mn10300 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1243 | moxie \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1244 | mt \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1245 | msp430 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1246 | nds32 | nds32le | nds32be \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1247 | nfp \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1248 | nios | nios2 | nios2eb | nios2el \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1249 | none | np1 | ns16k | ns32k | nvptx \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1250 | open8 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1251 | or1k* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1252 | or32 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1253 | orion \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1254 | picochip \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1255 | pdp10 | pdp11 | pj | pjl | pn | power \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1256 | powerpc | powerpc64 | powerpc64le | powerpcle | powerpcspe \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1257 | pru \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1258 | pyramid \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1259 | riscv | riscv32 | riscv32be | riscv64 | riscv64be \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1260 | rl78 | romp | rs6000 | rx \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1261 | s390 | s390x \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1262 | score \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1263 | sh | shl \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1264 | sh[1234] | sh[24]a | sh[24]ae[lb] | sh[23]e | she[lb] | sh[lb]e \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1265 | sh[1234]e[lb] | sh[12345][lb]e | sh[23]ele | sh64 | sh64le \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1266 | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1267 | sparclite \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1268 | sparcv8 | sparcv9 | sparcv9b | sparcv9v | sv1 | sx* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1269 | spu \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1270 | tahoe \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1271 | thumbv7* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1272 | tic30 | tic4x | tic54x | tic55x | tic6x | tic80 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1273 | tron \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1274 | ubicom32 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1275 | v70 | v850 | v850e | v850e1 | v850es | v850e2 | v850e2v3 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1276 | vax \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1277 | visium \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1278 | w65 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1279 | wasm32 | wasm64 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1280 | we32k \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1281 | x86 | x86_64 | xc16x | xgate | xps100 \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1282 | xstormy16 | xtensa* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1283 | ymp \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1284 | z8k | z80)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1285 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1286
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1287 *)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1288 echo Invalid configuration \`"$1"\': machine \`"$cpu-$vendor"\' not recognized 1>&2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1289 exit 1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1290 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1291 esac
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1292 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1293 esac
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1294
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1295 # Here we canonicalize certain aliases for manufacturers.
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1296 case $vendor in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1297 digital*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1298 vendor=dec
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1299 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1300 commodore*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1301 vendor=cbm
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1302 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1303 *)
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1304 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1305 esac
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1306
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1307 # Decode manufacturer-specific aliases for certain operating systems.
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1308
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1309 if test x$basic_os != x
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1310 then
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1311
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1312 # First recognize some ad-hoc cases, or perhaps split kernel-os, or else just
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1313 # set os.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1314 case $basic_os in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1315 gnu/linux*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1316 kernel=linux
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1317 os=`echo "$basic_os" | sed -e 's|gnu/linux|gnu|'`
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1318 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1319 os2-emx)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1320 kernel=os2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1321 os=`echo "$basic_os" | sed -e 's|os2-emx|emx|'`
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1322 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1323 nto-qnx*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1324 kernel=nto
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1325 os=`echo "$basic_os" | sed -e 's|nto-qnx|qnx|'`
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1326 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1327 *-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1328 # shellcheck disable=SC2162
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1329 saved_IFS=$IFS
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1330 IFS="-" read kernel os <<EOF
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1331 $basic_os
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1332 EOF
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1333 IFS=$saved_IFS
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1334 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1335 # Default OS when just kernel was specified
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1336 nto*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1337 kernel=nto
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1338 os=`echo "$basic_os" | sed -e 's|nto|qnx|'`
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1339 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1340 linux*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1341 kernel=linux
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1342 os=`echo "$basic_os" | sed -e 's|linux|gnu|'`
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1343 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1344 *)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1345 kernel=
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1346 os=$basic_os
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1347 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1348 esac
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1349
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1350 # Now, normalize the OS (knowing we just have one component, it's not a kernel,
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1351 # etc.)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1352 case $os in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1353 # First match some system type aliases that might get confused
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1354 # with valid system types.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1355 # solaris* is a basic system type, with this one exception.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1356 auroraux)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1357 os=auroraux
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1358 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1359 bluegene*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1360 os=cnk
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1361 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1362 solaris1 | solaris1.*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1363 os=`echo "$os" | sed -e 's|solaris1|sunos4|'`
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1364 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1365 solaris)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1366 os=solaris2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1367 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1368 unixware*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1369 os=sysv4.2uw
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1370 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1371 # es1800 is here to avoid being matched by es* (a different OS)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1372 es1800*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1373 os=ose
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1374 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1375 # Some version numbers need modification
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1376 chorusos*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1377 os=chorusos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1378 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1379 isc)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1380 os=isc2.2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1381 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1382 sco6)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1383 os=sco5v6
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1384 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1385 sco5)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1386 os=sco3.2v5
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1387 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1388 sco4)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1389 os=sco3.2v4
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1390 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1391 sco3.2.[4-9]*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1392 os=`echo "$os" | sed -e 's/sco3.2./sco3.2v/'`
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1393 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1394 sco*v* | scout)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1395 # Don't match below
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1396 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1397 sco*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1398 os=sco3.2v2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1399 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1400 psos*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1401 os=psos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1402 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1403 qnx*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1404 os=qnx
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1405 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1406 hiux*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1407 os=hiuxwe2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1408 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1409 lynx*178)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1410 os=lynxos178
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1411 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1412 lynx*5)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1413 os=lynxos5
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1414 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1415 lynxos*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1416 # don't get caught up in next wildcard
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1417 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1418 lynx*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1419 os=lynxos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1420 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1421 mac[0-9]*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1422 os=`echo "$os" | sed -e 's|mac|macos|'`
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1423 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1424 opened*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1425 os=openedition
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1426 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1427 os400*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1428 os=os400
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1429 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1430 sunos5*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1431 os=`echo "$os" | sed -e 's|sunos5|solaris2|'`
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1432 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1433 sunos6*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1434 os=`echo "$os" | sed -e 's|sunos6|solaris3|'`
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1435 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1436 wince*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1437 os=wince
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1438 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1439 utek*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1440 os=bsd
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1441 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1442 dynix*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1443 os=bsd
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1444 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1445 acis*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1446 os=aos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1447 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1448 atheos*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1449 os=atheos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1450 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1451 syllable*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1452 os=syllable
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1453 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1454 386bsd)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1455 os=bsd
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1456 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1457 ctix* | uts*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1458 os=sysv
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1459 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1460 nova*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1461 os=rtmk-nova
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1462 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1463 ns2)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1464 os=nextstep2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1465 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1466 # Preserve the version number of sinix5.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1467 sinix5.*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1468 os=`echo "$os" | sed -e 's|sinix|sysv|'`
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1469 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1470 sinix*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1471 os=sysv4
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1472 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1473 tpf*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1474 os=tpf
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1475 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1476 triton*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1477 os=sysv3
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1478 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1479 oss*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1480 os=sysv3
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1481 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1482 svr4*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1483 os=sysv4
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1484 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1485 svr3)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1486 os=sysv3
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1487 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1488 sysvr4)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1489 os=sysv4
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1490 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1491 ose*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1492 os=ose
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1493 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1494 *mint | mint[0-9]* | *MiNT | MiNT[0-9]*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1495 os=mint
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1496 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1497 dicos*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1498 os=dicos
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1499 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1500 pikeos*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1501 # Until real need of OS specific support for
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1502 # particular features comes up, bare metal
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1503 # configurations are quite functional.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1504 case $cpu in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1505 arm*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1506 os=eabi
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1507 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1508 *)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1509 os=elf
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1510 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1511 esac
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1512 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1513 *)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1514 # No normalization, but not necessarily accepted, that comes below.
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1515 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1516 esac
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1517
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1518 else
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1519
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1520 # Here we handle the default operating systems that come with various machines.
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1521 # The value should be what the vendor currently ships out the door with their
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1522 # machine or put another way, the most popular os provided with the machine.
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1523
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1524 # Note that if you're going to try to match "-MANUFACTURER" here (say,
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1525 # "-sun"), then you have to tell the case statement up towards the top
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1526 # that MANUFACTURER isn't an operating system. Otherwise, code above
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1527 # will signal an error saying that MANUFACTURER isn't an operating
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1528 # system, and we'll never get to this point.
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1529
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1530 kernel=
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1531 case $cpu-$vendor in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1532 score-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1533 os=elf
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1534 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1535 spu-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1536 os=elf
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1537 ;;
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1538 *-acorn)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1539 os=riscix1.2
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1540 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1541 arm*-rebel)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1542 kernel=linux
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1543 os=gnu
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1544 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1545 arm*-semi)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1546 os=aout
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1547 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1548 c4x-* | tic4x-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1549 os=coff
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1550 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1551 c8051-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1552 os=elf
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1553 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1554 clipper-intergraph)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1555 os=clix
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1556 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1557 hexagon-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1558 os=elf
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1559 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1560 tic54x-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1561 os=coff
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1562 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1563 tic55x-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1564 os=coff
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1565 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1566 tic6x-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1567 os=coff
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1568 ;;
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1569 # This must come before the *-dec entry.
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1570 pdp10-*)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1571 os=tops20
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1572 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1573 pdp11-*)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1574 os=none
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1575 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1576 *-dec | vax-*)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1577 os=ultrix4.2
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1578 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1579 m68*-apollo)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1580 os=domain
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1581 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1582 i386-sun)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1583 os=sunos4.0.2
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1584 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1585 m68000-sun)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1586 os=sunos3
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1587 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1588 m68*-cisco)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1589 os=aout
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1590 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1591 mep-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1592 os=elf
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1593 ;;
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1594 mips*-cisco)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1595 os=elf
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1596 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1597 mips*-*)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1598 os=elf
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1599 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1600 or32-*)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1601 os=coff
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1602 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1603 *-tti) # must be before sparc entry or we get the wrong os.
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1604 os=sysv3
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1605 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1606 sparc-* | *-sun)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1607 os=sunos4.1.1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1608 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1609 pru-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1610 os=elf
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1611 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1612 *-be)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1613 os=beos
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1614 ;;
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1615 *-ibm)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1616 os=aix
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1617 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1618 *-knuth)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1619 os=mmixware
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1620 ;;
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1621 *-wec)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1622 os=proelf
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1623 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1624 *-winbond)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1625 os=proelf
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1626 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1627 *-oki)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1628 os=proelf
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1629 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1630 *-hp)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1631 os=hpux
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1632 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1633 *-hitachi)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1634 os=hiux
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1635 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1636 i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1637 os=sysv
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1638 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1639 *-cbm)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1640 os=amigaos
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1641 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1642 *-dg)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1643 os=dgux
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1644 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1645 *-dolphin)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1646 os=sysv3
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1647 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1648 m68k-ccur)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1649 os=rtu
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1650 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1651 m88k-omron*)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1652 os=luna
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1653 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1654 *-next)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1655 os=nextstep
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1656 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1657 *-sequent)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1658 os=ptx
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1659 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1660 *-crds)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1661 os=unos
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1662 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1663 *-ns)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1664 os=genix
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1665 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1666 i370-*)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1667 os=mvs
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1668 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1669 *-gould)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1670 os=sysv
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1671 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1672 *-highlevel)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1673 os=bsd
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1674 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1675 *-encore)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1676 os=bsd
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1677 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1678 *-sgi)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1679 os=irix
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1680 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1681 *-siemens)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1682 os=sysv4
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1683 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1684 *-masscomp)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1685 os=rtu
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1686 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1687 f30[01]-fujitsu | f700-fujitsu)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1688 os=uxpv
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1689 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1690 *-rom68k)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1691 os=coff
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1692 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1693 *-*bug)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1694 os=coff
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1695 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1696 *-apple)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1697 os=macos
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1698 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1699 *-atari*)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1700 os=mint
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1701 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1702 *-wrs)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1703 os=vxworks
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1704 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1705 *)
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1706 os=none
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1707 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1708 esac
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1709
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1710 fi
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1711
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1712 # Now, validate our (potentially fixed-up) OS.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1713 case $os in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1714 # Sometimes we do "kernel-libc", so those need to count as OSes.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1715 musl* | newlib* | relibc* | uclibc*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1716 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1717 # Likewise for "kernel-abi"
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1718 eabi* | gnueabi*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1719 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1720 # VxWorks passes extra cpu info in the 4th filed.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1721 simlinux | simwindows | spe)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1722 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1723 # Now accept the basic system types.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1724 # The portable systems comes first.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1725 # Each alternative MUST end in a * to match a version number.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1726 gnu* | android* | bsd* | mach* | minix* | genix* | ultrix* | irix* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1727 | *vms* | esix* | aix* | cnk* | sunos | sunos[34]* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1728 | hpux* | unos* | osf* | luna* | dgux* | auroraux* | solaris* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1729 | sym* | plan9* | psp* | sim* | xray* | os68k* | v88r* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1730 | hiux* | abug | nacl* | netware* | windows* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1731 | os9* | macos* | osx* | ios* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1732 | mpw* | magic* | mmixware* | mon960* | lnews* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1733 | amigaos* | amigados* | msdos* | newsos* | unicos* | aof* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1734 | aos* | aros* | cloudabi* | sortix* | twizzler* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1735 | nindy* | vxsim* | vxworks* | ebmon* | hms* | mvs* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1736 | clix* | riscos* | uniplus* | iris* | isc* | rtu* | xenix* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1737 | mirbsd* | netbsd* | dicos* | openedition* | ose* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1738 | bitrig* | openbsd* | secbsd* | solidbsd* | libertybsd* | os108* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1739 | ekkobsd* | freebsd* | riscix* | lynxos* | os400* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1740 | bosx* | nextstep* | cxux* | aout* | elf* | oabi* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1741 | ptx* | coff* | ecoff* | winnt* | domain* | vsta* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1742 | udi* | lites* | ieee* | go32* | aux* | hcos* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1743 | chorusrdb* | cegcc* | glidix* | serenity* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1744 | cygwin* | msys* | pe* | moss* | proelf* | rtems* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1745 | midipix* | mingw32* | mingw64* | mint* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1746 | uxpv* | beos* | mpeix* | udk* | moxiebox* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1747 | interix* | uwin* | mks* | rhapsody* | darwin* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1748 | openstep* | oskit* | conix* | pw32* | nonstopux* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1749 | storm-chaos* | tops10* | tenex* | tops20* | its* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1750 | os2* | vos* | palmos* | uclinux* | nucleus* | morphos* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1751 | scout* | superux* | sysv* | rtmk* | tpf* | windiss* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1752 | powermax* | dnix* | nx6 | nx7 | sei* | dragonfly* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1753 | skyos* | haiku* | rdos* | toppers* | drops* | es* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1754 | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1755 | midnightbsd* | amdhsa* | unleashed* | emscripten* | wasi* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1756 | nsk* | powerunix* | genode* | zvmoe* | qnx* | emx* | zephyr* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1757 | fiwix* )
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1758 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1759 # This one is extra strict with allowed versions
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1760 sco3.2v2 | sco3.2v[4-9]* | sco5v6*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1761 # Don't forget version if it is 3.2v4 or newer.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1762 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1763 none)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1764 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1765 *)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1766 echo Invalid configuration \`"$1"\': OS \`"$os"\' not recognized 1>&2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1767 exit 1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1768 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1769 esac
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1770
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1771 # As a final step for OS-related things, validate the OS-kernel combination
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1772 # (given a valid OS), if there is a kernel.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1773 case $kernel-$os in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1774 linux-gnu* | linux-dietlibc* | linux-android* | linux-newlib* \
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1775 | linux-musl* | linux-relibc* | linux-uclibc* )
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1776 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1777 uclinux-uclibc* )
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1778 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1779 -dietlibc* | -newlib* | -musl* | -relibc* | -uclibc* )
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1780 # These are just libc implementations, not actual OSes, and thus
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1781 # require a kernel.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1782 echo "Invalid configuration \`$1': libc \`$os' needs explicit kernel." 1>&2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1783 exit 1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1784 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1785 kfreebsd*-gnu* | kopensolaris*-gnu*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1786 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1787 vxworks-simlinux | vxworks-simwindows | vxworks-spe)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1788 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1789 nto-qnx*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1790 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1791 os2-emx)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1792 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1793 *-eabi* | *-gnueabi*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1794 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1795 -*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1796 # Blank kernel with real OS is always fine.
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1797 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1798 *-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1799 echo "Invalid configuration \`$1': Kernel \`$kernel' not known to work with OS \`$os'." 1>&2
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1800 exit 1
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1801 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1802 esac
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1803
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1804 # Here we handle the case where we know the os, and the CPU type, but not the
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1805 # manufacturer. We pick the logical manufacturer.
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1806 case $vendor in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1807 unknown)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1808 case $cpu-$os in
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1809 *-riscix*)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1810 vendor=acorn
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1811 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1812 *-sunos*)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1813 vendor=sun
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1814 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1815 *-cnk* | *-aix*)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1816 vendor=ibm
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1817 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1818 *-beos*)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1819 vendor=be
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1820 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1821 *-hpux*)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1822 vendor=hp
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1823 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1824 *-mpeix*)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1825 vendor=hp
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1826 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1827 *-hiux*)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1828 vendor=hitachi
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1829 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1830 *-unos*)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1831 vendor=crds
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1832 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1833 *-dgux*)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1834 vendor=dg
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1835 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1836 *-luna*)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1837 vendor=omron
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1838 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1839 *-genix*)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1840 vendor=ns
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1841 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1842 *-clix*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1843 vendor=intergraph
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1844 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1845 *-mvs* | *-opened*)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1846 vendor=ibm
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1847 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1848 *-os400*)
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1849 vendor=ibm
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1850 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1851 s390-* | s390x-*)
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1852 vendor=ibm
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1853 ;;
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1854 *-ptx*)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1855 vendor=sequent
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1856 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1857 *-tpf*)
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1858 vendor=ibm
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1859 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1860 *-vxsim* | *-vxworks* | *-windiss*)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1861 vendor=wrs
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1862 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1863 *-aux*)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1864 vendor=apple
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1865 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1866 *-hms*)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1867 vendor=hitachi
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1868 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1869 *-mpw* | *-macos*)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1870 vendor=apple
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1871 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1872 *-*mint | *-mint[0-9]* | *-*MiNT | *-MiNT[0-9]*)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1873 vendor=atari
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1874 ;;
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1875 *-vos*)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1876 vendor=stratus
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1877 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1878 esac
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1879 ;;
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1880 esac
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1881
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1882 echo "$cpu-$vendor-${kernel:+$kernel-}$os"
1105
e6511648c59e Updated to more current config.guess and config.sub files.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 868
diff changeset
1883 exit
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1884
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1885 # Local variables:
2970
83c17a84bc27 Update the configure scripts with the latest autotools.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1105
diff changeset
1886 # eval: (add-hook 'before-save-hook 'time-stamp)
868
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1887 # time-stamp-start: "timestamp='"
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1888 # time-stamp-format: "%:y-%02m-%02d"
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1889 # time-stamp-end: "'"
ca2d780aeb63 We seem to need config.sub now?
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1890 # End: