Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: zsh-3.1.5-pws-8: Fixes for ReliantUNIX and CDS++ 2.0
- X-seq: zsh-workers 5377
- From: "Andrej Borsenkow" <borsenkow.msk@xxxxxx>
- To: "ZSH workers mailing list" <zsh-workers@xxxxxxxxxxxxxx>
- Subject: PATCH: zsh-3.1.5-pws-8: Fixes for ReliantUNIX and CDS++ 2.0
- Date: Mon, 15 Feb 1999 10:53:04 +0300
- Importance: Normal
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
config.guess: SINIX was renamed to ReliantUNIX as from version 5.43B00. This
patch enables autodetection of new name. The canonical host is still set to
mips-sni-sysv4 as it is almost fully compatible. (5.44 and above are 64-bit,
but this is another story)
configure.in: new version of our compiler changed the way version string is
reported (this is known as compatibility :-) The way it is done now is the
same as in lsof.
cheers
/andrej
--- config.guess.org Tue Nov 10 11:36:24 1998
+++ config.guess Mon Feb 15 10:33:23 1999
@@ -526,6 +526,9 @@
RM*:SINIX-*:*:*)
echo mips-sni-sysv4
exit 0 ;;
+ RM*:ReliantUNIX-*:*:*)
+ echo mips-sni-sysv4
+ exit 0 ;;
*:SINIX-*:*:*)
if uname -p 2>/dev/null >/dev/null ; then
UNAME_MACHINE=`(uname -p) 2>/dev/null`
--- configure.in.org Sat Feb 13 16:26:07 1999
+++ configure.in Mon Feb 15 10:32:31 1999
@@ -1036,7 +1036,7 @@
#
sni_cc_version=`$CC -V 2>&1 | head -1`
case "$sni_cc_version" in
- CDS* )
+ *CDS* )
EXTRA_LDFLAGS="${EXTRA_LDFLAGS=-Wl,-Blargedynsym}"
;;
* )
Messages sorted by:
Reverse Date,
Date,
Thread,
Author