diff --git a/ChangeLog b/ChangeLog index 7b896d3766..a9bfbab24e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu May 5 00:16:36 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com) + + * configure.in (mips*-dec-bsd*): New target; do build linker. + (mips*-*-bsd*): New target; don't build linker. + Tue May 3 21:48:11 1994 Ken Raeburn (raeburn@cujo.cygnus.com) * configure.in (i[34]86-*-sco*): Move to be with other i386 diff --git a/configure.in b/configure.in index e43c545f2e..2a8c7a8128 100644 --- a/configure.in +++ b/configure.in @@ -242,6 +242,12 @@ case "${target}" in # The GNU linker does not support shared libraries. noconfigdirs="$noconfigdirs ld gprof" ;; + mips*-dec-bsd*) + noconfigdirs="$noconfigdirs gprof" + ;; + mips*-*-bsd*) + noconfigdirs="$noconfigdirs gprof ld" + ;; mips*-*-*) noconfigdirs="$noconfigdirs gprof" ;;