aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--config/.Sanitize1
-rw-r--r--config/mh-lynxosrs6k5
-rw-r--r--configure.in2
4 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 323d753..10b8c2b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Mon Jan 31 18:40:55 1994 Stu Grossman (grossman at cygnus.com)
+
+ * config/mh-lynxosrs6k: Account for lack of ranlib!
+
Sun Jan 30 17:58:06 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
* config.guess: Recognize vax hosts.
diff --git a/config/.Sanitize b/config/.Sanitize
index 52dbc5a..a56b920 100644
--- a/config/.Sanitize
+++ b/config/.Sanitize
@@ -43,6 +43,7 @@ mh-irix4
mh-irix5
mh-linux
mh-lynxos
+mh-lynxosrs6k
mh-ncr3000
mh-riscos
mh-sco
diff --git a/config/mh-lynxosrs6k b/config/mh-lynxosrs6k
new file mode 100644
index 0000000..93564b6
--- /dev/null
+++ b/config/mh-lynxosrs6k
@@ -0,0 +1,5 @@
+# LynxOS running on the rs6000 doesn't have ranlib
+RANLIB = true
+
+# /bin/cc is less than useful for our purposes. Always use GCC
+CC = /bin/gcc
diff --git a/configure.in b/configure.in
index 783d1a6..93701e8 100644
--- a/configure.in
+++ b/configure.in
@@ -107,6 +107,8 @@ case "${host}" in
*-sun-*) host_makefile_frag=config/mh-sun ;;
*-hp-hpux*) host_makefile_frag=config/mh-hpux ;;
*-*-hiux*) host_makefile_frag=config/mh-hpux ;;
+ rs6000-*-lynxos*) host_makefile_frag=config/mh-lynxosrs6k
+ cross_only="xiberty" ;;
*-*-lynxos*) host_makefile_frag=config/mh-lynxos
cross_only="xiberty" ;;
*-*-sysv4*) host_makefile_frag=config/mh-sysv4 ;;