diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-03-03 02:35:28 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-03-03 02:35:28 +0000 |
commit | b11e31edabe0cb25cb5c8786818c5f807b8b1015 (patch) | |
tree | 01ba4985fedca202889b3ce5a5340254b7231996 /config.guess | |
parent | 1535ff15c77cdc68e1df2c553c02797c776498a7 (diff) | |
download | gdb-b11e31edabe0cb25cb5c8786818c5f807b8b1015.zip gdb-b11e31edabe0cb25cb5c8786818c5f807b8b1015.tar.gz gdb-b11e31edabe0cb25cb5c8786818c5f807b8b1015.tar.bz2 |
* config.guess: Check for ptx.
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/config.guess b/config.guess index 7bed196..6d26cab 100755 --- a/config.guess +++ b/config.guess @@ -159,6 +159,12 @@ EOF 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit 0 ;; + hp7??:OSF1:*:* | hp8?7:OSF1:*:* ) + echo hppa1.1-hp-osf + exit 0 ;; + hp8??:OSF1:*:*) + echo hppa1.0-hp-osf + exit 0 ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1:*) echo c1-convex-bsd exit 0 ;; @@ -199,6 +205,11 @@ EOF echo ${UNAME_MACHINE}-unknown-sysv32 fi exit 0 ;; +# ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. earlier versions +# are messed up and put the nodename in both sysname and nodename. + i[34]86:DYNIX/ptx:4*:*) + echo i386-sequent-sysv4 + exit 0 ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv |