* config.sub, configure.in, config.guess: Add support
for Bosx, an AIX variant from Bull. Patches from F.Pierresteguy@frcl.bull.fr.
This commit is contained in:
parent
7721e5b345
commit
ba7f177aeb
3 changed files with 20 additions and 5 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
Mon Feb 22 23:28:38 1993 Per Bothner (bothner@rtl.cygnus.com)
|
||||||
|
|
||||||
|
* config.sub, configure.in, config.guess: Add support
|
||||||
|
for Bosx, an AIX variant from Bull.
|
||||||
|
Patches from F.Pierresteguy@frcl.bull.fr.
|
||||||
|
|
||||||
Sun Feb 21 11:15:22 1993 Mike Werner (mtw@poseidon.cygnus.com)
|
Sun Feb 21 11:15:22 1993 Mike Werner (mtw@poseidon.cygnus.com)
|
||||||
|
|
||||||
* devo/dejagnu: Initial creation of devo/dejagnu.
|
* devo/dejagnu: Initial creation of devo/dejagnu.
|
||||||
|
|
18
config.sub
vendored
18
config.sub
vendored
|
@ -124,7 +124,7 @@ case $basic_machine in
|
||||||
tahoe | i[34]86 | i860 | m68k | m68000 | m88k | ns32k | arm | pyramid \
|
tahoe | i[34]86 | i860 | m68k | m68000 | m88k | ns32k | arm | pyramid \
|
||||||
| tron | a29k | 580 | i960 | h8300 | hppa1.0 | hppa1.1 \
|
| tron | a29k | 580 | i960 | h8300 | hppa1.0 | hppa1.1 \
|
||||||
| alpha | we32k | ns16k | clipper \
|
| alpha | we32k | ns16k | clipper \
|
||||||
| sparc | m680[01234]0 | m683?2 | z8k | v70) # CYGNUS LOCAL
|
| sparc | m680[01234]0 | m683?2 | z8k | v70 | h8500)# CYGNUS LOCAL
|
||||||
basic_machine=$basic_machine-unknown
|
basic_machine=$basic_machine-unknown
|
||||||
;;
|
;;
|
||||||
# Recognize the basic CPU types with with company name.
|
# Recognize the basic CPU types with with company name.
|
||||||
|
@ -150,7 +150,7 @@ case $basic_machine in
|
||||||
;;
|
;;
|
||||||
sparc64) # CYGNUS LOCAL
|
sparc64) # CYGNUS LOCAL
|
||||||
basic_machine=sparc64-sun
|
basic_machine=sparc64-sun
|
||||||
os=-v9
|
os=-v9 # 32 bit pointers
|
||||||
;;
|
;;
|
||||||
sparc64-v7 | sparc64v7) # CYGNUS LOCAL
|
sparc64-v7 | sparc64v7) # CYGNUS LOCAL
|
||||||
basic_machine=sparc64-sun
|
basic_machine=sparc64-sun
|
||||||
|
@ -158,6 +158,10 @@ case $basic_machine in
|
||||||
;;
|
;;
|
||||||
# end-sanitize-v9
|
# end-sanitize-v9
|
||||||
|
|
||||||
|
dpx20 | dpx20-*) # CYGNUS LOCAL
|
||||||
|
basic_machine=rs6000-bull
|
||||||
|
os=-bosx
|
||||||
|
;;
|
||||||
vaxv)
|
vaxv)
|
||||||
basic_machine=vax-dec
|
basic_machine=vax-dec
|
||||||
os=-sysv
|
os=-sysv
|
||||||
|
@ -664,11 +668,12 @@ case $os in
|
||||||
| -nindy* | -vxworks* | -ebmon* | -hds* | -m88kbcs* \
|
| -nindy* | -vxworks* | -ebmon* | -hds* | -m88kbcs* \
|
||||||
| -riscos* | -linux* | -uniplus* | -iris* | -rtu* | -xenix* \
|
| -riscos* | -linux* | -uniplus* | -iris* | -rtu* | -xenix* \
|
||||||
| -go32 | -sim | -es1800* | -udi | -hms* | -xray \
|
| -go32 | -sim | -es1800* | -udi | -hms* | -xray \
|
||||||
| -os68k* | -none* | -v88r* | -aout | -coff | -elf | -abug )
|
| -os68k* | -none* | -v88r* | -aout | -coff | -elf | -bosx* \
|
||||||
# The last two lines above are CYGNUS LOCAL
|
| -abug | -ecoff)
|
||||||
|
# The last three lines above are CYGNUS LOCAL
|
||||||
;;
|
;;
|
||||||
# start-sanitize-v9
|
# start-sanitize-v9
|
||||||
-v7 | -v9 | -hal32 | -hal64) ;; # CYGNUS LOCAL
|
-v7 | -v9 | -v9p64 | -hal32 | -hal64) ;; # CYGNUS LOCAL
|
||||||
# end-sanitize-v9
|
# end-sanitize-v9
|
||||||
|
|
||||||
-osfrose*)
|
-osfrose*)
|
||||||
|
@ -816,6 +821,9 @@ case $basic_machine in
|
||||||
-sunos*)
|
-sunos*)
|
||||||
vendor=sun
|
vendor=sun
|
||||||
;;
|
;;
|
||||||
|
-bosx*)
|
||||||
|
vendor=bull
|
||||||
|
;;
|
||||||
-aix*)
|
-aix*)
|
||||||
vendor=ibm
|
vendor=ibm
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -95,6 +95,7 @@ case "${host}" in
|
||||||
i[34]86-*-linux) host_makefile_frag=config/mh-linux ;;
|
i[34]86-*-linux) host_makefile_frag=config/mh-linux ;;
|
||||||
i[34]86-*-solaris2*) host_makefile_frag=config/mh-sysv4 ;;
|
i[34]86-*-solaris2*) host_makefile_frag=config/mh-sysv4 ;;
|
||||||
*-ibm-aix*) host_makefile_frag=config/mh-aix ;;
|
*-ibm-aix*) host_makefile_frag=config/mh-aix ;;
|
||||||
|
*-bull-bosx*) host_makefile_frag=config/mh-aix ;;
|
||||||
*-sun-solaris*) host_makefile_frag=config/mh-solaris ;;
|
*-sun-solaris*) host_makefile_frag=config/mh-solaris ;;
|
||||||
*-sun-*) host_makefile_frag=config/mh-sun ;;
|
*-sun-*) host_makefile_frag=config/mh-sun ;;
|
||||||
*-hp-hpux) host_makefile_frag=config/mh-hpux ;;
|
*-hp-hpux) host_makefile_frag=config/mh-hpux ;;
|
||||||
|
|
Loading…
Reference in a new issue