diff options
author | Jim Wilson <wilson@cygnus.com> | 1998-03-09 15:14:51 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1998-03-09 07:14:51 -0800 |
commit | 35011dd56ca78352b60838558ae18b5c02143142 (patch) | |
tree | 07cd846283f38e467e1cae17325b5ec89a5708ca | |
parent | bdd3e6abedb77356422ad57820d0c81ee117f800 (diff) | |
download | gcc-35011dd56ca78352b60838558ae18b5c02143142.zip gcc-35011dd56ca78352b60838558ae18b5c02143142.tar.gz gcc-35011dd56ca78352b60838558ae18b5c02143142.tar.bz2 |
Patch from Bruno Haible for alpha-dec-osf build failure.
* configure.in (alpha-dec-osf): Add default case for osf* to switch.
From-SVN: r18451
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rwxr-xr-x | gcc/configure | 3 | ||||
-rw-r--r-- | gcc/configure.in | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 53b0639..d7cd513 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ Mon Mar 9 12:02:23 1998 Jim Wilson <wilson@cygnus.com> + * configure.in (alpha-dec-osf): Add default case for osf* to switch. + Patch from Bruno Haible. + * function.c (put_reg_into_stack): Copy MEM_IN_STRUCT_P from new. (assign_parms): Set aggregate if hide_last_arg and last_named. diff --git a/gcc/configure b/gcc/configure index 5f5c757..81eb4d4 100755 --- a/gcc/configure +++ b/gcc/configure @@ -2244,6 +2244,9 @@ for machine in $build $host $target; do # a broken tar, so we use cpio instead. install_headers_dir=install-headers-cpio ;; + *-*-osf*) + tm_file="${tm_file} alpha/osf.h" + ;; esac case $machine in *-*-osf4.0[b-z] | *-*-osf4.[1-9]*) diff --git a/gcc/configure.in b/gcc/configure.in index a0edbe3..d23bd9b 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -363,6 +363,9 @@ for machine in $build $host $target; do # a broken tar, so we use cpio instead. install_headers_dir=install-headers-cpio ;; + *-*-osf*) + tm_file="${tm_file} alpha/osf.h" + ;; esac case $machine in *-*-osf4.0[[b-z]] | *-*-osf4.[[1-9]]*) |