diff options
author | David D. Zuhn <zoo@cygnus> | 1993-05-20 21:37:14 +0000 |
---|---|---|
committer | David D. Zuhn <zoo@cygnus> | 1993-05-20 21:37:14 +0000 |
commit | be8966dcee7155fb07ba786fb247f527f8927c87 (patch) | |
tree | 7b153f88ad09a2c060d4d4dff9e1312ff5f8a749 /configure.in | |
parent | 1fe65669e5f1533c6c92910280553669a7fecab8 (diff) | |
download | gdb-be8966dcee7155fb07ba786fb247f527f8927c87.zip gdb-be8966dcee7155fb07ba786fb247f527f8927c87.tar.gz gdb-be8966dcee7155fb07ba786fb247f527f8927c87.tar.bz2 |
use the sun3 makefile fragment (PR 2729)
also, don't build things that don't work on the alpha
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 5af792d..391d48e 100644 --- a/configure.in +++ b/configure.in @@ -99,6 +99,7 @@ case "${host}" in *-ibm-aix*) host_makefile_frag=config/mh-aix ;; *-bull-bosx*) host_makefile_frag=config/mh-aix ;; *-sun-solaris2*) host_makefile_frag=config/mh-solaris ;; + m68k-sun-*) host_makefile_frag=config/mh-sun3 ;; *-sun-*) host_makefile_frag=config/mh-sun ;; *-hp-hpux) host_makefile_frag=config/mh-hpux ;; *-*-sysv4*) host_makefile_frag=config/mh-sysv4 ;; @@ -148,6 +149,9 @@ fi # exist yet. case "${host}" in + alpha-dec-osf1) + configdirs=`echo ${configdirs} | sed -e 's/gdb/'` + ;; i[34]86-*-go32) configdirs=`echo ${configdirs} | sed -e 's/tcl//;s/expect//;s/deja-gnu//'` configdirs=`echo ${configdirs} | sed -e 's/make//;s/texinfo//'` @@ -158,6 +162,11 @@ case "${host}" in esac case "${target}" in + alpha-dec-osf1) + configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//'` + configdirs=`echo ${configdirs} | sed -e 's/gdb//;s/emacs//;s/fileutils//'` + configdirs=`echo ${configdirs} | sed -e 's/grep//;s/libg++//'` + ;; rs6000-*-*) configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//'` ;; |