* config.guess: Recognize BSD on hp300.

This commit is contained in:
Jim Kingdon 1993-08-16 01:50:58 +00:00
parent c262769a5f
commit 08a0da685e
2 changed files with 16 additions and 1 deletions

View File

@ -1,3 +1,12 @@
Sun Aug 15 20:48:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* config.guess: Recognize BSD on hp300.
Wed Aug 11 18:35:13 1993 Per Bothner (bothner@kalessin.cygnus.com)
* config.guess: Map (9000/[34]??:HP-UX:*:*) to m68k-hp-hpux.
Bug report from "Hamish (H.I.) Macdonald" <hamish@bnr.ca>.
Wed Aug 11 15:37:51 1993 Jason Merrill (jason@deneb.cygnus.com)
* Makefile.in (all-send-pr): depends on all-prms

8
config.guess vendored
View File

@ -91,9 +91,15 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
9000/31?:HP-UX:*:*)
echo m68000-hp-hpux
exit 0 ;;
9000/3??:HP-UX:*:*)
9000/[34]??:HP-UX:*:*)
echo m68k-hp-hpux
exit 0 ;;
9000/[34]??:4.3bsd:1.*:*)
echo m68k-hp-bsd
exit 0 ;;
hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
echo m68k-hp-bsd44
exit 0 ;;
9000/7??:HP-UX:*:* | 9000/8?7:HP-UX:*:* )
echo hppa1.1-hp-hpux
exit 0 ;;