diff options
author | Sean Eric Fagan <sef@cygnus> | 1992-04-07 22:11:30 +0000 |
---|---|---|
committer | Sean Eric Fagan <sef@cygnus> | 1992-04-07 22:11:30 +0000 |
commit | 68cd7865a67bafa1b8f706568b8632149324f615 (patch) | |
tree | dddb2c5a223ab763903ac283e0a2fa034825a074 /configure.in | |
parent | 3ab074bcaaf6251a851c32c5d776a3702afc1fe2 (diff) | |
download | gdb-68cd7865a67bafa1b8f706568b8632149324f615.zip gdb-68cd7865a67bafa1b8f706568b8632149324f615.tar.gz gdb-68cd7865a67bafa1b8f706568b8632149324f615.tar.bz2 |
Support for Apollo Series 400 machines, under the BSD environment.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 363b7fa..95b7d21 100644 --- a/configure.in +++ b/configure.in @@ -27,7 +27,10 @@ esac case "${host_vendor}" in apollo*) case "${host_cpu}" in m68k*) - host_makefile_frag=config/mh-apollo68 ;; + case "${host_os}" in + sysv*) host_makefile_frag=config/mh-apollo68 ;; + bsd*) host_makefile_frag=config/mh-a68bsd ;; + esac;; esac ;; esac |