Mercurial > emacs
annotate config.sub @ 4059:66d33e1bf65b
(show-paren-command-hook): Do nothing if not window-system.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 10 Jul 1993 05:16:08 +0000 |
parents | e5d455b14d82 |
children | 1e9a4f812fc1 |
rev | line source |
---|---|
576 | 1 #!/bin/sh |
653
f3531d3d57c9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
652
diff
changeset
|
2 # Configuration validation subroutine script, version 1.1. |
3934
0bd0d7678a09
Recognize `gnu' as a valid operating system. Sheesh.
Roland McGrath <roland@gnu.org>
parents:
3914
diff
changeset
|
3 # Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc. |
645
57295fc40ac3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
631
diff
changeset
|
4 # This file is (in principle) common to ALL GNU software. |
57295fc40ac3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
631
diff
changeset
|
5 # The presence of a machine in this file suggests that SOME GNU software |
57295fc40ac3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
631
diff
changeset
|
6 # can handle that machine. It does not imply ALL GNU software can. |
576 | 7 |
8 #This file is free software; you can redistribute it and/or modify | |
9 #it under the terms of the GNU General Public License as published by | |
10 #the Free Software Foundation; either version 2 of the License, or | |
11 #(at your option) any later version. | |
12 | |
13 #This program is distributed in the hope that it will be useful, | |
14 #but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 #GNU General Public License for more details. | |
17 | |
18 #You should have received a copy of the GNU General Public License | |
19 #along with this program; if not, write to the Free Software | |
20 #Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
21 | |
22 | |
23 # Configuration subroutine to validate and canonicalize a configuration type. | |
24 # Supply the specified configuration type as an argument. | |
25 # If it is invalid, we print an error message on stderr and exit with code 1. | |
26 # Otherwise, we print the canonical config type on stdout and succeed. | |
27 | |
28 # This file is supposed to be the same for all GNU packages | |
29 # and recognize all the CPU types, system types and aliases | |
30 # that are meaningful with *any* GNU software. | |
31 # Each package is responsible for reporting which valid configurations | |
32 # it does not support. The user should be able to distinguish | |
33 # a failure to support a valid configuration from a meaningless | |
34 # configuration. | |
35 | |
36 # The goal of this file is to map all the various variations of a given | |
37 # machine specification into a single specification in the form: | |
38 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM | |
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
39 # It is wrong to echo any other type of specification. |
576 | 40 |
41 # First pass through any local machine types. | |
42 case $1 in | |
43 *local*) | |
44 echo $1 | |
45 exit 0 | |
46 ;; | |
47 *) | |
48 ;; | |
49 esac | |
50 | |
51 # Separate what the user gave into CPU-COMPANY and OS (if any). | |
52 basic_machine=`echo $1 | sed 's/-[^-]*$//'` | |
53 if [ $basic_machine != $1 ] | |
54 then os=`echo $1 | sed 's/.*-/-/'` | |
55 else os=; fi | |
56 | |
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
57 ### Let's recognize common machines as not being operating systems so |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
58 ### that things like config.sub decstation-3100 work. We also |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
59 ### recognize some manufacturers as not being operating systems, so we |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
60 ### can provide default operating systems below. |
576 | 61 case $os in |
1961
eeb000068cc8
Error if company name is more than one word.
Richard M. Stallman <rms@gnu.org>
parents:
1852
diff
changeset
|
62 -sun*os*) |
eeb000068cc8
Error if company name is more than one word.
Richard M. Stallman <rms@gnu.org>
parents:
1852
diff
changeset
|
63 # Prevent following clause from handling this invalid input. |
eeb000068cc8
Error if company name is more than one word.
Richard M. Stallman <rms@gnu.org>
parents:
1852
diff
changeset
|
64 ;; |
576 | 65 -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ |
66 -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ | |
67 -unicom* | -ibm* | -next* | -hp | -isi* | -apollo | -altos* | \ | |
2616 | 68 -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi | \ |
576 | 69 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ |
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
70 -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp ) |
576 | 71 os= |
72 basic_machine=$1 | |
73 ;; | |
3904
6c98b9e2a213
Canonicalize -sco4 and -sco3.2.4 to -sco3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
3896
diff
changeset
|
74 -sco4) |
6c98b9e2a213
Canonicalize -sco4 and -sco3.2.4 to -sco3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
3896
diff
changeset
|
75 os=-sco3.2v4 |
6c98b9e2a213
Canonicalize -sco4 and -sco3.2.4 to -sco3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
3896
diff
changeset
|
76 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'` |
6c98b9e2a213
Canonicalize -sco4 and -sco3.2.4 to -sco3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
3896
diff
changeset
|
77 ;; |
6c98b9e2a213
Canonicalize -sco4 and -sco3.2.4 to -sco3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
3896
diff
changeset
|
78 -sco3.2.[4-9]*) |
6c98b9e2a213
Canonicalize -sco4 and -sco3.2.4 to -sco3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
3896
diff
changeset
|
79 os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` |
6c98b9e2a213
Canonicalize -sco4 and -sco3.2.4 to -sco3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
3896
diff
changeset
|
80 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'` |
6c98b9e2a213
Canonicalize -sco4 and -sco3.2.4 to -sco3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
3896
diff
changeset
|
81 ;; |
1545
9ff238dd8a35
Don't discard SCO version number if it's 3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
1415
diff
changeset
|
82 -sco3.2v[4-9]*) |
9ff238dd8a35
Don't discard SCO version number if it's 3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
1415
diff
changeset
|
83 # Don't forget version if it is 3.2v4 or newer. |
1735
5032e4faca19
($os alternatives for sco and isc): Preserve the specified os version if any.
Richard M. Stallman <rms@gnu.org>
parents:
1732
diff
changeset
|
84 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'` |
1545
9ff238dd8a35
Don't discard SCO version number if it's 3.2v4.
Richard M. Stallman <rms@gnu.org>
parents:
1415
diff
changeset
|
85 ;; |
576 | 86 -sco*) |
646
e283d4164aca
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
645
diff
changeset
|
87 os=-sco3.2v2 |
1735
5032e4faca19
($os alternatives for sco and isc): Preserve the specified os version if any.
Richard M. Stallman <rms@gnu.org>
parents:
1732
diff
changeset
|
88 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'` |
576 | 89 ;; |
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
90 -isc) |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
91 os=-isc2.2 |
1735
5032e4faca19
($os alternatives for sco and isc): Preserve the specified os version if any.
Richard M. Stallman <rms@gnu.org>
parents:
1732
diff
changeset
|
92 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'` |
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
93 ;; |
2344
d21c82eba8ab
Default to clipper-intergraph if system is clix.
Richard M. Stallman <rms@gnu.org>
parents:
2204
diff
changeset
|
94 -clix*) |
d21c82eba8ab
Default to clipper-intergraph if system is clix.
Richard M. Stallman <rms@gnu.org>
parents:
2204
diff
changeset
|
95 basic_machine=clipper-intergraph |
d21c82eba8ab
Default to clipper-intergraph if system is clix.
Richard M. Stallman <rms@gnu.org>
parents:
2204
diff
changeset
|
96 ;; |
576 | 97 -isc*) |
1735
5032e4faca19
($os alternatives for sco and isc): Preserve the specified os version if any.
Richard M. Stallman <rms@gnu.org>
parents:
1732
diff
changeset
|
98 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'` |
576 | 99 ;; |
100 esac | |
101 | |
102 # Decode aliases for certain CPU-COMPANY combinations. | |
103 case $basic_machine in | |
104 # Recognize the basic CPU types with without company name. | |
105 # Some are omitted here because they have special meanings below. | |
589
03fd51103bc3
*** empty log message ***
Michael Meissner <gnu@the-meissners.org>
parents:
576
diff
changeset
|
106 tahoe | i[34]86 | i860 | m68k | m68000 | m88k | ns32k | arm | pyramid \ |
993 | 107 | tron | a29k | 580 | i960 | h8300 | hppa1.0 | hppa1.1 \ |
2614 | 108 | alpha | we32k | ns16k | clipper | sparclite | i370 | sh) |
576 | 109 basic_machine=$basic_machine-unknown |
110 ;; | |
1961
eeb000068cc8
Error if company name is more than one word.
Richard M. Stallman <rms@gnu.org>
parents:
1852
diff
changeset
|
111 # Object if more than one company name word. |
eeb000068cc8
Error if company name is more than one word.
Richard M. Stallman <rms@gnu.org>
parents:
1852
diff
changeset
|
112 *-*-*) |
eeb000068cc8
Error if company name is more than one word.
Richard M. Stallman <rms@gnu.org>
parents:
1852
diff
changeset
|
113 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 |
eeb000068cc8
Error if company name is more than one word.
Richard M. Stallman <rms@gnu.org>
parents:
1852
diff
changeset
|
114 exit 1 |
eeb000068cc8
Error if company name is more than one word.
Richard M. Stallman <rms@gnu.org>
parents:
1852
diff
changeset
|
115 ;; |
576 | 116 # Recognize the basic CPU types with with company name. |
607
e0ce539246b8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
589
diff
changeset
|
117 vax-* | tahoe-* | i[34]86-* | i860-* | m68k-* | m68000-* | m88k-* \ |
576 | 118 | sparc-* | ns32k-* | fx80-* | arm-* | c[123]* \ |
119 | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* \ | |
120 | none-* | 580-* | cray2-* | h8300-* | i960-* | xmp-* | ymp-* \ | |
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
121 | hppa1.0-* | hppa1.1-* | alpha-* | we32k-* | cydra-* | ns16k-* \ |
2614 | 122 | pn-* | np1-* | xps100-* | clipper-* | orion-* | sparclite-* \ |
123 | sh-*) | |
576 | 124 ;; |
125 # Recognize the various machine names and aliases which stand | |
126 # for a CPU type and a company and sometimes even an OS. | |
127 vaxv) | |
128 basic_machine=vax-dec | |
129 os=-sysv | |
130 ;; | |
131 vms) | |
132 basic_machine=vax-dec | |
133 os=-vms | |
134 ;; | |
2495 | 135 i370-ibm* | ibm*) |
136 basic_machine=i370-ibm | |
137 os=-mvs | |
138 ;; | |
1735
5032e4faca19
($os alternatives for sco and isc): Preserve the specified os version if any.
Richard M. Stallman <rms@gnu.org>
parents:
1732
diff
changeset
|
139 # I'm not sure what "Sysv32" means. Should this be sysv3.2? |
5032e4faca19
($os alternatives for sco and isc): Preserve the specified os version if any.
Richard M. Stallman <rms@gnu.org>
parents:
1732
diff
changeset
|
140 i[34]86v32) |
5032e4faca19
($os alternatives for sco and isc): Preserve the specified os version if any.
Richard M. Stallman <rms@gnu.org>
parents:
1732
diff
changeset
|
141 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'` |
738
81cd2a003397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
674
diff
changeset
|
142 os=-sysv32 |
81cd2a003397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
674
diff
changeset
|
143 ;; |
1735
5032e4faca19
($os alternatives for sco and isc): Preserve the specified os version if any.
Richard M. Stallman <rms@gnu.org>
parents:
1732
diff
changeset
|
144 i[34]86v4*) |
5032e4faca19
($os alternatives for sco and isc): Preserve the specified os version if any.
Richard M. Stallman <rms@gnu.org>
parents:
1732
diff
changeset
|
145 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'` |
576 | 146 os=-sysv4 |
147 ;; | |
1735
5032e4faca19
($os alternatives for sco and isc): Preserve the specified os version if any.
Richard M. Stallman <rms@gnu.org>
parents:
1732
diff
changeset
|
148 i[34]86v) |
5032e4faca19
($os alternatives for sco and isc): Preserve the specified os version if any.
Richard M. Stallman <rms@gnu.org>
parents:
1732
diff
changeset
|
149 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'` |
738
81cd2a003397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
674
diff
changeset
|
150 os=-sysv |
81cd2a003397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
674
diff
changeset
|
151 ;; |
1840
b00ada422354
(i[34]86sol2): New abbrev for i[34]86-unknown-solaris2.
Jim Wilson <wilson@gnu.org>
parents:
1735
diff
changeset
|
152 i[34]86sol2) |
b00ada422354
(i[34]86sol2): New abbrev for i[34]86-unknown-solaris2.
Jim Wilson <wilson@gnu.org>
parents:
1735
diff
changeset
|
153 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'` |
b00ada422354
(i[34]86sol2): New abbrev for i[34]86-unknown-solaris2.
Jim Wilson <wilson@gnu.org>
parents:
1735
diff
changeset
|
154 os=-solaris2 |
b00ada422354
(i[34]86sol2): New abbrev for i[34]86-unknown-solaris2.
Jim Wilson <wilson@gnu.org>
parents:
1735
diff
changeset
|
155 ;; |
576 | 156 spur) |
157 basic_machine=spur-unknown | |
158 ;; | |
159 alliant | fx80) | |
160 basic_machine=fx80-alliant | |
161 ;; | |
162 convex-c1) | |
163 basic_machine=c1-convex | |
164 os=-bsd | |
165 ;; | |
166 convex-c2) | |
167 basic_machine=c2-convex | |
168 os=-bsd | |
169 ;; | |
170 convex-c32) | |
171 basic_machine=c32-convex | |
172 os=-bsd | |
173 ;; | |
174 convex-c34) | |
175 basic_machine=c34-convex | |
176 os=-bsd | |
177 ;; | |
178 convex-c38) | |
179 basic_machine=c38-convex | |
180 os=-bsd | |
181 ;; | |
182 m88k-omron*) | |
183 basic_machine=m88k-omron | |
184 ;; | |
185 merlin) | |
186 basic_machine=ns32k-utek | |
187 os=-sysv | |
188 ;; | |
189 crds | unos) | |
190 basic_machine=m68k-crds | |
191 ;; | |
1415
1b82f79c4eb4
Add support for a new 64 bit CPU type. Elxsi.
Mike Stump <mrs@apple.com>
parents:
1270
diff
changeset
|
192 elxsi) |
1b82f79c4eb4
Add support for a new 64 bit CPU type. Elxsi.
Mike Stump <mrs@apple.com>
parents:
1270
diff
changeset
|
193 basic_machine=elxsi-elxsi |
1b82f79c4eb4
Add support for a new 64 bit CPU type. Elxsi.
Mike Stump <mrs@apple.com>
parents:
1270
diff
changeset
|
194 os=-bsd |
1b82f79c4eb4
Add support for a new 64 bit CPU type. Elxsi.
Mike Stump <mrs@apple.com>
parents:
1270
diff
changeset
|
195 ;; |
576 | 196 encore | umax | mmax) |
197 basic_machine=ns32k-encore | |
198 ;; | |
199 genix) | |
200 basic_machine=ns32k-ns | |
201 ;; | |
202 iris | iris4d) | |
203 basic_machine=mips-sgi | |
651
144027c7abb2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
646
diff
changeset
|
204 case $os in |
144027c7abb2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
646
diff
changeset
|
205 -irix*) |
144027c7abb2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
646
diff
changeset
|
206 ;; |
144027c7abb2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
646
diff
changeset
|
207 *) |
144027c7abb2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
646
diff
changeset
|
208 os=-irix4 |
144027c7abb2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
646
diff
changeset
|
209 ;; |
144027c7abb2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
646
diff
changeset
|
210 esac |
576 | 211 ;; |
212 news | news700 | news800 | news900) | |
213 basic_machine=m68k-sony | |
214 os=-newsos | |
215 ;; | |
216 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) | |
217 basic_machine=m68000-att | |
218 ;; | |
629
e47f9ff356ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
613
diff
changeset
|
219 3b*) |
652
88a5b1ed98bb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
651
diff
changeset
|
220 basic_machine=we32k-att |
629
e47f9ff356ea
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
613
diff
changeset
|
221 ;; |
576 | 222 delta | 3300 | motorola-3300 | motorola-delta \ |
223 | 3300-motorola | delta-motorola) | |
224 basic_machine=m68k-motorola | |
225 ;; | |
226 balance) | |
227 basic_machine=ns32k-sequent | |
228 os=-dynix | |
229 ;; | |
230 pc532) | |
231 basic_machine=ns32k-pc532 | |
232 ;; | |
233 symmetry) | |
234 basic_machine=i386-sequent | |
235 os=-dynix | |
236 ;; | |
237 sun2) | |
238 basic_machine=m68000-sun | |
239 ;; | |
240 sun2os3) | |
241 basic_machine=m68000-sun | |
242 os=-sunos3 | |
243 ;; | |
244 sun2os4) | |
245 basic_machine=m68000-sun | |
246 os=-sunos4 | |
247 ;; | |
248 sun3os3) | |
249 basic_machine=m68k-sun | |
250 os=-sunos3 | |
251 ;; | |
252 sun3os4) | |
253 basic_machine=m68k-sun | |
254 os=-sunos4 | |
255 ;; | |
256 sun4os3) | |
257 basic_machine=sparc-sun | |
258 os=-sunos3 | |
259 ;; | |
260 sun4os4) | |
261 basic_machine=sparc-sun | |
262 os=-sunos4 | |
263 ;; | |
264 sun3) | |
265 basic_machine=m68k-sun | |
266 ;; | |
267 sun4) | |
268 basic_machine=sparc-sun | |
269 ;; | |
270 pbd) | |
271 basic_machine=sparc-tti | |
272 ;; | |
273 pbb) | |
274 basic_machine=m68k-tti | |
275 ;; | |
276 sun386 | sun386i | roadrunner) | |
277 basic_machine=i386-sun | |
278 ;; | |
279 ps2) | |
280 basic_machine=i386-ibm | |
281 ;; | |
652
88a5b1ed98bb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
651
diff
changeset
|
282 fx2800) |
88a5b1ed98bb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
651
diff
changeset
|
283 basic_machine=i860-alliant |
88a5b1ed98bb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
651
diff
changeset
|
284 ;; |
576 | 285 next) |
286 basic_machine=m68k-next | |
631
3c7da8664d12
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
629
diff
changeset
|
287 os=-bsd |
576 | 288 ;; |
289 amiga) | |
290 basic_machine=m68k-cbm | |
291 ;; | |
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
292 amigados) |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
293 basic_machine=m68k-cbm |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
294 os=-amigados |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
295 ;; |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
296 amigaunix | amix) |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
297 basic_machine=m68k-cbm |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
298 os=-sysv4 |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
299 ;; |
576 | 300 hp9k3[2-9][0-9]) |
301 basic_machine=m68k-hp | |
302 ;; | |
303 hp9k31[0-9] | hp9k2[0-9][0-9]) | |
304 basic_machine=m68000-hp | |
305 ;; | |
610
5f2f551fc367
*** empty log message ***
Torbjorn Granlund <tege@swox.com>
parents:
607
diff
changeset
|
306 hp9k7[0-9][0-9] | hp7[0-9][0-9] | hp9k8[0-9]7 | hp8[0-9]7) |
5f2f551fc367
*** empty log message ***
Torbjorn Granlund <tege@swox.com>
parents:
607
diff
changeset
|
307 basic_machine=hppa1.1-hp |
576 | 308 ;; |
610
5f2f551fc367
*** empty log message ***
Torbjorn Granlund <tege@swox.com>
parents:
607
diff
changeset
|
309 hp9k8[0-9][0-9] | hp8[0-9][0-9]) |
5f2f551fc367
*** empty log message ***
Torbjorn Granlund <tege@swox.com>
parents:
607
diff
changeset
|
310 basic_machine=hppa1.0-hp |
607
e0ce539246b8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
589
diff
changeset
|
311 ;; |
576 | 312 isi68 | isi) |
313 basic_machine=m68k-isi | |
314 os=-sysv | |
315 ;; | |
316 apollo68) | |
317 basic_machine=m68k-apollo | |
318 os=-sysv | |
319 ;; | |
320 altos | altos3068) | |
321 basic_machine=m68k-altos | |
322 ;; | |
323 miniframe) | |
324 basic_machine=m68000-convergent | |
325 ;; | |
326 tower | tower-32) | |
327 basic_machine=m68k-ncr | |
328 ;; | |
329 news-3600 | risc-news) | |
330 basic_machine=mips-sony | |
331 os=-newsos | |
332 ;; | |
652
88a5b1ed98bb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
651
diff
changeset
|
333 decstation | decstation-3100 | pmax | pmin | dec3100 | decstatn) |
576 | 334 basic_machine=mips-dec |
335 ;; | |
336 magnum | m3230) | |
337 basic_machine=mips-mips | |
338 os=-sysv | |
339 ;; | |
340 gmicro) | |
341 basic_machine=tron-gmicro | |
342 os=-sysv | |
343 ;; | |
344 rtpc | rtpc-*) | |
345 basic_machine=romp-ibm | |
346 ;; | |
347 am29k) | |
348 basic_machine=a29k-none | |
349 os=-bsd | |
350 ;; | |
351 amdahl) | |
352 basic_machine=580-amdahl | |
353 os=-sysv | |
354 ;; | |
355 cray | ymp) | |
356 basic_machine=ymp-cray | |
357 os=-unicos | |
358 ;; | |
359 cray2) | |
360 basic_machine=cray2-cray | |
361 os=-unicos | |
362 ;; | |
363 xmp) | |
364 basic_machine=xmp-cray | |
365 os=-unicos | |
366 ;; | |
367 delta88) | |
368 basic_machine=m88k-motorola | |
1852
93cf37057957
removed m88kbcs, changed delta88 and harris to
John Hassey <hassey@dg-rtp.dg.com>
parents:
1840
diff
changeset
|
369 os=-sysv3 |
576 | 370 ;; |
371 dpx2) | |
372 basic_machine=m68k-bull | |
373 os=-sysv | |
374 ;; | |
375 ebmon29k) | |
376 basic_machine=a29k-amd | |
377 os=-ebmon | |
378 ;; | |
2009
755588575884
(h8300hds): Change hds to hms.
Steve Chamberlain <sac@transmeta.com>
parents:
1961
diff
changeset
|
379 h8300hms) |
576 | 380 basic_machine=h8300-hitachi |
2009
755588575884
(h8300hds): Change hds to hms.
Steve Chamberlain <sac@transmeta.com>
parents:
1961
diff
changeset
|
381 os=-hms |
576 | 382 ;; |
2614 | 383 sh) |
384 basic_machine=sh-hitachi | |
385 os=-hms | |
386 ;; | |
576 | 387 harris) |
388 basic_machine=m88k-harris | |
1852
93cf37057957
removed m88kbcs, changed delta88 and harris to
John Hassey <hassey@dg-rtp.dg.com>
parents:
1840
diff
changeset
|
389 os=-sysv3 |
576 | 390 ;; |
391 hp300bsd) | |
392 basic_machine=m68k-hp | |
393 os=-bsd | |
394 ;; | |
395 hp300hpux) | |
396 basic_machine=m68k-hp | |
397 os=-hpux | |
398 ;; | |
399 hp9k2[0-9][0-9] | hp9k31[0-9]) | |
400 basic_machine=m68000-hp | |
401 os=-hpux | |
402 ;; | |
403 hp9k3[2-9][0-9]) | |
404 basic_machine=m68k-hp | |
405 os=-hpux | |
406 ;; | |
407 ncr3000) | |
607
e0ce539246b8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
589
diff
changeset
|
408 basic_machine=i486-ncr |
576 | 409 os=-sysv4 |
410 ;; | |
411 news1000) | |
412 basic_machine=m68030-sony | |
413 os=-newsos | |
414 ;; | |
415 nindy960) | |
416 basic_machine=i960-intel | |
417 os=-nindy | |
418 ;; | |
419 pn) | |
420 basic_machine=pn-gould | |
421 ;; | |
422 np1) | |
423 basic_machine=np1-gould | |
424 ;; | |
425 ultra3) | |
426 basic_machine=a29k-nyu | |
427 os=-sym1 | |
428 ;; | |
429 vxworks960) | |
430 basic_machine=i960-wrs | |
431 os=-vxworks | |
432 ;; | |
433 vxworks68) | |
434 basic_machine=m68k-wrs | |
435 os=-vxworks | |
436 ;; | |
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
437 xps | xps100) |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
438 basic_machine=xps100-honeywell |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
439 ;; |
576 | 440 none) |
441 basic_machine=none-none | |
442 os=-none | |
443 ;; | |
444 | |
445 # Here we handle the default manufacturer of certain CPU types. It is in | |
446 # some cases the only manufacturer, in others, it is the most popular. | |
447 mips) | |
448 basic_machine=mips-mips | |
449 ;; | |
450 romp) | |
451 basic_machine=romp-ibm | |
452 ;; | |
453 rs6000) | |
454 basic_machine=rs6000-ibm | |
455 ;; | |
456 vax) | |
457 basic_machine=vax-dec | |
458 ;; | |
652
88a5b1ed98bb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
651
diff
changeset
|
459 we32k) |
88a5b1ed98bb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
651
diff
changeset
|
460 basic_machine=we32k-att |
88a5b1ed98bb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
651
diff
changeset
|
461 ;; |
576 | 462 sparc) |
463 basic_machine=sparc-sun | |
464 ;; | |
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
465 cydra) |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
466 basic_machine=cydra-cydrome |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
467 ;; |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
468 orion) |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
469 basic_machine=orion-highlevel |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
470 ;; |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
471 orion105) |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
472 basic_machine=clipper-highlevel |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
473 ;; |
576 | 474 *) |
475 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 | |
476 exit 1 | |
477 ;; | |
478 esac | |
479 | |
480 # Here we canonicalize certain aliases for manufacturers. | |
481 case $basic_machine in | |
482 *-digital*) | |
483 basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` | |
484 ;; | |
485 *-commodore*) | |
486 basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` | |
487 ;; | |
488 *) | |
489 ;; | |
490 esac | |
491 | |
492 # Decode manufacturer-specific aliases for certain operating systems. | |
493 | |
494 if [ "$os" ] | |
495 then | |
496 case $os in | |
1732
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
497 # -solaris* is a basic system type, with this one exception. |
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
498 -solaris1 | -solaris1.*) |
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
499 os=`echo $os | sed -e 's|solaris1|sunos4|'` |
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
500 ;; |
4055
e5d455b14d82
Make `solaris' reflect the most recent major release.
Doug Evans <dje@gnu.org>
parents:
3934
diff
changeset
|
501 -solaris) |
e5d455b14d82
Make `solaris' reflect the most recent major release.
Doug Evans <dje@gnu.org>
parents:
3934
diff
changeset
|
502 os=-solaris2 |
e5d455b14d82
Make `solaris' reflect the most recent major release.
Doug Evans <dje@gnu.org>
parents:
3934
diff
changeset
|
503 ;; |
576 | 504 # First accept the basic system types. |
505 # The portable systems comes first. | |
506 # Each alternative must end in a *, to match a version number. | |
3914
a16c11d3670f
Recognize -sysv* after -sysvr4.
Richard M. Stallman <rms@gnu.org>
parents:
3904
diff
changeset
|
507 # -sysv* is not here because it comes later, after sysvr4. |
3934
0bd0d7678a09
Recognize `gnu' as a valid operating system. Sheesh.
Roland McGrath <roland@gnu.org>
parents:
3914
diff
changeset
|
508 -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ |
1732
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
509 | -vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]* | -hpux* \ |
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
510 | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ |
610
5f2f551fc367
*** empty log message ***
Torbjorn Granlund <tege@swox.com>
parents:
607
diff
changeset
|
511 | -amigados* | -msdos* | -newsos* | -unicos* | -aos* \ |
2675 | 512 | -nindy* | -vxworks* | -ebmon* | -hms* | -mvs* | -clix* \ |
3382 | 513 | -riscos* | -linux* | -uniplus* | -iris* | -rtu* | -xenix* \ |
514 | -386bsd*) | |
576 | 515 ;; |
1732
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
516 -sunos5*) |
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
517 os=`echo $os | sed -e 's|sunos5|solaris2|'` |
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
518 ;; |
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
519 -sunos6*) |
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
520 os=`echo $os | sed -e 's|sunos6|solaris3|'` |
2dd86a54c11b
Translate sunos5 to solaris2, and solaris1 to sunos4.
Richard M. Stallman <rms@gnu.org>
parents:
1726
diff
changeset
|
521 ;; |
576 | 522 -osfrose*) |
674
d5c90f190057
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
654
diff
changeset
|
523 os=-osfrose |
576 | 524 ;; |
525 -osf*) | |
674
d5c90f190057
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
654
diff
changeset
|
526 os=-osf |
576 | 527 ;; |
742 | 528 -utek*) |
529 os=-bsd | |
530 ;; | |
576 | 531 -dynix*) |
532 os=-bsd | |
533 ;; | |
534 -acis*) | |
535 os=-aos | |
536 ;; | |
537 -ctix* | -uts*) | |
538 os=-sysv | |
539 ;; | |
540 -triton*) | |
541 os=-sysv3 | |
542 ;; | |
543 -oss*) | |
544 os=-sysv3 | |
545 ;; | |
546 -svr4) | |
547 os=-sysv4 | |
548 ;; | |
3914
a16c11d3670f
Recognize -sysv* after -sysvr4.
Richard M. Stallman <rms@gnu.org>
parents:
3904
diff
changeset
|
549 -svr3) |
a16c11d3670f
Recognize -sysv* after -sysvr4.
Richard M. Stallman <rms@gnu.org>
parents:
3904
diff
changeset
|
550 os=-sysv3 |
a16c11d3670f
Recognize -sysv* after -sysvr4.
Richard M. Stallman <rms@gnu.org>
parents:
3904
diff
changeset
|
551 ;; |
3896
bea021b3124a
Convert ...-sysvr4 into ...-sysv4.
Richard M. Stallman <rms@gnu.org>
parents:
3382
diff
changeset
|
552 -sysvr4) |
bea021b3124a
Convert ...-sysvr4 into ...-sysv4.
Richard M. Stallman <rms@gnu.org>
parents:
3382
diff
changeset
|
553 os=-sysv4 |
bea021b3124a
Convert ...-sysvr4 into ...-sysv4.
Richard M. Stallman <rms@gnu.org>
parents:
3382
diff
changeset
|
554 ;; |
3914
a16c11d3670f
Recognize -sysv* after -sysvr4.
Richard M. Stallman <rms@gnu.org>
parents:
3904
diff
changeset
|
555 # This must come after -sysvr4. |
a16c11d3670f
Recognize -sysv* after -sysvr4.
Richard M. Stallman <rms@gnu.org>
parents:
3904
diff
changeset
|
556 -sysv*) |
576 | 557 ;; |
1627
1c2f6bc3d8fe
* config.sub: Added Xenix operating system.
Jim Blandy <jimb@redhat.com>
parents:
1545
diff
changeset
|
558 -xenix) |
1c2f6bc3d8fe
* config.sub: Added Xenix operating system.
Jim Blandy <jimb@redhat.com>
parents:
1545
diff
changeset
|
559 os=-xenix |
1c2f6bc3d8fe
* config.sub: Added Xenix operating system.
Jim Blandy <jimb@redhat.com>
parents:
1545
diff
changeset
|
560 ;; |
645
57295fc40ac3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
631
diff
changeset
|
561 -none) |
57295fc40ac3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
631
diff
changeset
|
562 ;; |
576 | 563 *) |
564 # Get rid of the `-' at the beginning of $os. | |
565 os=`echo $1 | sed 's/[^-]*-//'` | |
566 echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 | |
567 exit 1 | |
568 ;; | |
569 esac | |
570 else | |
571 | |
572 # Here we handle the default operating systems that come with various machines. | |
573 # The value should be what the vendor currently ships out the door with their | |
574 # machine or put another way, the most popular os provided with the machine. | |
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
575 |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
576 # Note that if you're going to try to match "-MANUFACTURER" here (say, |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
577 # "-sun"), then you have to tell the case statement up towards the top |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
578 # that MANUFACTURER isn't an operating system. Otherwise, code above |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
579 # will signal an error saying that MANUFACTURER isn't an operating |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
580 # system, and we'll never get to this point. |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
581 |
576 | 582 case $basic_machine in |
583 *-dec | vax-*) | |
654
6d56ce1261a7
*** empty log message ***
Michael Meissner <gnu@the-meissners.org>
parents:
653
diff
changeset
|
584 os=-ultrix4.2 |
576 | 585 ;; |
586 i386-sun) | |
654
6d56ce1261a7
*** empty log message ***
Michael Meissner <gnu@the-meissners.org>
parents:
653
diff
changeset
|
587 os=-sunos4.0.2 |
576 | 588 ;; |
589 m68000-sun) | |
590 os=-sunos3 | |
591 # This also exists in the configure program, but was not the | |
592 # default. | |
593 # os=-sunos4 | |
594 ;; | |
595 *-tti) # must be before sparc entry or we get the wrong os. | |
596 os=-sysv3 | |
597 ;; | |
598 sparc-* | *-sun) | |
654
6d56ce1261a7
*** empty log message ***
Michael Meissner <gnu@the-meissners.org>
parents:
653
diff
changeset
|
599 os=-sunos4.1.1 |
576 | 600 ;; |
601 *-ibm) | |
602 os=-aix | |
603 ;; | |
604 *-hp) | |
605 os=-hpux | |
606 ;; | |
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
607 i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) |
576 | 608 os=-sysv |
609 ;; | |
610 *-cbm) | |
611 os=-amigados | |
612 ;; | |
613 *-dg) | |
614 os=-dgux | |
615 ;; | |
616 *-dolphin) | |
617 os=-sysv3 | |
618 ;; | |
619 m88k-omron*) | |
620 os=-luna | |
621 ;; | |
1726
e44b2de1b698
Default to bsd for *-sequent.
Richard M. Stallman <rms@gnu.org>
parents:
1631
diff
changeset
|
622 *-sequent) |
e44b2de1b698
Default to bsd for *-sequent.
Richard M. Stallman <rms@gnu.org>
parents:
1631
diff
changeset
|
623 os=-bsd |
e44b2de1b698
Default to bsd for *-sequent.
Richard M. Stallman <rms@gnu.org>
parents:
1631
diff
changeset
|
624 ;; |
576 | 625 *-crds) |
626 os=-unos | |
627 ;; | |
628 *-ns) | |
629 os=-genix | |
630 ;; | |
2495 | 631 i370-*) |
632 os=-mvs | |
633 ;; | |
2497
55f73883303f
> Default to bsd if vendor is next.
Tom Wood <wood@next.com>
parents:
2495
diff
changeset
|
634 *-next) |
55f73883303f
> Default to bsd if vendor is next.
Tom Wood <wood@next.com>
parents:
2495
diff
changeset
|
635 os=-bsd |
55f73883303f
> Default to bsd if vendor is next.
Tom Wood <wood@next.com>
parents:
2495
diff
changeset
|
636 ;; |
738
81cd2a003397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
674
diff
changeset
|
637 i[34]86-*) |
646
e283d4164aca
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
645
diff
changeset
|
638 os=-sco3.2v2 |
576 | 639 ;; |
1631
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
640 *-gould) |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
641 os=-sysv |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
642 ;; |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
643 *-highlevel) |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
644 os=-bsd |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
645 ;; |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
646 *-encore) |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
647 os=-bsd |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
648 ;; |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
649 *-sgi) |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
650 os=-irix |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
651 ;; |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
652 *-masscomp) |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
653 os=-rtu |
9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1627
diff
changeset
|
654 ;; |
576 | 655 *) |
656 os=-none | |
657 ;; | |
658 esac | |
659 fi | |
660 | |
661 # Here we handle the case where we know the os, and the CPU type, but not the | |
662 # manufacturer. We pick the logical manufacturer. | |
663 vendor=unknown | |
664 case $basic_machine in | |
665 *-unknown) | |
666 case $os in | |
667 -sunos*) | |
668 vendor=sun | |
669 ;; | |
670 -aix*) | |
671 vendor=ibm | |
672 ;; | |
673 -hpux*) | |
674 vendor=hp | |
675 ;; | |
676 -unos*) | |
677 vendor=crds | |
678 ;; | |
679 -dgux*) | |
680 vendor=dg | |
681 ;; | |
682 -luna*) | |
683 vendor=omron | |
684 ;; | |
685 -genix*) | |
686 vendor=ns | |
687 ;; | |
2495 | 688 -mvs*) |
689 vendor=ibm | |
690 ;; | |
576 | 691 esac |
692 basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` | |
693 ;; | |
694 esac | |
695 | |
696 echo $basic_machine$os |