aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--configure.in6
2 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 7b896d3..a9bfbab 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 e43c545..2a8c7a8 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"
;;