summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rwxr-xr-xconfig.guess3
-rwxr-xr-xconfig.sub5
-rw-r--r--openbsd-compat/bsd-cray.h4
4 files changed, 13 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index fa3a64deb..830136ac7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,8 @@
8 enter 3.6 8 enter 3.6
9 - (bal) The days of lack of int64_t support are over. Sorry kids. 9 - (bal) The days of lack of int64_t support are over. Sorry kids.
10 - (bal) scp.c 'limit' conflicts with Cray. Rename to 'limitbw' 10 - (bal) scp.c 'limit' conflicts with Cray. Rename to 'limitbw'
11 - (bal) Collection of Cray patches (bsd-cray.h fix for CRAYT3E and improved
12 guessing rules)
11 13
1220030318 1420030318
13 - (tim) [configure.ac openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h] 15 - (tim) [configure.ac openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h]
@@ -1233,4 +1235,4 @@
1233 save auth method before monitor_reset_key_state(); bugzilla bug #284; 1235 save auth method before monitor_reset_key_state(); bugzilla bug #284;
1234 ok provos@ 1236 ok provos@
1235 1237
1236$Id: ChangeLog,v 1.2635 2003/03/21 00:55:32 mouring Exp $ 1238$Id: ChangeLog,v 1.2636 2003/03/21 01:05:37 mouring Exp $
diff --git a/config.guess b/config.guess
index fd30ab031..e8f206123 100755
--- a/config.guess
+++ b/config.guess
@@ -726,6 +726,9 @@ EOF
726 CRAY*SV1:*:*:*) 726 CRAY*SV1:*:*:*)
727 echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' 727 echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
728 exit 0 ;; 728 exit 0 ;;
729 *:UNICOS/mp:*:*)
730 echo nv1-cray-unicosmp | sed -e 's/\.[^.]*$/.X/'
731 exit 0 ;;
729 F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) 732 F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
730 FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` 733 FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
731 FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` 734 FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
diff --git a/config.sub b/config.sub
index a03c1d15a..a0b7bb9e8 100755
--- a/config.sub
+++ b/config.sub
@@ -315,7 +315,7 @@ case $basic_machine in
315 | mipsisa64-* | mipsisa64el-* \ 315 | mipsisa64-* | mipsisa64el-* \
316 | mipsisa64sb1-* | mipsisa64sb1el-* \ 316 | mipsisa64sb1-* | mipsisa64sb1el-* \
317 | mipstx39 | mipstx39el \ 317 | mipstx39 | mipstx39el \
318 | none-* | np1-* | ns16k-* | ns32k-* \ 318 | none-* | np1-* | ns16k-* | ns32k-* | nv1-* \
319 | orion-* \ 319 | orion-* \
320 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ 320 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
321 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ 321 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
@@ -715,6 +715,9 @@ case $basic_machine in
715 nsr-tandem) 715 nsr-tandem)
716 basic_machine=nsr-tandem 716 basic_machine=nsr-tandem
717 ;; 717 ;;
718 nv1)
719 basic_machine=nv1-cray
720 ;;
718 op50n-* | op60c-*) 721 op50n-* | op60c-*)
719 basic_machine=hppa1.1-oki 722 basic_machine=hppa1.1-oki
720 os=-proelf 723 os=-proelf
diff --git a/openbsd-compat/bsd-cray.h b/openbsd-compat/bsd-cray.h
index 9a15cb251..a09954f2f 100644
--- a/openbsd-compat/bsd-cray.h
+++ b/openbsd-compat/bsd-cray.h
@@ -1,5 +1,5 @@
1/* 1/*
2 * $Id: bsd-cray.h,v 1.6 2003/01/27 21:15:11 mouring Exp $ 2 * $Id: bsd-cray.h,v 1.7 2003/03/21 01:05:38 mouring Exp $
3 * 3 *
4 * bsd-cray.h 4 * bsd-cray.h
5 * 5 *
@@ -49,8 +49,10 @@ extern char cray_tmpdir[]; /* cray tmpdir */
49#ifndef MAXHOSTNAMELEN 49#ifndef MAXHOSTNAMELEN
50#define MAXHOSTNAMELEN 64 50#define MAXHOSTNAMELEN 64
51#endif 51#endif
52#ifndef _CRAYT3E
52#include <sys/ttold.h> 53#include <sys/ttold.h>
53#define TIOCGPGRP (tIOC|20) 54#define TIOCGPGRP (tIOC|20)
54#endif 55#endif
56#endif
55 57
56#endif /* _BSD_CRAY_H */ 58#endif /* _BSD_CRAY_H */