2003-10-16 Ben Elliston <bje@wasabisystems.com>

Reported by Todd Humphrey <thump@isl.net>:
	* config.guess (*:OS400:*:*): Detect OS/400 on AS/400 machines.
	* config.sub (os400, -os400*): Recognise.
This commit is contained in:
Ben Elliston 2003-10-16 06:36:48 +00:00
parent 6bef5ff182
commit a11a2d39fd
3 changed files with 22 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2003-10-16 Ben Elliston <bje@wasabisystems.com>
Reported by Todd Humphrey <thump@isl.net>:
* config.guess (*:OS400:*:*): Detect OS/400 on AS/400 machines.
* config.sub (os400, -os400*): Recognise.
2003-10-07 Robert Millan <robertmh@gnu.org> 2003-10-07 Robert Millan <robertmh@gnu.org>
Ben Elliston <bje@wasabisystems.com> Ben Elliston <bje@wasabisystems.com>
@ -30,8 +36,8 @@
2003-07-17 Ben Elliston <bje@wasabisystems.com> 2003-07-17 Ben Elliston <bje@wasabisystems.com>
Reported as missing by Doug Evans:
* config.sub: Handle iq2000 and iq2000-*. * config.sub: Handle iq2000 and iq2000-*.
Reported as missing by Doug Evans.
2003-07-15 Alexandre Oliva <aoliva@redhat.com> 2003-07-15 Alexandre Oliva <aoliva@redhat.com>

5
config.guess vendored
View File

@ -3,7 +3,7 @@
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
# 2000, 2001, 2002, 2003 Free Software Foundation, Inc. # 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
timestamp='2003-10-07' timestamp='2003-10-16'
# This file is free software; you can redistribute it and/or modify it # This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by # under the terms of the GNU General Public License as published by
@ -307,6 +307,9 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
*:OS/390:*:*) *:OS/390:*:*)
echo i370-ibm-openedition echo i370-ibm-openedition
exit 0 ;; exit 0 ;;
*:OS400:*:*)
echo powerpc-ibm-os400
exit 0 ;;
arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
echo arm-acorn-riscix${UNAME_RELEASE} echo arm-acorn-riscix${UNAME_RELEASE}
exit 0;; exit 0;;

12
config.sub vendored
View File

@ -3,7 +3,7 @@
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
# 2000, 2001, 2002, 2003 Free Software Foundation, Inc. # 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
timestamp='2003-10-07' timestamp='2003-10-16'
# This file is (in principle) common to ALL GNU software. # This file is (in principle) common to ALL GNU software.
# The presence of a machine in this file suggests that SOME GNU software # The presence of a machine in this file suggests that SOME GNU software
@ -743,6 +743,10 @@ case $basic_machine in
basic_machine=or32-unknown basic_machine=or32-unknown
os=-coff os=-coff
;; ;;
os400)
basic_machine=powerpc-ibm
os=-os400
;;
OSE68000 | ose68000) OSE68000 | ose68000)
basic_machine=m68000-ericsson basic_machine=m68000-ericsson
os=-ose os=-ose
@ -1182,6 +1186,9 @@ case $os in
-opened*) -opened*)
os=-openedition os=-openedition
;; ;;
-os400*)
os=-os400
;;
-wince*) -wince*)
os=-wince os=-wince
;; ;;
@ -1473,6 +1480,9 @@ case $basic_machine in
-mvs* | -opened*) -mvs* | -opened*)
vendor=ibm vendor=ibm
;; ;;
-os400*)
vendor=ibm
;;
-ptx*) -ptx*)
vendor=sequent vendor=sequent
;; ;;