Mercurial > emacs
annotate config.guess @ 9580:bcc9342cf633
(x_set_unsplittable): New function.
(x_frame_parms): Add that function to the table.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 18 Oct 1994 02:32:43 +0000 |
parents | ff5a8ffc542c |
children | fa57d5ed7df8 |
rev | line source |
---|---|
2907 | 1 #!/bin/sh |
2 # This script attempts to guess a canonical system name. | |
8373 | 3 # Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc. |
2907 | 4 # |
5 # This file is free software; you can redistribute it and/or modify it | |
6 # under the terms of the GNU General Public License as published by | |
7 # the Free Software Foundation; either version 2 of the License, or | |
8 # (at your option) any later version. | |
9 # | |
10 # This program is distributed in the hope that it will be useful, but | |
11 # WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 # General Public License for more details. | |
14 # | |
15 # You should have received a copy of the GNU General Public License | |
16 # along with this program; if not, write to the Free Software | |
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
18 | |
8657
467447f7f6f5
Various fixes (freebsd, ncr, nextstep): See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
8640
diff
changeset
|
19 # Written by Per Bothner <bothner@cygnus.com>. |
467447f7f6f5
Various fixes (freebsd, ncr, nextstep): See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
8640
diff
changeset
|
20 # The master version of this file is at the FSF in /home/gd/gnu/lib. |
2907 | 21 # |
3622 | 22 # This script attempts to guess a canonical system name similar to |
8373 | 23 # config.sub. If it succeeds, it prints the system name on stdout, and |
24 # exits with 0. Otherwise, it exits with 1. | |
2907 | 25 # |
26 # The plan is that this can be called by configure scripts if you | |
27 # don't specify an explicit system type (host/target name). | |
28 # | |
29 # Only a few systems have been added to this list; please add others | |
30 # (but try to keep the structure clean). | |
31 # | |
32 | |
8628
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
33 # This is needed to find uname on a Pyramid OSx when run in the BSD universe. |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
34 # (ghazi@noc.rutgers.edu 8/24/94.) |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
35 if (test -f /.attbin/uname) >/dev/null 2>&1 ; then |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
36 PATH=$PATH:/.attbin ; export PATH |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
37 fi |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
38 |
2907 | 39 UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown |
40 UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown | |
41 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown | |
42 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown | |
43 | |
8373 | 44 trap 'rm -f dummy.c dummy.o dummy; exit 1' 1 2 15 |
45 | |
2907 | 46 # Note: order is significant - the case branches are not exclusive. |
47 | |
48 case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in | |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
49 alpha:OSF1:V*:*) |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
50 # After 1.2, OSF1 uses "V1.3" for uname -r. |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
51 echo alpha-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^V//'` |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
52 exit 0 ;; |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
53 alpha:OSF1:*:*) |
8373 | 54 # 1.2 uses "1.2" for uname -r. |
2907 | 55 echo alpha-dec-osf${UNAME_RELEASE} |
56 exit 0 ;; | |
8373 | 57 arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) |
58 echo arm-acorn-riscix${UNAME_RELEASE} | |
59 exit 0;; | |
8628
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
60 Pyramid*:OSx*:*:*) |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
61 if test "`(/bin/universe) 2>/dev/null`" = att ; then |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
62 echo pyramid-pyramid-sysv3 |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
63 else |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
64 echo pyramid-pyramid-bsd |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
65 fi |
f550802447b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8607
diff
changeset
|
66 exit 0 ;; |
3622 | 67 sun4*:SunOS:5.*:*) |
68 echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` | |
69 exit 0 ;; | |
70 sun4*:SunOS:6*:*) | |
71 # According to config.sub, this is the proper way to canonicalize | |
72 # SunOS6. Hard to guess exactly what SunOS6 will be like, but | |
73 # it's likely to be more like Solaris than SunOS4. | |
74 echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` | |
2907 | 75 exit 0 ;; |
76 sun4*:SunOS:*:*) | |
8930
166ebab32ffa
Patches for HPUX, and SunOS4 (Japanese).
Per Bothner <bothner@cygnus.com>
parents:
8657
diff
changeset
|
77 # Japanese Language versions have a version number like `4.1.3-JL'. |
166ebab32ffa
Patches for HPUX, and SunOS4 (Japanese).
Per Bothner <bothner@cygnus.com>
parents:
8657
diff
changeset
|
78 echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` |
2907 | 79 exit 0 ;; |
80 sun3*:SunOS:*:*) | |
81 echo m68k-sun-sunos${UNAME_RELEASE} | |
82 exit 0 ;; | |
83 RISC*:ULTRIX:*:*) | |
84 echo mips-dec-ultrix${UNAME_RELEASE} | |
85 exit 0 ;; | |
86 VAX*:ULTRIX*:*:*) | |
87 echo vax-dec-ultrix${UNAME_RELEASE} | |
88 exit 0 ;; | |
8373 | 89 mips:*:5*:RISCos) |
90 echo mips-mips-riscos${UNAME_RELEASE} | |
91 exit 0 ;; | |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
92 m88k:CX/UX:7*:*) |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
93 echo m88k-harris-cxux7 |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
94 exit 0 ;; |
2907 | 95 m88k:*:4*:R4*) |
96 echo m88k-motorola-sysv4 | |
97 exit 0 ;; | |
98 m88k:*:3*:R3*) | |
99 echo m88k-motorola-sysv3 | |
100 exit 0 ;; | |
8373 | 101 AViiON:dgux:*:*) |
8520 | 102 if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx \ |
103 -o ${TARGET_BINARY_INTERFACE}x = x ] ; then | |
104 echo m88k-dg-dgux${UNAME_RELEASE} | |
105 else | |
106 echo m88k-dg-dguxbcs${UNAME_RELEASE} | |
107 fi | |
8373 | 108 exit 0 ;; |
8557 | 109 M88*:DolphinOS:*:*) # DolphinOS (SVR3) |
110 echo m88k-dolphin-sysv3 | |
111 exit 0 ;; | |
8373 | 112 M88*:*:R3*:*) |
113 # Delta 88k system running SVR3 | |
114 echo m88k-motorola-sysv3 | |
115 exit 0 ;; | |
116 XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) | |
117 echo m88k-tektronix-sysv3 | |
118 exit 0 ;; | |
119 Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) | |
120 echo m68k-tektronix-bsd | |
121 exit 0 ;; | |
2907 | 122 *:IRIX:*:*) |
123 echo mips-sgi-irix${UNAME_RELEASE} | |
124 exit 0 ;; | |
125 i[34]86:AIX:*:*) | |
126 echo i386-ibm-aix | |
127 exit 0 ;; | |
128 *:AIX:2:3) | |
8373 | 129 if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then |
8639
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
130 sed 's/^ //' << EOF >dummy.c |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
131 #include <sys/systemcfg.h> |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
132 |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
133 main() |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
134 { |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
135 if (!__power_pc()) |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
136 exit(1); |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
137 puts("powerpc-ibm-aix3.2.5"); |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
138 exit(0); |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
139 } |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
140 EOF |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
141 ${CC-cc} dummy.c -o dummy && ./dummy && rm dummy.c dummy && exit 0 |
24927b6a0555
Recognize powerpc-ibm-aix3.2.5.
Richard Kenner <kenner@gnu.org>
parents:
8638
diff
changeset
|
142 rm -f dummy.c dummy |
8373 | 143 echo rs6000-ibm-aix3.2.5 |
144 elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then | |
145 echo rs6000-ibm-aix3.2.4 | |
146 else | |
147 echo rs6000-ibm-aix3.2 | |
148 fi | |
2907 | 149 exit 0 ;; |
9575
ff5a8ffc542c
Add support for AIX 4.1 and architecture.
Richard Kenner <kenner@gnu.org>
parents:
9371
diff
changeset
|
150 *:AIX:1:4) |
ff5a8ffc542c
Add support for AIX 4.1 and architecture.
Richard Kenner <kenner@gnu.org>
parents:
9371
diff
changeset
|
151 if /usr/sbin/lsattr -EHl proc0 | grep POWER >/dev/null 2>&1; then |
ff5a8ffc542c
Add support for AIX 4.1 and architecture.
Richard Kenner <kenner@gnu.org>
parents:
9371
diff
changeset
|
152 echo rs6000-ibm-aix4.1 |
ff5a8ffc542c
Add support for AIX 4.1 and architecture.
Richard Kenner <kenner@gnu.org>
parents:
9371
diff
changeset
|
153 else |
ff5a8ffc542c
Add support for AIX 4.1 and architecture.
Richard Kenner <kenner@gnu.org>
parents:
9371
diff
changeset
|
154 echo powerpc-ibm-aix4.1 |
ff5a8ffc542c
Add support for AIX 4.1 and architecture.
Richard Kenner <kenner@gnu.org>
parents:
9371
diff
changeset
|
155 fi |
ff5a8ffc542c
Add support for AIX 4.1 and architecture.
Richard Kenner <kenner@gnu.org>
parents:
9371
diff
changeset
|
156 exit 0 ;; |
2907 | 157 *:AIX:*:*) |
158 echo rs6000-ibm-aix | |
159 exit 0 ;; | |
160 *:BOSX:*:*) | |
161 echo rs6000-bull-bosx | |
162 exit 0 ;; | |
8373 | 163 DPX/2?00:B.O.S.:*:*) |
164 echo m68k-bull-sysv3 | |
165 exit 0 ;; | |
166 9000/[34]??:4.3bsd:1.*:*) | |
167 echo m68k-hp-bsd | |
168 exit 0 ;; | |
169 hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) | |
170 echo m68k-hp-bsd4.4 | |
2907 | 171 exit 0 ;; |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
172 9000/[3478]??:HP-UX:*:*) |
8373 | 173 case "${UNAME_MACHINE}" in |
174 9000/31? ) HP_ARCH=m68000 ;; | |
175 9000/[34]?? ) HP_ARCH=m68k ;; | |
176 9000/7?? | 9000/8?7 ) HP_ARCH=hppa1.1 ;; | |
177 9000/8?? ) HP_ARCH=hppa1.0 ;; | |
178 esac | |
8930
166ebab32ffa
Patches for HPUX, and SunOS4 (Japanese).
Per Bothner <bothner@cygnus.com>
parents:
8657
diff
changeset
|
179 HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` |
8373 | 180 echo ${HP_ARCH}-hp-hpux${HPUX_REV} |
2907 | 181 exit 0 ;; |
8373 | 182 3050*:HI-UX:*:*) |
183 sed 's/^ //' << EOF >dummy.c | |
184 #include <unistd.h> | |
185 int | |
186 main () | |
187 { | |
188 long cpu = sysconf (_SC_CPU_VERSION); | |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
189 /* The order matters, because CPU_IS_HP_MC68K erroneously returns |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
190 true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
191 results, however. */ |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
192 if (CPU_IS_PA_RISC (cpu)) |
8373 | 193 { |
194 switch (cpu) | |
195 { | |
196 case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; | |
197 case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; | |
198 case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; | |
199 default: puts ("hppa-hitachi-hiuxwe2"); break; | |
200 } | |
201 } | |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
202 else if (CPU_IS_HP_MC68K (cpu)) |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
203 puts ("m68k-hitachi-hiuxwe2"); |
8373 | 204 else puts ("unknown-hitachi-hiuxwe2"); |
205 exit (0); | |
206 } | |
207 EOF | |
208 ${CC-cc} dummy.c -o dummy && ./dummy && rm dummy.c dummy && exit 0 | |
209 rm -f dummy.c dummy | |
210 echo unknown-hitachi-hiuxwe2 | |
2907 | 211 exit 0 ;; |
8373 | 212 9000/7??:4.3bsd:*:* | 9000/8?7:4.3bsd:*:* ) |
3622 | 213 echo hppa1.1-hp-bsd |
214 exit 0 ;; | |
215 9000/8??:4.3bsd:*:*) | |
216 echo hppa1.0-hp-bsd | |
217 exit 0 ;; | |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
218 hp7??:OSF1:*:* | hp8?7:OSF1:*:* ) |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
219 echo hppa1.1-hp-osf |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
220 exit 0 ;; |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
221 hp8??:OSF1:*:*) |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
222 echo hppa1.0-hp-osf |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
223 exit 0 ;; |
8988
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
224 C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) |
2907 | 225 echo c1-convex-bsd |
226 exit 0 ;; | |
8988
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
227 C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
228 if getsysinfo -f scalar_acc |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
229 then echo c32-convex-bsd |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
230 else echo c2-convex-bsd |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
231 fi |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
232 exit 0 ;; |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
233 C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
234 echo c34-convex-bsd |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
235 exit 0 ;; |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
236 C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
237 echo c38-convex-bsd |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
238 exit 0 ;; |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
239 C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) |
851171bb62d6
add convex c3* c4*
Chris Siebenmann <cks@hawkwind.utcs.utoronto.ca>
parents:
8930
diff
changeset
|
240 echo c4-convex-bsd |
2907 | 241 exit 0 ;; |
242 CRAY*X-MP:UNICOS:*:*) | |
243 echo xmp-cray-unicos | |
244 exit 0 ;; | |
245 CRAY*Y-MP:UNICOS:*:*) | |
246 echo ymp-cray-unicos | |
247 exit 0 ;; | |
248 CRAY-2:UNICOS:*:*) | |
249 echo cray2-cray-unicos | |
250 exit 0 ;; | |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
251 hp3[0-9][05]:NetBSD:*:*) |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
252 echo m68k-hp-netbsd${UNAME_RELEASE} |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
253 exit 0 ;; |
8373 | 254 i[34]86:BSD/386:*:*) |
255 echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} | |
256 exit 0 ;; | |
8640
3351fa6afe8f
(netbsd, freebsd, linux): Accept any machine, not just i[34]86.
Per Bothner <bothner@cygnus.com>
parents:
8639
diff
changeset
|
257 *:FreeBSD:*:*) |
8657
467447f7f6f5
Various fixes (freebsd, ncr, nextstep): See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
8640
diff
changeset
|
258 echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/(.*//'` |
8373 | 259 exit 0 ;; |
8640
3351fa6afe8f
(netbsd, freebsd, linux): Accept any machine, not just i[34]86.
Per Bothner <bothner@cygnus.com>
parents:
8639
diff
changeset
|
260 *:NetBSD:*:*) |
3351fa6afe8f
(netbsd, freebsd, linux): Accept any machine, not just i[34]86.
Per Bothner <bothner@cygnus.com>
parents:
8639
diff
changeset
|
261 echo ${UNAME_MACHINE}-unknown-netbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` |
3351fa6afe8f
(netbsd, freebsd, linux): Accept any machine, not just i[34]86.
Per Bothner <bothner@cygnus.com>
parents:
8639
diff
changeset
|
262 exit 0 ;; |
9246 | 263 *:GNU:*:*) |
264 echo `echo ${UNAME_MACHINE}|sed -e 's,/.*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` | |
265 exit 0 ;; | |
8640
3351fa6afe8f
(netbsd, freebsd, linux): Accept any machine, not just i[34]86.
Per Bothner <bothner@cygnus.com>
parents:
8639
diff
changeset
|
266 *:Linux:*:*) |
2907 | 267 echo ${UNAME_MACHINE}-unknown-linux |
268 exit 0 ;; | |
9185
a5b9b922a853
(i[34]86:UNIX_SV:4.*:*): Remove "UNIX_SV" for Unixware; move DYNIX
Richard Kenner <kenner@gnu.org>
parents:
8988
diff
changeset
|
269 # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. earlier versions |
a5b9b922a853
(i[34]86:UNIX_SV:4.*:*): Remove "UNIX_SV" for Unixware; move DYNIX
Richard Kenner <kenner@gnu.org>
parents:
8988
diff
changeset
|
270 # are messed up and put the nodename in both sysname and nodename. |
a5b9b922a853
(i[34]86:UNIX_SV:4.*:*): Remove "UNIX_SV" for Unixware; move DYNIX
Richard Kenner <kenner@gnu.org>
parents:
8988
diff
changeset
|
271 i[34]86:DYNIX/ptx:4*:*) |
a5b9b922a853
(i[34]86:UNIX_SV:4.*:*): Remove "UNIX_SV" for Unixware; move DYNIX
Richard Kenner <kenner@gnu.org>
parents:
8988
diff
changeset
|
272 echo i386-sequent-sysv4 |
a5b9b922a853
(i[34]86:UNIX_SV:4.*:*): Remove "UNIX_SV" for Unixware; move DYNIX
Richard Kenner <kenner@gnu.org>
parents:
8988
diff
changeset
|
273 exit 0 ;; |
a5b9b922a853
(i[34]86:UNIX_SV:4.*:*): Remove "UNIX_SV" for Unixware; move DYNIX
Richard Kenner <kenner@gnu.org>
parents:
8988
diff
changeset
|
274 i[34]86:*:4.*:* | i[34]86:SYSTEM_V:4.*:*) |
3622 | 275 if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then |
276 echo ${UNAME_MACHINE}-univel-sysv${UNAME_RELEASE} | |
277 else | |
278 echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE} | |
279 fi | |
2907 | 280 exit 0 ;; |
281 i[34]86:*:3.2:*) | |
282 if /bin/uname -X 2>/dev/null >/dev/null ; then | |
283 UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')` | |
284 (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486 | |
285 echo ${UNAME_MACHINE}-unknown-sco$UNAME_REL | |
8373 | 286 elif test -f /usr/options/cb.name; then |
287 UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name` | |
288 echo ${UNAME_MACHINE}-unknown-isc$UNAME_REL | |
2907 | 289 else |
8373 | 290 echo ${UNAME_MACHINE}-unknown-sysv32 |
291 fi | |
292 exit 0 ;; | |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
293 Intel:Mach:3*:*) |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
294 echo i386-unknown-mach3 |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
295 exit 0 ;; |
8373 | 296 i860:*:4.*:*) # i860-SVR4 |
297 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then | |
298 echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 | |
299 else # Add other i860-SVR4 vendors below as they are discovered. | |
300 echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 | |
2907 | 301 fi |
302 exit 0 ;; | |
303 mini*:CTIX:SYS*5:*) | |
304 # "miniframe" | |
305 echo m68010-convergent-sysv | |
306 exit 0 ;; | |
8373 | 307 M680[234]0:*:R3V[567]*:*) |
3622 | 308 test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; |
8657
467447f7f6f5
Various fixes (freebsd, ncr, nextstep): See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
8640
diff
changeset
|
309 3[34]??:*:4.0:*) |
8373 | 310 uname -p 2>/dev/null | grep 86 >/dev/null \ |
311 && echo i486-ncr-sysv4 && exit 0 ;; | |
8657
467447f7f6f5
Various fixes (freebsd, ncr, nextstep): See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
8640
diff
changeset
|
312 33[56]0,3???:*:4.0:*) |
467447f7f6f5
Various fixes (freebsd, ncr, nextstep): See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
8640
diff
changeset
|
313 uname -p 2>/dev/null | grep 86 >/dev/null \ |
467447f7f6f5
Various fixes (freebsd, ncr, nextstep): See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
8640
diff
changeset
|
314 && echo i486-ncr-sysv4.3 && exit 0 ;; |
8373 | 315 m680[234]0:LynxOS:2.2*:*) |
316 echo m68k-lynx-lynxos${UNAME_RELEASE} | |
317 exit 0 ;; | |
318 mc68030:UNIX_System_V:4.*:*) | |
8640
3351fa6afe8f
(netbsd, freebsd, linux): Accept any machine, not just i[34]86.
Per Bothner <bothner@cygnus.com>
parents:
8639
diff
changeset
|
319 echo m68k-atari-sysv4 |
3351fa6afe8f
(netbsd, freebsd, linux): Accept any machine, not just i[34]86.
Per Bothner <bothner@cygnus.com>
parents:
8639
diff
changeset
|
320 exit 0 ;; |
8373 | 321 i[34]86:LynxOS:2.2*:*) |
322 echo i386-lynx-lynxos${UNAME_RELEASE} | |
323 exit 0 ;; | |
324 TSUNAMI:LynxOS:2.2*:*) | |
325 echo sparc-lynx-lynxos${UNAME_RELEASE} | |
326 exit 0 ;; | |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
327 rs6000:LynxOS:2.2*:*) |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
328 echo rs6000-lynx-lynxos${UNAME_RELEASE} |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
329 exit 0 ;; |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
330 RM*:SINIX-*:*:*) |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
331 echo mips-sni-sysv4 |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
332 exit 0 ;; |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
333 *:SINIX-*:*:*) |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
334 if uname -p 2>/dev/null >/dev/null ; then |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
335 UNAME_MACHINE=`(uname -p) 2>/dev/null` |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
336 echo ${UNAME_MACHINE}-sni-sysv4 |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
337 else |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
338 echo ns32k-sni-sysv |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
339 fi |
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
340 exit 0 ;; |
2907 | 341 esac |
342 | |
8373 | 343 #echo '(No uname command or uname output not recognized.)' 1>&2 |
2907 | 344 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 |
345 | |
346 cat >dummy.c <<EOF | |
8630 | 347 main () |
2907 | 348 { |
349 #if defined (sony) | |
350 #if defined (MIPSEB) | |
8373 | 351 /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, |
352 I don't know.... */ | |
353 printf ("mips-sony-bsd\n"); exit (0); | |
2907 | 354 #else |
8630 | 355 printf ("m68k-sony-newsos\n"); exit (0); |
2907 | 356 #endif |
357 #endif | |
358 | |
8373 | 359 #if defined (__arm) && defined (__acorn) && defined (__unix) |
8630 | 360 printf ("arm-acorn-riscix"); exit (0); |
8373 | 361 #endif |
362 | |
8630 | 363 #if defined (hp300) && !defined (hpux) |
364 printf ("m68k-hp-bsd\n"); exit (0); | |
2907 | 365 #endif |
366 | |
8630 | 367 #if defined (NeXT) |
368 #if !defined (__ARCHITECTURE__) | |
8373 | 369 #define __ARCHITECTURE__ "m68k" |
370 #endif | |
371 int version; | |
372 version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; | |
8657
467447f7f6f5
Various fixes (freebsd, ncr, nextstep): See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
8640
diff
changeset
|
373 printf ("%s-next-nextstep%s\n", __ARCHITECTURE__, version==2 ? "2" : "3"); |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
374 exit (0); |
8373 | 375 #endif |
376 | |
2907 | 377 #if defined (MULTIMAX) || defined (n16) |
378 #if defined (UMAXV) | |
8630 | 379 printf ("ns32k-encore-sysv\n"); exit (0); |
2907 | 380 #else |
381 #if defined (CMU) | |
8630 | 382 printf ("ns32k-encore-mach\n"); exit (0); |
2907 | 383 #else |
8630 | 384 printf ("ns32k-encore-bsd\n"); exit (0); |
2907 | 385 #endif |
386 #endif | |
387 #endif | |
388 | |
8638
683b25ea8081
Merges from Cygnus version.
Per Bothner <bothner@cygnus.com>
parents:
8630
diff
changeset
|
389 #if defined (__386BSD__) |
8630 | 390 printf ("i386-unknown-bsd\n"); exit (0); |
2907 | 391 #endif |
392 | |
8630 | 393 #if defined (sequent) |
394 #if defined (i386) | |
395 printf ("i386-sequent-dynix\n"); exit (0); | |
3622 | 396 #endif |
397 #if defined (ns32000) | |
8630 | 398 printf ("ns32k-sequent-dynix\n"); exit (0); |
3622 | 399 #endif |
400 #endif | |
401 | |
8630 | 402 #if defined (_SEQUENT_) |
403 printf ("i386-sequent-ptx\n"); exit (0); | |
3622 | 404 #endif |
405 | |
8630 | 406 #if defined (vax) |
407 #if !defined (ultrix) | |
408 printf ("vax-dec-bsd\n"); exit (0); | |
8373 | 409 #else |
8630 | 410 printf ("vax-dec-ultrix\n"); exit (0); |
411 #endif | |
8373 | 412 #endif |
8630 | 413 |
414 #if defined (alliant) && defined (i860) | |
415 printf ("i860-alliant-bsd\n"); exit (0); | |
8373 | 416 #endif |
417 | |
2907 | 418 exit (1); |
419 } | |
420 EOF | |
421 | |
8373 | 422 ${CC-cc} dummy.c -o dummy 2>/dev/null && ./dummy && rm dummy.c dummy && exit 0 |
2907 | 423 rm -f dummy.c dummy |
424 | |
8373 | 425 # Apollos put the system type in the environment. |
426 | |
427 test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; } | |
428 | |
9371
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
429 # Convex versions that predate uname can use getsysinfo(1) |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
430 |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
431 if [ -x /usr/convex/getsysinfo ] |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
432 then |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
433 case `getsysinfo -f cpu_type` in |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
434 c1*) |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
435 echo c1-convex-bsd |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
436 exit 0 ;; |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
437 c2*) |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
438 if getsysinfo -f scalar_acc |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
439 then echo c32-convex-bsd |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
440 else echo c2-convex-bsd |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
441 fi |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
442 exit 0 ;; |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
443 c34*) |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
444 echo c34-convex-bsd |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
445 exit 0 ;; |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
446 c38*) |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
447 echo c38-convex-bsd |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
448 exit 0 ;; |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
449 c4*) |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
450 echo c4-convex-bsd |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
451 exit 0 ;; |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
452 esac |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
453 fi |
7cf000a42d38
Patch to handle old Convex systems (without uname).
Per Bothner <bothner@cygnus.com>
parents:
9246
diff
changeset
|
454 |
8373 | 455 #echo '(Unable to guess system type)' 1>&2 |
2907 | 456 |
457 exit 1 |